/* =============================================
   STARLING WOODWORKING — styles.css
   ============================================= */

:root {
  --cream:      #FAF6EF;
  --parchment:  #EDE3D0;
  --walnut:     #2E1A0E;
  --walnut-mid: #6B3F2A;
  --gold:       #B8892E;
  --text:       #3A2B1F;
  --text-light: #9A8272;
  --max-w:      1320px;
  --nav-h:      76px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* Prevent blue tap flash on mobile; improve tap responsiveness */
a, button, [tabindex], [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* --- Type --- */
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--walnut);
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 0.97rem;
  color: var(--text-light);
  max-width: 480px;
  margin-top: 0.9rem;
  line-height: 1.75;
}
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: background 0.28s, color 0.28s, border-color 0.28s;
  cursor: pointer;
}
.btn--light   { background: var(--cream); color: var(--walnut); border-color: var(--cream); }
.btn--light:hover { background: transparent; color: var(--cream); }
.btn--dark    { background: var(--walnut); color: var(--cream); border-color: var(--walnut); }
.btn--dark:hover  { background: var(--walnut-mid); border-color: var(--walnut-mid); }
.btn--outline { background: transparent; color: var(--walnut); border-color: var(--walnut); }
.btn--outline:hover { background: var(--walnut); color: var(--cream); }
.btn--lg { padding: 1rem 2.8rem; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(46,26,14,0.08);
  transition: box-shadow 0.35s;
}
/* Backdrop blur lives on ::before so it doesn't create a containing block
   that traps position:fixed children (iOS Safari backdrop-filter bug) */
.nav::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: rgba(250,246,239,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.35s;
  z-index: -1;
}
.nav.scrolled { box-shadow: 0 1px 0 rgba(46,26,14,0.1); }
.nav.scrolled::before { background: var(--cream); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 max(2rem, env(safe-area-inset-right)) 0 max(2rem, env(safe-area-inset-left));
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo-mark {
  height: calc(var(--nav-h) - 8px);
  width: auto;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--walnut);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}
.nav__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  margin-left: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  border: 1px solid var(--walnut);
  padding: 0.5rem 1.4rem;
  transition: background 0.25s, color 0.25s;
}
.nav__cta:hover { background: var(--walnut); color: var(--cream); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--walnut);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: rgba(46,26,14,0.5);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav__overlay.active { opacity: 1; pointer-events: all; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background-image: url('images/hero.webp');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s var(--ease);
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46,26,14,0.15) 0%,
    rgba(46,26,14,0.05) 45%,
    rgba(46,26,14,0.75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.93;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(46,26,14,0.3);
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero__tagline {
  font-size: 1.05rem;
  color: rgba(250,246,239,0.75);
  max-width: 380px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}
.hero__content .btn {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(250,246,239,0.5);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.3s forwards;
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(250,246,239,0.5), transparent);
  animation: pulse 2.2s ease-in-out 1.5s infinite;
}

/* =============================================
   STYLES GALLERY
   ============================================= */
.styles-gallery { padding-top: 6rem; }
.styles-gallery__intro {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
}

.styles-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 80vh;
  min-height: 520px;
}

.style-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}
.style-card:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }

.style-card__bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; inset: 0; }

.style-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  will-change: opacity;
}
.style-card__img.active { opacity: 1; }

/* Subtle scale on hover for active image */
.style-card:hover .style-card__img.active {
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 6s var(--ease);
}

.style-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46,26,14,0.88) 0%,
    rgba(46,26,14,0.25) 55%,
    rgba(46,26,14,0.05) 100%
  );
  transition: background 0.5s;
}
.style-card:hover .style-card__veil {
  background: linear-gradient(
    to top,
    rgba(46,26,14,0.94) 0%,
    rgba(46,26,14,0.45) 55%,
    rgba(46,26,14,0.15) 100%
  );
}

/* Thin gold border appears between cards on hover */
.style-card + .style-card { border-left: 1px solid rgba(184,137,46,0); transition: border-color 0.3s; }
.style-card:hover + .style-card,
.styles-gallery__grid:has(.style-card:hover) .style-card:hover { border-left-color: rgba(184,137,46,0.3); }

.style-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem;
}
.style-card__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.style-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0;
  transition: margin-bottom 0.35s var(--ease);
}
.style-card:hover .style-card__name { margin-bottom: 0.6rem; }

.style-card__desc {
  font-size: 0.84rem;
  color: rgba(250,246,239,0.65);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.35s;
}
.style-card:hover .style-card__desc {
  max-height: 60px;
  opacity: 1;
}

.style-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s var(--ease);
}
.style-card:hover .style-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: 200;
  background: rgba(20,11,6,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox__img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox__img-wrap img {
  max-width: min(90vw, 960px);
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.lightbox__caption {
  color: rgba(250,246,239,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: rgba(250,246,239,0.55);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.5rem;
  line-height: 1;
}
.lightbox__close:hover { color: var(--cream); }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(250,246,239,0.07);
  border: 1px solid rgba(250,246,239,0.14);
  color: rgba(250,246,239,0.65);
  font-size: 2rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(250,246,239,0.14); color: var(--cream); }

/* Clickable image hint */
.lightbox__img-wrap { position: relative; }
#lightboxImg {
  cursor: pointer;
  transition: opacity 0.2s;
}
#lightboxImg:hover { opacity: 0.92; }
.lightbox__img-hint {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.4);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox__img-wrap:hover .lightbox__img-hint { opacity: 1; }

/* Dot indicators — mobile nav affordance */
.lightbox__dots {
  display: none;
  gap: 7px;
  justify-content: center;
  margin-top: 0.6rem;
}
.lightbox__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(250,246,239,0.22);
  transition: background 0.22s, transform 0.22s;
  cursor: pointer;
}
.lightbox__dot.active {
  background: rgba(250,246,239,0.82);
  transform: scale(1.35);
}

/* One-time swipe hint */
.lightbox__swipe-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(250,246,239,0.08);
  border: 1px solid rgba(250,246,239,0.18);
  color: rgba(250,246,239,0.65);
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  display: none;
}
.lightbox__swipe-hint.show {
  display: block;
  animation: swipeHintFade 2.6s ease forwards;
}
@keyframes swipeHintFade {
  0%   { opacity: 0; transform: translateX(-50%) translateY(5px); }
  18%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  72%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

/* =============================================
   INQUIRY POPUP
   ============================================= */
.inquiry {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(20,11,6,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.inquiry.active { opacity: 1; pointer-events: all; }

.inquiry__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 680px;
  width: 100%;
  background: var(--walnut);
  box-shadow: 0 40px 100px rgba(0,0,0,0.65);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.4s var(--ease);
}
.inquiry.active .inquiry__card { transform: translateY(0) scale(1); }

.inquiry__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 1;
  background: none; border: none;
  color: rgba(250,246,239,0.45);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.4rem;
  line-height: 1;
}
.inquiry__close:hover { color: var(--cream); }

.inquiry__thumb {
  overflow: hidden;
  min-height: 280px;
}
.inquiry__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inquiry__body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inquiry__body .eyebrow { color: var(--gold); }
.inquiry__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.inquiry__text {
  font-size: 0.88rem;
  color: rgba(250,246,239,0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.inquiry__actions { display: flex; flex-direction: column; gap: 0.75rem; }
.inquiry .btn--light { background: var(--cream); color: var(--walnut); border-color: var(--cream); }
.inquiry .btn--light:hover { background: var(--parchment); }
.inquiry .btn--ghost {
  background: transparent;
  color: rgba(250,246,239,0.55);
  border: 1.5px solid rgba(250,246,239,0.2);
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.inquiry .btn--ghost:hover { background: rgba(250,246,239,0.08); color: var(--cream); border-color: rgba(250,246,239,0.35); }

@media (max-width: 600px) {
  .inquiry__card { grid-template-columns: 1fr; }
  .inquiry__thumb { min-height: 200px; max-height: 220px; }
  .inquiry__body { padding: 2rem 1.75rem; }
  .inquiry__title { font-size: 1.6rem; }
}

/* =============================================
   ABOUT
   ============================================= */
.about { padding: 8rem 2rem; }
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__text .section-title { margin: 0.4rem 0 2rem; }
.about__text p { font-size: 0.97rem; line-height: 1.82; margin-bottom: 1.1rem; }
.about__woods {
  display: flex; flex-wrap: wrap; gap: 0; margin-top: 2.2rem;
  color: var(--text-light);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.about__woods span { display: inline; }
.about__woods span + span::before {
  content: ' · ';
  display: inline;
  opacity: 0.45;
}

/* Fixed stacking — no absolute positioning */
.about__img-stack { display: flex; flex-direction: column; }
.about__img-main {
  width: 82%;
  height: 360px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.about__img-offset {
  width: 62%;
  height: 240px;
  object-fit: cover;
  margin-top: -100px;
  margin-left: auto;
  border: 6px solid var(--cream);
  box-shadow: 0 16px 48px rgba(46,26,14,0.15);
  position: relative;
  z-index: 2;
}

/* =============================================
   PROCESS
   ============================================= */
.process { background: var(--parchment); padding: 5rem 0 0; }
.process__header {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 2rem 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.process__hint {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding-bottom: 0.15rem;
  flex-shrink: 0;
}
.process__hint-arrow {
  display: inline-block;
  color: var(--gold);
  animation: nudgeArrow 1.8s ease-in-out infinite;
}

/* Strip wrapper clips the edge fade */
.process__strip-wrap {
  position: relative;
  overflow: hidden;
}
.process__strip {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.process__strip:active { cursor: grabbing; }
.process__strip::-webkit-scrollbar { display: none; }

/* Right-edge parchment fade with bouncing arrow */
.process__edge-fade {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 110px;
  background: linear-gradient(to right, transparent, var(--parchment) 65%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.2rem;
  pointer-events: none;
  transition: opacity 0.5s;
}
.process__edge-arrow {
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  animation: nudgeArrow 1.4s ease-in-out infinite;
}

/* Gold scroll-progress bar */
.process__progress {
  height: 2px;
  background: rgba(46,26,14,0.08);
}
.process__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.08s linear;
}

.process__track {
  display: flex; gap: 4px;
  width: max-content;
  user-select: none;
}
.process__slide { flex-shrink: 0; width: 360px; }
.process__slide img { width: 100%; height: 280px; object-fit: cover; pointer-events: none; }
.process__slide p {
  padding: 1rem 1.2rem 1.8rem;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  background: var(--parchment);
}

/* =============================================
   SERVICES
   ============================================= */
.services { padding: 8rem 2rem; }
.services__inner { max-width: var(--max-w); margin: 0 auto; }
.services__header { margin-bottom: 4rem; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--parchment);
}
.service-card { background: var(--cream); padding: 3rem 2.2rem; }
.service-card__icon {
  width: 38px; height: 38px;
  color: var(--walnut-mid); margin-bottom: 1.5rem;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--walnut); margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.72; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--walnut); padding: 8rem 2rem; }
.testimonials__inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials__header { margin-bottom: 4rem; }
.testimonials__header .section-title { color: var(--cream); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial {
  padding: 2.5rem;
  border: 1px solid rgba(250,246,239,0.1);
  background: rgba(250,246,239,0.03);
  transition: border-color 0.28s;
}
.testimonial:hover { border-color: rgba(184,137,46,0.35); }
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem; font-weight: 300; font-style: italic;
  line-height: 1.75; color: rgba(250,246,239,0.82); margin-bottom: 1.5rem;
}
.testimonial cite { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.testimonials__note { margin-top: 3rem; text-align: center; font-size: 0.85rem; color: rgba(250,246,239,0.38); }
.testimonials__note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* =============================================
   VISIT / CONTACT
   ============================================= */
.visit { padding: 8rem 2rem; background: var(--parchment); }
.visit__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.visit__text .section-title { margin: 0.4rem 0 1.4rem; }
.visit__text > p { font-size: 0.97rem; color: var(--text-light); line-height: 1.8; max-width: 420px; }
.visit__details {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-top: 3rem; padding-top: 3rem;
  border-top: 1px solid rgba(46,26,14,0.12);
}
.visit__detail strong {
  display: block; font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem;
}
.visit__detail address,
.visit__detail a { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.visit__detail a:hover { color: var(--gold); }
.visit__social { display: flex; align-items: center; gap: 0.7rem; margin-top: 2rem; }
.social-link {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--walnut-mid); transition: color 0.2s;
}
.social-link:hover { color: var(--gold); }
.visit__cta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--walnut);
  padding: 4rem 2rem max(2.5rem, env(safe-area-inset-bottom));
}
.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}
.footer__brand {}
.footer__logo {
  display: flex; align-items: center; gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.footer__logo-mark { height: 34px; width: auto; opacity: 0.7; }
.footer__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 500;
  color: rgba(250,246,239,0.75);
  letter-spacing: 0.04em;
}
.footer__brand > p { font-size: 0.8rem; color: rgba(250,246,239,0.32); max-width: 240px; line-height: 1.6; }
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__nav a {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,246,239,0.42); transition: color 0.2s;
}
.footer__nav a:hover { color: var(--cream); }
.footer__copy {
  width: 100%; text-align: center;
  font-size: 0.7rem; color: rgba(250,246,239,0.2);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(250,246,239,0.07);
  margin-top: 0.5rem;
}
.footer__credit { color: rgba(250,246,239,0.35); transition: color 0.2s; }
.footer__credit:hover { color: var(--gold); }

/* =============================================
   CONTEXT-SPECIFIC COPY (desktop vs mobile)
   ============================================= */
.section-sub--mobile { display: none; }
.hint--mobile        { display: none; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes fadeUp    { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn    { to { opacity: 1; } }
@keyframes pulse     { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.15; } }
@keyframes nudgeArrow {
  0%, 100% { transform: translateX(0);    opacity: 1; }
  60%       { transform: translateX(7px); opacity: 0.7; }
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1080px) {
  .styles-gallery__grid { grid-template-columns: repeat(2, 1fr); height: auto; min-height: 0; }
  .style-card { height: 60vw; min-height: 320px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-main { width: 78%; height: 300px; }
  .about__img-offset { width: 58%; height: 200px; margin-top: -80px; }
  .visit__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__logo-mark { height: 48px; }
  .nav__logo-text { font-size: 1rem; }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    /* Minimum 44×44px touch target */
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  /* Slide-in drawer — backdrop-filter is on nav::before so it doesn't trap this */
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 85vw);
    background: var(--cream);
    flex-direction: column; align-items: flex-start;
    gap: 0;
    padding: calc(var(--nav-h) + 1.5rem) max(2rem, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) 2rem;
    transform: translateX(100%);
    transition: transform 0.34s var(--ease);
    z-index: 99;
    box-shadow: -24px 0 60px rgba(46,26,14,0.18);
    margin-left: 0;
    overscroll-behavior-y: contain;
  }
  .nav__links.open { transform: translateX(0); }

  .nav__link {
    color: var(--text); font-size: 1rem;
    /* 48px minimum touch target height */
    padding: 0.9rem 0;
    min-height: 48px;
    width: 100%;
    border-bottom: 1px solid var(--parchment);
    display: flex;
    align-items: center;
  }
  .nav__link::after { display: none; }

  .hero__title { font-size: clamp(2.8rem, 13vw, 5rem); }
  .hero__scroll-hint { display: none; }

  /* Swap hint copy */
  .section-sub--desktop { display: none; }
  .section-sub--mobile  { display: block; }
  .hint--desktop        { display: none; }
  .hint--mobile         { display: inline; }

  .styles-gallery__grid { grid-template-columns: 1fr; height: auto; }
  .style-card { height: 70vw; min-height: 280px; }
  .style-card + .style-card { border-left: none; }
  /* Always show desc + cta on mobile (no hover) */
  .style-card__desc { max-height: 60px; opacity: 1; }
  .style-card__cta { opacity: 1; transform: none; }

  /* Lightbox: bigger tap targets for nav arrows */
  .lightbox__img-wrap img { max-width: 92vw; }
  .lightbox__prev { left: 0.25rem; }
  .lightbox__next { right: 0.25rem; }
  .lightbox__prev,
  .lightbox__next {
    width: 44px;
    height: 52px;
  }
  .lightbox__dots { display: flex; }
  .lightbox__close {
    top: max(1rem, env(safe-area-inset-top));
    right: max(1.5rem, env(safe-area-inset-right));
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .process__slide { width: 260px; }
  .process__slide img { height: 200px; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .visit__cta { width: 100%; }
  .visit__cta .btn { width: 100%; text-align: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__brand > p { margin: 0 auto; }
  .footer__logo { justify-content: center; }
  .footer__nav { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__tagline { display: none; }
  .about__img-main { width: 85%; height: 240px; }
  .about__img-offset { width: 65%; height: 170px; margin-top: -60px; }
  .service-card { padding: 2rem 1.6rem; }
  .testimonial { padding: 1.8rem; }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
