/* ═══════════════════════════════════════════════
   STYLE.CSS — La Farine Bakery Website
   Luxury Editorial × Warm Patisserie
═══════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --cream:     #fdf6ec;
  --cream2:    #f5e9d6;
  --brown:     #2c1a0e;
  --brown-mid: #6b3f1f;
  --gold:      #c9922a;
  --gold-lt:   #e8b96a;
  --rose:      #c47b5a;
  --charcoal:  #1a1208;
  --white:     #ffffff;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --font-script:  'Pinyon Script', cursive;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);

  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 16px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
select, input, textarea {
  font-family: var(--font-body);
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 10px 0;
}
textarea { resize: vertical; }
select option { background: var(--cream); }

/* ── CUSTOM CURSOR ───────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
  mix-blend-mode: multiply;
}
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s;
}
body.cursor-hover .cursor { width: 60px; height: 60px; border-color: var(--rose); opacity: 0.7; }

/* ── LOADER ──────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--brown);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-flour {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--gold-lt);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-text {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.loader-bar {
  width: 180px; height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gold-lt);
  width: 0%;
  transition: width 0.1s linear;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  gap: 40px;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44,26,14,0.08);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  flex-shrink: 0;
  transition: color 0.4s;
}
.nav.scrolled .nav-logo { color: var(--brown); }
.nav-links {
  display: flex; gap: 32px;
  margin-left: auto;
}
.nav-links li a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,246,236,0.75);
  transition: color 0.3s;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-lt);
  transition: width 0.3s var(--ease-out);
}
.nav-links li a:hover { color: var(--cream); }
.nav-links li a:hover::after { width: 100%; }
.nav.scrolled .nav-links li a { color: rgba(44,26,14,0.6); }
.nav.scrolled .nav-links li a:hover { color: var(--brown); }
.nav.scrolled .nav-links li a::after { background: var(--gold); }
.nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(253,246,236,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.nav.scrolled .nav-cta { color: var(--brown); border-color: rgba(44,26,14,0.3); }
.nav.scrolled .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}
.nav.scrolled .nav-burger span { background: var(--brown); }

/* ── MOBILE DRAWER ───────────────────────────── */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  z-index: 900;
  width: 300px;
  background: var(--brown);
  padding: 60px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  color: rgba(253,246,236,0.6); font-size: 1.2rem;
  transition: color 0.3s;
}
.drawer-close:hover { color: var(--gold-lt); }
.drawer-links { display: flex; flex-direction: column; gap: 8px; }
.drawer-links li a {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  color: rgba(253,246,236,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(253,246,236,0.08);
  transition: color 0.3s, padding-left 0.3s;
}
.drawer-links li a:hover { color: var(--gold-lt); padding-left: 8px; }
.drawer-info { margin-top: auto; color: rgba(253,246,236,0.5); font-size: 0.82rem; line-height: 1.8; }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.drawer-overlay.active { opacity: 1; visibility: visible; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  gap: 40px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #2c1a0e 0%, #4a2810 45%, #6b3f1f 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-radial {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(201,146,42,0.18) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline .script {
  font-family: var(--font-script);
  font-size: 1.15em;
  font-style: normal;
  color: var(--gold-lt);
  display: inline-block;
  line-height: 0.8;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(253,246,236,0.65);
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-scroll {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,246,236,0.4);
}
.scroll-line {
  width: 48px; height: 1px;
  background: rgba(253,246,236,0.25);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--gold-lt);
  animation: slide-right 2s ease-in-out infinite;
}
@keyframes slide-right { to { left: 100%; } }

/* Hero images */
.hero-images {
  position: relative; z-index: 2;
  height: 580px;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transition: transform 0.6s var(--ease-out);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.card1 { width: 260px; height: 320px; top: 20px; left: 20px; z-index: 3; transform: rotate(-3deg); }
.card2 { width: 220px; height: 260px; top: 40px; right: 0; z-index: 2; transform: rotate(2deg); }
.card3 { width: 200px; height: 240px; bottom: 40px; left: 80px; z-index: 4; transform: rotate(-1deg); }
.hero-img-card:hover { transform: rotate(0deg) scale(1.04) !important; z-index: 10; }
.hero-float-badge {
  position: absolute; bottom: 80px; right: 30px; z-index: 5;
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 12px 40px rgba(201,146,42,0.35);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.badge-label {
  font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── MARQUEE ─────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-right: 24px;
}
.marquee-track .sep { margin-right: 24px; opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(201,146,42,0.25);
}
.btn-primary:hover {
  background: #b07f20;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,146,42,0.35);
}
.btn-primary.full { width: 100%; justify-content: center; }
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  border: 1px solid rgba(253,246,236,0.35);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: var(--gold-lt); background: rgba(232,185,106,0.08); }

/* ── SECTION COMMON ──────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-desc {
  color: rgba(44,26,14,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  padding: 100px 5% 50px;
}

/* ── ABOUT ───────────────────────────────────── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 8%;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.about-deco {
  position: absolute; right: -60px; top: -60px; opacity: 0.04;
  width: 400px; pointer-events: none;
}
.about-body {
  color: rgba(44,26,14,0.65);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-text .btn-primary { margin-top: 24px; }
.about-visual {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  width: 75%; height: 380px;
  right: 0; top: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(44,26,14,0.18);
}
.about-img-sm {
  position: absolute;
  width: 50%; height: 220px;
  left: 0; bottom: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(44,26,14,0.14);
  border: 6px solid var(--cream);
}
.about-stats {
  position: absolute;
  right: -20px; bottom: 20px;
  background: var(--brown);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  z-index: 4;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,246,236,0.5);
  margin-top: 4px;
}

/* ── MENU ─────────────────────────────────────── */
.menu-section { padding-bottom: 100px; background: var(--cream2); }
.menu-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  padding: 0 5% 50px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(44,26,14,0.2);
  border-radius: 40px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44,26,14,0.6);
  transition: all 0.3s var(--ease-out);
  cursor: none;
  font-family: var(--font-body);
  font-weight: 400;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  padding: 0 5%;
}
.menu-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,26,14,0.07);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), opacity 0.4s;
  animation: fade-up 0.5s var(--ease-out) both;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(44,26,14,0.14);
}
.menu-card.hidden-card { display: none; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img img {
  transition: transform 0.6s var(--ease-out);
}
.menu-card:hover .card-img img { transform: scale(1.07); }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
  font-weight: 500;
}
.card-body { padding: 22px 24px 26px; }
.card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.88rem;
  color: rgba(44,26,14,0.6);
  line-height: 1.65;
  margin-bottom: 18px;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--gold);
}
.card-add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--brown-mid);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  cursor: none;
}
.card-add:hover { background: var(--gold); color: var(--white); transform: rotate(90deg); }

/* ── GALLERY ─────────────────────────────────── */
.gallery-section { padding-bottom: 100px; background: var(--cream); }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  padding: 0 5%;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: none;
  position: relative;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: attr(data-alt);
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(44,26,14,0.7));
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  padding: 40px;
}
.gallery-lightbox.active { opacity: 1; visibility: visible; }
.gallery-lightbox img {
  max-width: 80vw; max-height: 80vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease-out);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  transition: color 0.3s, transform 0.3s;
  cursor: none;
}
.lb-close { top: 24px; right: 32px; font-size: 1.5rem; }
.lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close:hover { color: var(--gold-lt); transform: rotate(90deg); }
.lb-prev:hover  { color: var(--gold-lt); transform: translateY(-50%) translateX(-4px); }
.lb-next:hover  { color: var(--gold-lt); transform: translateY(-50%) translateX(4px); }
.lb-caption {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ── TESTIMONIALS ────────────────────────────── */
.testi-section { background: var(--brown); padding: 100px 0; overflow: hidden; }
.testi-section .section-eyebrow { color: var(--gold-lt); }
.testi-section .section-headline { color: var(--cream); }
.testi-track-wrap { overflow: hidden; padding: 0 5%; }
.testi-track {
  display: flex; gap: 28px;
  transition: transform 0.6s var(--ease-out);
}
.testi-card {
  flex-shrink: 0;
  width: 440px;
  background: rgba(253,246,236,0.05);
  border: 1px solid rgba(253,246,236,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: background 0.3s;
}
.testi-card:hover { background: rgba(253,246,236,0.08); }
.testi-stars { color: var(--gold-lt); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 18px; }
.testi-text {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 300; font-style: italic;
  color: rgba(253,246,236,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author { display: flex; flex-direction: column; }
.testi-name { color: var(--gold-lt); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; }
.testi-loc  { color: rgba(253,246,236,0.4); font-size: 0.78rem; margin-top: 2px; }
.testi-dots {
  display: flex; gap: 8px;
  justify-content: center; margin-top: 32px;
}
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(253,246,236,0.2);
  transition: background 0.3s, transform 0.3s;
  cursor: none;
  border: none;
}
.testi-dot.active { background: var(--gold-lt); transform: scale(1.4); }

/* ── CONTACT ─────────────────────────────────── */
.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 8%;
  background: var(--cream2);
  align-items: start;
}
.contact-desc {
  color: rgba(44,26,14,0.6); font-size: 0.95rem; line-height: 1.75;
  margin-bottom: 36px; margin-top: 12px;
}
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(44,26,14,0.08);
}
.contact-text { display: flex; flex-direction: column; gap: 2px; }
.contact-text strong { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.contact-text span { font-size: 0.9rem; color: rgba(44,26,14,0.7); }
.contact-form { background: var(--cream); border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 8px 30px rgba(44,26,14,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { position: relative; margin-bottom: 28px; }
.form-group label {
  display: block; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(44,26,14,0.5); margin-bottom: 6px;
}
.form-line {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: rgba(44,26,14,0.15);
}
.form-line::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.form-group:focus-within .form-line::after { width: 100%; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { color: var(--brown); }
.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: rgba(201,146,42,0.1);
  border: 1px solid rgba(201,146,42,0.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 16px;
  animation: fade-up 0.4s var(--ease-out);
}
.form-success.show { display: block; }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(253,246,236,0.6);
  padding: 60px 8% 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(253,246,236,0.08);
  padding-bottom: 40px;
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: var(--cream); letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.footer-tagline { font-size: 0.85rem; line-height: 1.6; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(253,246,236,0.5);
  transition: color 0.3s;
  letter-spacing: 0.05em;
}
.footer-nav a:hover { color: var(--gold-lt); }
.footer-contact { font-size: 0.85rem; line-height: 2; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(253,246,236,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(253,246,236,0.5);
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

/* ── BACK TO TOP ─────────────────────────────── */
.btt {
  position: fixed; bottom: 32px; right: 32px; z-index: 700;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(201,146,42,0.35);
  cursor: none;
}
.btt.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.btt:hover { background: var(--brown); }

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 20px); }
  .hero-images { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-visual { height: 340px; margin-top: 40px; }
  .about-stats { position: static; margin-top: 20px; background: var(--brown); width: fit-content; }
  .contact-section { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-headline { font-size: clamp(3rem, 12vw, 5rem); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 1; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testi-card { width: 85vw; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .contact-form { padding: 28px 20px; }
  .contact-section { padding: 60px 5%; }
  .about { padding: 60px 5%; }
  .section-header { padding: 70px 5% 36px; }
}
