/* ══════════════════════════════════════
   RESET & TOKENS
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #f5ede0;
  --cream-dark:  #ede1cf;
  --sand:        #e4d0b4;
  --sand-mid:    #cdb899;
  --terra:       #b8622a;
  --terra-light: #d4845a;
  --terra-deep:  #8a4218;
  --brown:       #2e1f14;
  --brown-mid:   #5e4232;
  --brown-light: #9a7c68;
  --ink:         #1a1008;
  --white:       #fdf8f2;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── Grain texture ── */
body::after {
  content: '';
  position: fixed; 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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9000;
}

/* ── Custom cursor ── */
#cursor {
  width: 10px; height: 10px;
  background: var(--terra);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .22s ease, height .22s ease, opacity .22s ease;
  mix-blend-mode: multiply;
}
#cursor.big { width: 44px; height: 44px; opacity: .45; }


/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 52px;
  transition: background .4s, padding .4s, border-color .4s;
}
#nav.scrolled {
  background: rgba(245,237,224,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 52px;
  border-bottom: 1px solid rgba(184,98,42,.12);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--white); text-decoration: none;
  transition: color .35s;
}
#nav.scrolled .nav-logo { color: var(--brown); }

.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-mobile-cta { display: none; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.78);
  text-decoration: none; transition: color .3s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--terra);
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
#nav.scrolled .nav-links a { color: var(--brown-mid); }

.nav-book {
  font-size: 11px; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--white); background: var(--terra);
  padding: 11px 26px; border-radius: 40px;
  text-decoration: none;
  transition: background .3s, transform .25s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(184,98,42,.35);
}
.nav-book:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,98,42,.5); }
#nav.scrolled .nav-book { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(253,248,242,.35);
  border-radius: 40px;
  color: var(--cream);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  transition: border-color .25s, color .25s, background .25s;
}
.nav-ig:hover {
  border-color: var(--terra-light);
  color: var(--terra-light);
  background: rgba(184,98,42,.12);
}
#nav.scrolled .nav-ig {
  border-color: rgba(46,31,20,.2);
  color: var(--brown);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(253,248,242,.45);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease, background .3s ease;
}
#nav.scrolled .nav-toggle { border-color: rgba(46,31,20,.24); }
#nav.scrolled .nav-toggle span { background: var(--brown); }
#nav.menu-open {
  background: rgba(245,237,224,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,98,42,.12);
}
#nav.menu-open .nav-logo { color: var(--brown); }


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  width: 100%; height: 100vh; min-height: 660px;
  display: grid; grid-template-columns: 55% 45%;
  overflow: hidden; position: relative;
}

/* ── Left panel ── */
.hero-left {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 68px 88px;
}

.hero-left-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(158deg, #3a2412 0%, #1a0c06 100%);
}

/* Decorative needle-like lines radiating */
.hero-left-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      -42deg,
      transparent,
      transparent 48px,
      rgba(184,98,42,.04) 48px,
      rgba(184,98,42,.04) 49px
    );
}

.hero-left-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(212,132,90,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(184,98,42,.12) 0%, transparent 50%);
}

.hero-left-content { position: relative; z-index: 3; }

.left-draw-zone {
  position: absolute;
  top: clamp(120px, 22vh, 220px);
  right: clamp(56px, 9vw, 150px);
  width: min(44%, 340px);
  height: min(70%, 500px);
  z-index: 2;
  pointer-events: none;
  opacity: .95;
}

.draw-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.draw-canvas svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.draw-path {
  fill: none;
  stroke: rgba(245,237,224,.82);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--len, 1000);
  stroke-dashoffset: var(--len, 1000);
}

.machine-wrap {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80px);
  opacity: 0;
  transition: opacity .4s ease;
}

.machine-wrap.active { opacity: 1; }

@keyframes buzz {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-0.35px) rotate(0.12deg); }
}

.machine-svg { animation: buzz .18s ease-in-out infinite; }

.needle-glow {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,98,42,.9) 0%, rgba(184,98,42,0) 70%);
  animation: glowPulse .5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: .6; transform: translateX(-50%) scale(1); }
  to { opacity: 1; transform: translateX(-50%) scale(1.6); }
}

.draw-paper {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(245,237,224,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,237,224,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  opacity: 0; transform: translateY(16px);
  animation: up .8s cubic-bezier(.22,.68,0,1.1) .3s forwards;
}
.hero-eyebrow-line { width: 28px; height: 1px; background: var(--terra); }
.hero-eyebrow span {
  font-size: 11px; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--terra);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(70px, 9vw, 118px);
  line-height: .92; color: var(--white);
  letter-spacing: -.01em;
  opacity: 0; transform: translateY(32px);
  animation: up 1s cubic-bezier(.22,.68,0,1.1) .5s forwards;
  margin-bottom: 8px;
}
.hero-local {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 18px;
}

.hero-headline-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.2vw, 25px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  opacity: 0; transform: translateY(16px);
  animation: up .8s ease .8s forwards;
  margin-bottom: 36px;
}

.hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,.6); max-width: 390px;
  opacity: 0; animation: up .8s ease .95s forwards;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex; align-items: center; gap: 22px;
  opacity: 0; animation: up .8s ease 1.1s forwards;
}

.btn-primary {
  background: var(--terra); color: var(--white);
  font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 17px 36px; border-radius: 40px; text-decoration: none;
  transition: background .3s, transform .25s, box-shadow .3s;
  box-shadow: 0 4px 24px rgba(184,98,42,.4);
}
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(184,98,42,.55); }

.btn-secondary {
  font-size: 13px; font-weight: 300; letter-spacing: .07em;
  color: rgba(255,255,255,.65); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: color .3s;
}
.btn-secondary:hover { color: var(--white); }
.btn-secondary-line {
  display: inline-block; width: 28px; height: 1px;
  background: currentColor; transition: width .3s;
}
.btn-secondary:hover .btn-secondary-line { width: 42px; }

/* ── Right panel ── */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--cream-dark);
}

.hero-right-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #c4a070 0%, #8a6035 50%, #3a2010 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.05) brightness(.78);
  transform: scale(.97);
}

.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,12,6,.6) 0%, rgba(26,12,6,.28) 55%, rgba(26,12,6,.18) 100%);
}

.hero-stat-pill {
  position: absolute; bottom: 72px; right: 40px;
  background: rgba(245,237,224,.92); backdrop-filter: blur(10px);
  border-radius: 14px; padding: 22px 26px;
  opacity: 0; animation: up .9s ease 1.3s forwards;
}
.pill-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300;
  color: var(--terra); line-height: 1; margin-bottom: 4px;
}
.pill-label {
  font-size: 11px; font-weight: 300; letter-spacing: .05em;
  color: var(--brown-light); line-height: 1.55; max-width: 120px;
}

.hero-stat-pill-2 {
  position: absolute; top: 120px; right: 48px;
  background: var(--terra); border-radius: 40px;
  padding: 10px 20px;
  opacity: 0; animation: up .9s ease 1.5s forwards;
}
.pill-2-text {
  font-size: 11px; font-weight: 400; letter-spacing: .08em;
  color: var(--white); white-space: nowrap;
}

.hero-scroll {
  position: absolute; bottom: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: up .8s ease 1.6s forwards; z-index: 5;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-mobile-equivalent-wrap { display: none; }
.hero-mobile-equivalent { display: none; }


/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  padding: 130px 52px;
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 90px; align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-frame {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(158deg, #4a2e18 0%, #1a0c06 100%);
  position: relative;
}
.about-img-frame svg,
.about-img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* floating badge */
.about-badge {
  position: absolute; bottom: -24px; right: -28px;
  width: 110px; height: 110px;
  background: var(--terra); border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(184,98,42,.4);
  text-align: center;
}
.badge-years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300; color: var(--white); line-height: 1;
}
.badge-yrs-label {
  font-size: 9px; font-weight: 400; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 2px;
}

.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 22px; height: 1px; background: var(--terra);
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300; line-height: 1.15; color: var(--brown);
  letter-spacing: -.01em; margin-bottom: 24px;
}
.about-heading em { font-style: italic; color: var(--terra); }

.about-body {
  font-size: 14px; font-weight: 300; line-height: 1.95;
  color: var(--brown-mid); max-width: 440px; margin-bottom: 52px;
}

/* Stats row */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; border-radius: 14px; overflow: hidden; margin-bottom: 44px;
}
.stat-box {
  background: var(--sand); padding: 26px 22px;
  transition: background .3s;
}
.stat-box:hover { background: var(--sand-mid); }
.stat-box.dark { background: var(--brown); }
.stat-box.dark:hover { background: #3e2a1c; }

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px; font-weight: 300; line-height: 1;
  color: var(--terra); margin-bottom: 6px;
}
.stat-box.dark .stat-n { color: var(--terra-light); }
.stat-l {
  font-size: 11px; font-weight: 300; line-height: 1.6;
  color: var(--brown-light);
}
.stat-box.dark .stat-l { color: rgba(232,213,183,.55); }

.about-quote {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--sand); border-radius: 12px;
  border-left: 3px solid var(--terra);
}
.quote-mark {
  font-family: 'Pinyon Script', cursive;
  font-size: 56px; color: var(--terra); line-height: .7; flex-shrink: 0;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 17px; font-weight: 300;
  line-height: 1.65; color: var(--brown-mid);
}


/* ══════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════ */
.portfolio { padding: 110px 52px; background: var(--brown); }

.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}
.portfolio-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300; color: var(--cream);
  letter-spacing: -.01em; line-height: 1.2;
}
.portfolio-heading em { font-style: italic; color: var(--terra-light); }

.portfolio-all-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 40px;
  padding: 10px 18px;
  transition: border-color .25s, color .25s, background .25s;
}
.portfolio-all-link:hover {
  color: var(--white);
  border-color: var(--terra-light);
  background: rgba(184,98,42,.15);
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-item {
  border-radius: 12px; overflow: hidden; position: relative;
  cursor: pointer; transition: transform .35s cubic-bezier(.22,.68,0,1.1);
}
.p-item:hover { transform: translateY(-5px); }
.p-item.hidden { display: none; }

/* size variants */
.p-item.tall { grid-row: span 2; }
.p-item.wide { grid-column: span 2; }

.p-item-inner {
  width: 100%; height: 100%; min-height: 300px; position: relative;
}
.p-item.tall .p-item-inner { min-height: 540px; }
.p-item.wide .p-item-inner { min-height: 220px; }

.p-item-bg {
  position: absolute; inset: 0;
  background: #2a1808;
  transition: transform .65s cubic-bezier(.22,.68,0,1.1);
}
.p-item:hover .p-item-bg { transform: scale(1.05); }

.p-item-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(1);
}

.p-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,12,6,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s;
}
.p-item:hover .p-item-overlay { opacity: 1; }

.p-item-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  transform: translateY(8px); opacity: 0;
  transition: opacity .35s, transform .35s;
}
.p-item:hover .p-item-info { opacity: 1; transform: translateY(0); }

.p-cat {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terra-light); margin-bottom: 5px;
}
.p-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 300; color: var(--cream); line-height: 1.25;
}

/* ── Empty state ── */
.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 80px 0;
  display: none;
}
.portfolio-empty.visible { display: block; }
.portfolio-empty p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 22px;
  color: rgba(232,213,183,.35);
}

/* ── Image lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(10, 6, 4, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-image {
  max-width: min(95vw, 1200px);
  max-height: 88vh;
  border-radius: 10px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(30,20,12,.55);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* ── Gallery page ── */
.gallery-page {
  min-height: 100vh;
  padding-top: 110px;
}
.gallery-shell {
  width: min(1920px, 98vw);
  margin: 0 auto;
  padding: 20px 14px 0;
}
.gallery-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  color: var(--brown);
}

.gallery-intro {
  font-size: 14px;
  color: var(--brown-mid);
  margin-top: 8px;
  max-width: 520px;
}
.gallery-back {
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  border: 1px solid rgba(46,31,20,.2);
  border-radius: 40px;
  padding: 10px 16px;
}
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.gallery-filter {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(46,31,20,.2);
  background: transparent;
  color: var(--brown-mid);
  border-radius: 40px;
  padding: 8px 16px;
  cursor: pointer;
}
.gallery-filter.active {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 24px;
  width: 100%;
}
.gallery-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}
.gallery-sentinel {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 72px;
  padding-bottom: 34px;
}
.gallery-sentinel span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown);
  background: rgba(184,98,42,.12);
  border: 1px solid rgba(184,98,42,.35);
  border-radius: 999px;
  padding: 10px 16px;
}


/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq {
  padding: 100px 52px 40px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 36px;
}

.faq-heading em { font-style: italic; color: var(--terra); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(46,31,20,.12);
  border-radius: 12px;
  background: rgba(253,248,242,.6);
  padding: 0 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
  padding: 18px 0;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  font-size: 14px;
  line-height: 1.75;
  color: #4a3527;
  padding-bottom: 18px;
}

.faq-item a {
  color: var(--terra-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════
   BOOKING
══════════════════════════════════════ */
.booking { padding: 130px 52px; max-width: 1320px; margin: 0 auto; }

.booking-lang {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 28px;
  padding: 4px;
  border: 1px solid rgba(46,31,20,.14);
  border-radius: 999px;
  background: rgba(253,248,242,.7);
}

.booking-lang-btn {
  border: 0;
  background: transparent;
  color: var(--brown-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.booking-lang-btn.is-active {
  background: var(--brown);
  color: var(--cream);
}

.booking-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 90px; align-items: start;
}

.booking-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500; line-height: 1.15; color: var(--brown);
  letter-spacing: -.01em; margin-bottom: 22px;
}
.booking-heading em { font-style: italic; color: var(--terra); }
.booking-desc {
  font-size: 15px; font-weight: 400; line-height: 1.85;
  color: #4a3527; max-width: 420px; margin-bottom: 52px;
}

/* Service cards */
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-location-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(184,98,42,.28);
  border-radius: 14px;
  background: rgba(184,98,42,.06);
  color: var(--brown);
  font-size: 12px;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 12px 14px;
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
.service-location-link:hover {
  background: rgba(184,98,42,.12);
  border-color: rgba(184,98,42,.42);
  transform: translateY(-1px);
}
.service-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 24px; border-radius: 12px;
  border: 1px solid rgba(184,98,42,.28);
  background: rgba(255,255,255,.55);
  transition: border-color .3s, background .3s, transform .3s;
  cursor: pointer;
}
.service-item:hover, .service-item.selected {
  border-color: var(--terra); background: rgba(184,98,42,.11);
  transform: translateX(4px);
}
.service-item.selected { background: rgba(184,98,42,.15); }

.service-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--sand); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  transition: background .3s;
}
.service-item.selected .service-icon,
.service-item:hover .service-icon { background: var(--terra); }
.service-icon svg { width: 18px; height: 18px; }
.service-item:hover .service-icon svg path,
.service-item.selected .service-icon svg path { stroke: var(--white) !important; }

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 500; color: var(--brown);
  margin-bottom: 3px;
}
.service-desc-text {
  font-size: 13px; font-weight: 400; line-height: 1.65;
  color: #6b4f3d;
}

/* ── Booking form ── */
.booking-form {
  background: var(--sand);
  border-radius: 20px; padding: 44px;
  border: 1px solid rgba(184,98,42,.32);
  box-shadow: 0 16px 40px rgba(46,31,20,.12);
}
.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 500;
  color: var(--brown); margin-bottom: 12px;
  letter-spacing: -.01em;
}

.form-lead {
  font-size: 14px;
  line-height: 1.7;
  color: #4a3527;
  margin-bottom: 28px;
}

.message-preview {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(253,248,242,.85);
  border: 1px solid rgba(46,31,20,.12);
}

.message-preview-label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.message-preview-body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--brown);
  white-space: pre-wrap;
  word-break: break-word;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
  font-size: 10px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brown-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white); border: 1px solid transparent;
  border-radius: 8px; padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300; color: var(--brown);
  outline: none; transition: border-color .25s, box-shadow .25s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(184,98,42,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--sand-mid); }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.7; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a7c68' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.form-submit {
  width: 100%; padding: 16px;
  background: var(--terra); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; border: none; border-radius: 40px;
  cursor: pointer; margin-top: 6px;
  transition: background .3s, transform .25s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(184,98,42,.3);
}
.form-submit:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,98,42,.45); }

.form-note {
  text-align: center; margin-top: 14px;
  font-size: 12px; color: var(--brown-light); line-height: 1.65;
  white-space: pre-line;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--brown);
  padding: 52px 52px 36px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 32px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--sand);
  text-decoration: none; display: block; margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px; font-weight: 300;
  color: rgba(232,213,183,.45); max-width: 220px; line-height: 1.6;
}
.footer-address {
  margin-top: 10px;
}
.footer-address a {
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(232,213,183,.72);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,213,183,.28);
  transition: color .25s ease, border-color .25s ease;
}
.footer-address a:hover {
  color: var(--sand);
  border-color: rgba(232,213,183,.68);
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(232,213,183,.45); text-decoration: none;
  transition: color .3s;
}
.footer-nav a:hover { color: var(--terra-light); }
.footer-social { display: flex; gap: 14px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(232,213,183,.5); text-decoration: none;
  font-size: 13px; transition: border-color .3s, color .3s, background .3s;
}
.social-btn:hover { border-color: var(--terra); color: var(--terra); background: rgba(184,98,42,.1); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-copy {
  font-size: 11px; color: rgba(232,213,183,.3); letter-spacing: .06em;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 11px; color: rgba(232,213,183,.3); text-decoration: none;
  letter-spacing: .06em; transition: color .3s;
}
.footer-legal a:hover { color: rgba(232,213,183,.6); }


/* ══════════════════════════════════════
   ANIMATIONS & REVEAL
══════════════════════════════════════ */
@keyframes up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: .9; transform: scaleY(1.15); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .22s; }
.d3 { transition-delay: .34s; }
.d4 { transition-delay: .46s; }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .hero-right {
    display: block;
    min-height: 46vh;
  }
  .hero-stat-pill-2 {
    top: 14px;
    right: 14px;
    padding: 8px 14px;
    z-index: 3;
  }
  .pill-2-text {
    font-size: 10px;
    letter-spacing: .07em;
  }
  .hero-stat-pill {
    right: auto;
    left: 14px;
    bottom: 14px;
    padding: 14px 16px;
    z-index: 3;
  }
  .pill-num { font-size: 40px; }
  .pill-label {
    font-size: 10px;
    max-width: 150px;
  }
  .hero-left {
    min-height: 100vh;
    padding: 140px 36px 80px;
    --mobile-draw-opacity: .58;
  }
  .left-draw-zone {
    display: block;
    top: clamp(96px, 16vh, 150px);
    right: clamp(6px, 3vw, 20px);
    width: min(52vw, 230px);
    height: min(56vh, 320px);
    opacity: var(--mobile-draw-opacity);
    z-index: 1;
    transition: opacity .45s ease, transform .45s ease;
  }
  .machine-svg { transform: scale(.88); transform-origin: top center; }
  .hero-mobile-equivalent {
    display: grid;
    gap: 10px;
    max-width: 360px;
    transition: opacity .45s ease, transform .45s ease;
  }
  .hero-mobile-equivalent-wrap { display: none; }
  .mobile-pill-booking,
  .mobile-pill-volume {
    border: 1px solid rgba(245,237,224,.2);
    background: rgba(26,12,6,.48);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: rgba(245,237,224,.92);
    border-radius: 14px;
    padding: 12px 14px;
  }
  .mobile-pill-booking {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sand);
  }
  .mobile-pill-volume {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .mobile-pill-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    line-height: 1;
    color: var(--sand);
  }
  .mobile-pill-label {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(245,237,224,.78);
  }
  body.mobile-seq-init .left-draw-zone {
    opacity: 0;
    transform: translateY(12px);
  }
  body.mobile-seq-init.mobile-seq-show-anim .left-draw-zone {
    opacity: var(--mobile-draw-opacity);
    transform: translateY(0);
  }
  body.mobile-seq-init .hero-mobile-equivalent {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }
  body.mobile-seq-init.mobile-seq-show-panel .hero-mobile-equivalent {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .hero-scroll { display: none; }
  .about, .booking-inner { grid-template-columns: 1fr; gap: 52px; }
  .about-img-wrap { max-width: 420px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .p-item.wide { grid-column: span 1; }
  #nav { padding: 20px 28px; }
  #nav.scrolled { padding: 14px 28px; }
  .nav-toggle { display: inline-flex; }
  .nav-book { display: none; }
  .nav-actions { gap: 8px; }
  .nav-ig {
    border-color: rgba(46,31,20,.2);
    color: var(--brown);
  }
  #nav:not(.scrolled) .nav-ig {
    border-color: rgba(253,248,242,.45);
    color: var(--cream);
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 28px;
    right: 28px;
    background: rgba(253,248,242,.98);
    border: 1px solid rgba(184,98,42,.15);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 32px rgba(46,31,20,.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .24s ease, transform .24s ease;
  }
  .nav-links a {
    color: var(--brown-mid);
    padding: 12px 10px;
    display: block;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links .nav-mobile-cta a {
    background: var(--terra);
    border-radius: 999px;
    color: var(--white);
    text-align: center;
    margin-top: 6px;
  }
  .nav-mobile-cta { display: block; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 44px 28px 28px; }
}
@media (max-width: 540px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .p-item.tall { grid-row: span 1; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .booking-form { padding: 28px 22px; }
  .hero-left {
    padding: 130px 24px 72px;
    --mobile-draw-opacity: .48;
  }
  .left-draw-zone {
    top: 110px;
    right: 4px;
    width: min(56vw, 190px);
    height: min(50vh, 260px);
  }
  .machine-svg { transform: scale(.8); }
  .mobile-pill-num { font-size: 26px; }
  .hero-mobile-equivalent-wrap { display: none; }
  .hero-right { min-height: 40vh; }
  .hero-stat-pill-2 {
    top: 10px;
    right: 10px;
    padding: 7px 11px;
  }
  .hero-stat-pill {
    left: 10px;
    bottom: 10px;
    padding: 12px 12px;
  }
  .pill-num { font-size: 34px; }
  .pill-label { max-width: 120px; }
}
