/* ═══════════════════════════════════════════════
   S-DESIGN MOBILIERI — style.css
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── TOKENS ── */
:root {
  --bg:          #F7F4EF;
  --bg-dark:     #1C1916;
  --cream:       #EDE8DF;
  --gold:        #B8975A;
  --gold-light:  #D4B483;
  --brown:       #6B5540;
  --text:        #1C1916;
  --text-muted:  #7A7068;
  --white:       #FFFFFF;
  --border:      rgba(28,25,22,0.12);
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { cursor: none; }
button { cursor: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: normal;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 42px; height: 42px; opacity: 0.2; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { opacity: 0; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  background: transparent;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

/* Default: always a subtle top gradient so text is readable over any hero */
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: -1;
}
nav.scrolled::before { opacity: 0; }
nav.scrolled {
  background: rgba(247, 244, 239, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

/* Logo */
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--white); text-decoration: none; cursor: none;
  transition: color 0.3s ease;
  position: relative; z-index: 2;
}
.nav-logo span { color: var(--gold); }
nav.scrolled .nav-logo { color: var(--text); }

/* Links */
.nav-links { display: flex; gap: 38px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 11.5px; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.88);
  text-decoration: none; cursor: none; position: relative; padding-bottom: 3px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }
nav.scrolled .nav-links a { color: var(--text-muted); }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { color: var(--gold); }
.nav-links a.disabled { opacity: 0.35; pointer-events: none; }

/* CTA button */
.nav-cta {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 24px; border: 1px solid rgba(255,255,255,0.5);
  color: var(--white); background: transparent;
  cursor: none; text-decoration: none;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); }
nav.scrolled .nav-cta { border-color: var(--text); color: var(--text); }
nav.scrolled .nav-cta:hover { background: var(--text); color: var(--white); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all 0.3s; }
nav.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE OVERLAY MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--bg-dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; color: var(--white);
  text-decoration: none; cursor: none;
  transition: color 0.3s; letter-spacing: 0.04em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.disabled { opacity: 0.28; pointer-events: none; }

/* ── FOOTER ── */
footer {
  background: var(--bg-dark); color: var(--white);
  padding: 80px 64px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; margin-bottom: 14px; line-height: 1.2;
}
.footer-brand-logo span { color: var(--gold); }
.footer-desc {
  font-size: 13px; line-height: 1.9;
  color: rgba(255,255,255,0.38); max-width: 260px;
}
.footer-col-title {
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; display: block;
}
.footer-col a,
.footer-col p {
  display: block; font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; cursor: none; margin-bottom: 10px; line-height: 1.5;
  transition: color 0.25s ease;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.2); }

/* ── SECTION COMMONS ── */
.section-wrap { padding: 100px 64px; }
.section-tag {
  font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px); font-weight: 400; line-height: 1.1; color: var(--text);
}
.section-title em { font-style: italic; color: var(--brown); }
.section-header { margin-bottom: 60px; }
.section-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.gold-line { width: 52px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--bg-dark); overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); flex-shrink: 0;
}
.marquee-track .sep { color: var(--gold); opacity: 1; font-size: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BUTTONS ── */
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); text-decoration: none; cursor: none;
  padding-bottom: 2px; position: relative;
}
.btn-outline-white::after {
  content: ''; display: block; width: 36px; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.btn-outline-white:hover::after { width: 64px; }

.btn-dark {
  display: inline-flex; align-items: center;
  padding: 14px 38px; background: var(--text);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); text-decoration: none; cursor: none; border: none;
  transition: background 0.3s ease;
}
.btn-dark:hover { background: var(--gold); }

.btn-gold {
  display: inline-flex; align-items: center;
  padding: 14px 38px; background: var(--gold);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); text-decoration: none; cursor: none; border: none;
  transition: background 0.3s ease;
}
.btn-gold:hover { background: var(--brown); }

/* ── CATEGORIES GRID ── */
.categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.cat-card {
  position: relative; aspect-ratio: 4/4; overflow: hidden; cursor: none;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,25,22,0.72) 0%, rgba(28,25,22,0.1) 55%, transparent 100%);
  transition: background 0.45s ease;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(28,25,22,0.88) 0%, rgba(28,25,22,0.2) 65%);
}
.cat-card-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 26px;
}
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 4px;
}
.cat-sub { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.cat-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px;
  opacity: 0; transform: translateY(-6px);
  transition: all 0.35s ease;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ── PRODUCT TABS ── */
.products-tabs {
  display: flex; border-bottom: 1px solid var(--border); margin-bottom: 36px;
}
.tab-btn {
  padding: 13px 26px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  background: none; border: none; cursor: none; color: var(--text-muted);
  position: relative; transition: color 0.3s ease;
}
.tab-btn.active { color: var(--text); }
.tab-btn.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.product-card { cursor: none; }
.product-img {
  aspect-ratio: 1; overflow: hidden; background: var(--cream);
  margin-bottom: 14px; position: relative;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 10px; background: var(--gold); color: var(--white);
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 500; margin-bottom: 3px; color: var(--text);
}
.product-type { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ── BRAND STATEMENT ── */
.brand-statement {
  background: var(--bg-dark); color: var(--white); padding: 120px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.brand-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 76px); line-height: 1.0; font-weight: 300;
}
.brand-quote em { color: var(--gold); font-style: italic; display: block; }
.brand-body p { font-size: 14.5px; line-height: 1.95; color: rgba(255,255,255,0.58); margin-bottom: 18px; }
.brand-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 36px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 5px; }

/* ── GALLERY PREVIEW (HOME) ── */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 6px;
}
.g-item { overflow: hidden; cursor: none; position: relative; }
.g-item:first-child { grid-column: span 2; }
.g-item img {
  width: 100%; object-fit: cover; display: block;
  transition: transform 0.85s var(--ease);
}
.g-item:first-child img { aspect-ratio: 16/9; }
.g-item:not(:first-child) img { aspect-ratio: 4/3; }
.g-item:hover img { transform: scale(1.05); }
.g-item-overlay {
  position: absolute; inset: 0; background: rgba(28,25,22,0);
  transition: background 0.35s ease;
  display: flex; align-items: center; justify-content: center;
}
.g-item:hover .g-item-overlay { background: rgba(28,25,22,0.28); }
.g-item-overlay span {
  color: var(--white); font-size: 32px; font-weight: 300;
  opacity: 0; transform: scale(0.7);
  transition: all 0.3s ease;
}
.g-item:hover .g-item-overlay span { opacity: 1; transform: scale(1); }

/* ── PROCESS (HOME) ── */
.process-wrap { background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; color: var(--gold); opacity: 0.28; line-height: 1; margin-bottom: 14px;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 8px; }
.step-body { font-size: 13px; line-height: 1.85; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gold); padding: 80px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px); color: var(--white); font-weight: 300; line-height: 1.1;
}
.btn-white-solid {
  flex-shrink: 0; display: inline-flex; align-items: center;
  padding: 15px 34px; background: var(--white);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text); text-decoration: none; cursor: none; border: none;
  transition: all 0.3s ease;
}
.btn-white-solid:hover { background: var(--bg-dark); color: var(--white); }

/* ── ABOUT PAGE ── */
.about-hero {
  min-height: 65vh; background: var(--bg-dark);
  display: flex; align-items: flex-end; padding: 100px 64px;
  position: relative; overflow: hidden;
}
.about-hero-img {
  position: absolute; inset: 0;
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35); }
.about-hero-content { position: relative; z-index: 2; }
.about-hero-tag { font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 110px); font-weight: 300;
  color: var(--white); line-height: 0.92; letter-spacing: -0.01em;
}
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 100px 64px; align-items: center;
}
.about-img-wrap { aspect-ratio: 4/5; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 48px); font-weight: 400; line-height: 1.15;
  margin-bottom: 24px;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p { font-size: 14.5px; line-height: 1.95; color: var(--text-muted); margin-bottom: 18px; }

.values-section { background: var(--cream); padding: 100px 64px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.value-card { padding: 44px 36px; background: var(--white); border-bottom: 2px solid transparent; transition: border-color 0.3s ease; }
.value-card:hover { border-bottom-color: var(--gold); }
.value-icon { font-size: 28px; margin-bottom: 18px; color: var(--gold); }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 10px; }
.value-body { font-size: 13px; line-height: 1.85; color: var(--text-muted); }

/* ── GALLERY PAGE ── */
.gallery-hero {
  height: 44vh; background: var(--bg-dark);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 60px 64px;
  position: relative; overflow: hidden;
}
.gallery-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1C1916 0%, #3a2e25 100%);
}
.gallery-hero-title {
  position: relative; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 11vw, 130px); font-weight: 300;
  color: var(--white); line-height: 0.88; letter-spacing: -0.02em;
}
.gallery-hero-title span { color: var(--gold); font-style: italic; }

.gallery-filters { padding: 36px 64px 0; display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 22px; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  background: none; border: 1px solid var(--border); cursor: none;
  color: var(--text-muted); transition: all 0.25s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--text); color: var(--white); border-color: var(--text);
}

.gallery-masonry { padding: 36px 64px 80px; columns: 3; column-gap: 10px; }
.masonry-item {
  break-inside: avoid; margin-bottom: 10px; overflow: hidden;
  cursor: none; position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.75s var(--ease); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute; inset: 0; background: rgba(28,25,22,0);
  transition: background 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.masonry-item:hover .masonry-item-overlay { background: rgba(28,25,22,0.25); }
.masonry-item-overlay span {
  color: var(--white); font-size: 26px; font-weight: 300;
  opacity: 0; transform: scale(0.6);
  transition: all 0.25s ease;
}
.masonry-item:hover .masonry-item-overlay span { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(10,8,6,0.96); z-index: 3000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; animation: lbFade 0.3s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-inner {
  position: relative; max-width: 88vw; max-height: 88vh;
  animation: lbScale 0.35s var(--ease);
}
@keyframes lbScale { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-inner img { max-width: 88vw; max-height: 88vh; object-fit: contain; display: block; }
.lightbox-close {
  position: fixed; top: 24px; right: 28px;
  font-size: 22px; color: rgba(255,255,255,0.6); cursor: none;
  transition: color 0.25s; line-height: 1; background: none; border: none;
  padding: 8px;
}
.lightbox-close:hover { color: var(--white); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  font-size: 20px; color: rgba(255,255,255,0.5); cursor: none;
  background: none; border: 1px solid rgba(255,255,255,0.2);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.lb-prev { left: 28px; }
.lb-next { right: 28px; }
.lb-prev:hover, .lb-next:hover { color: var(--white); border-color: var(--gold); background: rgba(184,151,90,0.15); }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.15fr; min-height: 100vh;
}
.contact-left {
  background: var(--bg-dark); padding: 120px 64px 80px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute; top: -20%; right: -30%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-left-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 78px); font-weight: 300; color: var(--white); line-height: 0.98;
  margin-bottom: 28px;
}
.contact-left-title span { color: var(--gold); display: block; font-style: italic; }
.contact-left-sub { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.9; max-width: 320px; margin-bottom: 48px; }
.contact-detail { margin-bottom: 22px; }
.contact-detail-label { font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.contact-detail-value { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.contact-right {
  background: var(--bg); padding: 120px 64px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-form { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field textarea, .field select {
  border: none; border-bottom: 1px solid var(--border);
  background: transparent; padding: 12px 0;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  outline: none; resize: none; cursor: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field textarea { height: 96px; }
.form-success {
  display: none; margin-top: 20px; padding: 24px 28px;
  background: var(--cream); border-left: 2px solid var(--gold);
}
.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--text);
}

/* ── PORTFOLIO COMING SOON ── */
.portfolio-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-dark); text-align: center; padding: 120px 40px;
  position: relative; overflow: hidden;
}
.portfolio-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,151,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(107,85,64,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.portfolio-inner { position: relative; z-index: 2; }
.portfolio-tag { font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.portfolio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 12vw, 130px); font-weight: 300;
  color: var(--white); line-height: 0.9; margin-bottom: 32px;
}
.portfolio-title span { display: block; font-style: italic; color: rgba(255,255,255,0.25); }
.portfolio-sub { font-size: 15px; color: rgba(255,255,255,0.38); line-height: 1.85; max-width: 440px; margin: 0 auto 44px; }
.portfolio-divider { width: 52px; height: 1px; background: var(--gold); margin: 0 auto 40px; }

/* ── SCROLL REVEAL ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal { transform: translateY(36px); }
.reveal-left { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.in, .reveal-left.in, .reveal-right.in {
  opacity: 1; transform: translate(0,0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section-wrap, .cta-banner { padding-left: 32px; padding-right: 32px; }
  .brand-statement { grid-template-columns: 1fr; padding: 80px 32px; gap: 48px; }
  .brand-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 64px 32px 36px; }
  .gallery-masonry { columns: 2; padding: 32px 32px 64px; }
  .gallery-filters { padding: 28px 32px 0; }
  .gallery-hero { padding: 60px 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid .g-item:first-child { grid-column: span 2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-split { grid-template-columns: 1fr; padding: 64px 32px; gap: 48px; }
  .about-hero { padding: 80px 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 100px 32px 60px; }
  .values-section { padding: 80px 32px; }
}

@media (max-width: 640px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid .g-item:first-child { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 64px 24px; }
  .section-wrap { padding-top: 72px; padding-bottom: 72px; padding-left: 24px; padding-right: 24px; }
  .brand-statement { padding: 72px 24px; }
  footer { padding: 56px 24px 32px; }
}