﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --walnut:    #2C1810;
  --walnut-md: #4A2E1A;
  --walnut-lt: #6B4226;
  --gold:      #C9973A;
  --gold-lt:   #E4B96A;
  --gold-dk:   #A07828;
  --cream:     #F5EDD6;
  --cream-dk:  #EAD9B5;
  --white:     #FFFFFF;
  --text-dark: #1A0F08;
  --text-mid:  #5A3C28;
  --text-lt:   #8B6040;
  --shadow:    0 8px 32px rgba(44,24,16,0.18);
  --shadow-lg: 0 20px 60px rgba(44,24,16,0.25);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }


.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--walnut);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 1rem auto 0;
}
.section-header { text-align: center; margin-bottom: 3rem; }


.container { width: min(100%, 1240px); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,151,58,0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,151,58,0.5);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--walnut);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: 1.5rem;
}
.btn-whatsapp svg { width: 22px; height: 22px; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }


#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(44,24,16,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 0.5rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}
.logo-icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}
.logo-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold-lt);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-link {
  padding: 0.4rem 0.85rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-lt);
  background: rgba(201,151,58,0.12);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(44,24,16,0.88) 0%, rgba(106,66,38,0.75) 50%, rgba(44,24,16,0.92) 100%),
    url('../image/Sofa3.jpg') center/cover no-repeat;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(201,151,58,0.03) 40px,
    rgba(201,151,58,0.03) 80px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 2rem 1.5rem;
  animation: heroFadeUp 1.2s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollHint 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollHint {
  0%,100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}


.marquee-strip {
  background: var(--walnut);
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,151,58,0.3);
  border-bottom: 1px solid rgba(201,151,58,0.3);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.marquee-track .sep { color: var(--gold); font-size: 0.6rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-body {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-body strong { color: var(--walnut); font-weight: 700; }
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dk);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}
.about-img-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img-card.large { grid-column: 1 / -1; height: 280px; }
.about-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-card:hover img { transform: scale(1.04); }


.grain-divider {
  position: relative;
  height: 80px;
  background: linear-gradient(180deg, var(--walnut-md), var(--walnut));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.grain-divider--light {
  background: linear-gradient(180deg, var(--cream), var(--cream-dk));
}
.grain-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.04) 3px, rgba(255,255,255,0.04) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(255,255,255,0.02) 8px, rgba(255,255,255,0.02) 9px);
  pointer-events: none;
}
.grain-inner {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.grain-text {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  animation: grainSlide 20s linear infinite;
  padding: 0 4rem;
}
.grain-divider--light .grain-text {
  color: rgba(44,24,16,0.2);
  
  background: linear-gradient(90deg, transparent 0%, rgba(44,24,16,0.12) 50%, transparent 100%);
}
@keyframes grainSlide {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}


.products-section { background: var(--cream); }

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  border: 1.5px solid var(--walnut-lt);
  color: var(--walnut-lt);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--walnut);
  color: var(--gold-lt);
  border-color: var(--walnut);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,24,16,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.product-card:hover .product-overlay {
  opacity: 1;
  pointer-events: auto;
}


@media (hover: none) {
  .product-overlay {
    opacity: 1;
    pointer-events: auto;
    background: rgba(44,24,16,0.42);
  }
}

.overlay-btn {
  padding: 0.65rem 1.6rem;
  border: 2px solid var(--gold-lt);
  color: var(--gold-lt);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
}
.overlay-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.product-info { padding: 1.4rem; }
.product-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--cream);
  color: var(--gold-dk);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  border: 1px solid var(--cream-dk);
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.product-desc { font-size: 0.87rem; color: var(--text-lt); line-height: 1.55; }


.gallery-section { background: var(--walnut); }
.gallery-section .section-eyebrow { color: var(--gold-lt); }
.gallery-section .section-title { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.8rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 1; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85);
}
.gallery-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.0);
  transition: var(--transition);
  background: rgba(44,24,16,0);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.7); }
.gallery-item:hover::after {
  color: rgba(255,255,255,0.9);
  background: rgba(44,24,16,0.3);
}


.owners-section { background: var(--white); }
.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.owner-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.owner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.owner-photo-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.owner-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.owner-card:hover .owner-photo-wrap img { transform: scale(1.04); }
.owner-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.owner-info { padding: 1.6rem; }
.owner-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--walnut);
}
.owner-nickname {
  font-style: italic;
  color: var(--gold-dk);
  font-size: 0.92rem;
  margin: 0.2rem 0 0.9rem;
}
.owner-bio {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.owner-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--walnut);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--walnut-lt);
  transition: var(--transition);
}
.owner-phone svg { width: 16px; height: 16px; }
.owner-phone:hover {
  background: var(--walnut);
  color: var(--gold-lt);
  border-color: var(--walnut);
}


.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-box {
  background: var(--walnut);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,151,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--gold-lt); }
.contact-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-value { color: var(--white); font-weight: 700; font-size: 0.95rem; transition: color var(--transition); }
a.contact-value:hover { color: var(--gold-lt); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,58,0.12);
}
.form-group textarea { resize: vertical; }
.form-note {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: #2E7D32;
  text-align: center;
  min-height: 1.2em;
}


.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20,10,5,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-img-wrap { height: 360px; overflow: hidden; }
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { padding: 2rem; }
.modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--walnut);
  margin-bottom: 0.8rem;
}
.modal-content p { color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.modal-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(44,24,16,0.8);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--walnut); }


.footer {
  background: var(--walnut);
  padding: 3rem 0 2rem;
  text-align: center;
}
.footer-inner { width: min(100%, 1240px); margin: 0 auto; padding: 0 1.5rem; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.footer-brand .logo-icon { font-size: 1.6rem; color: var(--gold); }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.footer-tagline {
  font-style: italic;
  color: var(--gold-lt);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-bottom: 2rem;
}
.footer-links a {
  padding: 0.3rem 0.8rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-dev strong { color: var(--gold-lt); }


.back-top {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,151,58,0.5);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,151,58,0.6); }


.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-grid .about-img-card.large { height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: var(--walnut);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 0.6rem 1rem; width: 100%; }
  .hamburger { display: flex; z-index: 1001; }
  .owners-grid { grid-template-columns: 1fr; max-width: 480px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-img-wrap { height: 240px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.4rem; }
  .about-stats { gap: 1.2rem; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-title { font-size: 2.6rem; }
  .product-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .modal-actions { flex-direction: column; }
  .contact-info-box, .contact-form { padding: 1.6rem; }
}




img.lightbox-img {
  cursor: zoom-in;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 5, 2, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  
  overflow-y: auto;
}
.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  max-width: min(92vw, 1100px);
  width: 100%;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.lightbox-overlay.open .lightbox-inner {
  transform: scale(1);
}

.lightbox-inner img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  display: block;
  
  height: auto;
}

.lightbox-caption {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 0 1rem;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(44, 24, 16, 0.85);
  border: 1.5px solid rgba(201, 151, 58, 0.5);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3001;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
}
.lightbox-close:hover {
  background: var(--gold-dk);
  border-color: var(--gold);
  transform: rotate(90deg) scale(1.1);
}


@media (max-width: 600px) {
  .lightbox-inner img {
    max-height: 80vh;
    border-radius: 6px;
  }
  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--walnut-lt); border-radius: 3px; }


::selection { background: var(--gold); color: var(--white); }