/* ==========================================================
   DECENT TAILOR — V2
   Design system: ivory, warm grey, brand navy #011D48 (from the
   letterhead), muted grey, antique gold (ratings only). No bright
   colors, no gradients, no shadows; one filled pill button.
   ========================================================== */

:root {
  --bg:        #FAF8F5;   /* ivory */
  --bg-alt:    #EFEDE9;   /* soft warm grey */
  --beige:     #C9B29B;   /* photography tone */
  --taupe:     #D8CCBF;
  --ink:       #011D48;   /* brand navy — sampled from the letterhead */
  --muted:     #6E6A64;   /* secondary text */
  --gold:      #D9A441;   /* ratings / micro-details only */
  --hairline:  rgba(1, 29, 72, 0.18);
  --font:      "Jost", "Questrial", sans-serif;
  --pad-section: clamp(120px, 14vw, 160px);
  --pad-x:     clamp(24px, 6vw, 80px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
::selection { background: var(--taupe); color: var(--ink); }

/* ---------- type & links ---------- */

p { color: var(--muted); }

.section-label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 36px;
}
.section-label.center { text-align: center; }

.section-heading {
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 32px;
}

.display-heading {
  font-weight: 300;
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 28px;
}

.link-quiet {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.12em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: opacity 0.3s ease;
}
.link-quiet:hover { opacity: 0.55; }

.link-row { display: flex; align-items: baseline; gap: 18px; margin-top: 36px; }
.dot { color: var(--muted); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 28px var(--pad-x);
  transition: background 0.4s ease, padding 0.4s ease;
}
.site-header.is-solid {
  background: var(--bg);
  padding: 16px var(--pad-x);
  border-bottom: 1px solid var(--hairline);
}

.nav { display: flex; align-items: center; justify-content: space-between; }

.wordmark {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-decoration: none;
  color: #FAF8F5;
  transition: color 0.4s ease;
}
.site-header.is-solid .wordmark { color: var(--ink); }

/* letterhead logo lockup — ivory over the hero, navy on solid/static headers */
.wordmark img { height: 44px; width: auto; display: block; }
.wordmark .logo-navy { display: none; }
.site-header.is-solid .wordmark .logo-navy,
.site-header.header-static .wordmark .logo-navy,
.site-header.menu-open .wordmark .logo-navy { display: block; }
.site-header.is-solid .wordmark .logo-ivory,
.site-header.header-static .wordmark .logo-ivory,
.site-header.menu-open .wordmark .logo-ivory { display: none; }

.footer-logo { display: block; width: 150px; height: auto; margin: 0 auto clamp(48px, 5vw, 72px); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FAF8F5;
  transition: color 0.4s ease, opacity 0.3s ease;
}
.site-header.is-solid .nav-links a { color: var(--ink); }
.nav-links a:not(.btn-pill):hover { opacity: 0.55; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px; height: 22px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: #FAF8F5;
  transition: background 0.4s ease, transform 0.3s ease;
}
.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }
.site-header.is-solid .nav-toggle span,
.site-header.menu-open .nav-toggle span { background: var(--ink); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 24px;
    border-bottom: 1px solid var(--hairline);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .site-header.menu-open { background: var(--bg); }
  .site-header.menu-open .wordmark { color: var(--ink); }
  .site-header.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .nav-links li { padding: 14px var(--pad-x); }
  .nav-links a { color: var(--ink); }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh; /* stable on mobile browsers with collapsing URL bars */
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-video,
.hero-still {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-still[hidden] { display: none; }

/* Ken Burns stand-in — applied by JS only when video is unavailable */
.hero-still.ken-burns {
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #011D48;
  opacity: 0.28; /* spec: 25–30% so headline stays readable */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  color: #FAF8F5;
  font-size: 12px;
  letter-spacing: 0.32em;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroRise 1.2s ease 0.3s forwards;
}

.hero-title {
  color: #FAF8F5;
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 84px);
  letter-spacing: 0.04em;
  line-height: 1.15;
  opacity: 0;
  animation: heroRise 1.2s ease 0.55s forwards;
}

/* over the dark video the pill is ivory-outlined, like the nav pill */
.hero-content .hero-cta {
  margin-top: 44px;
  background: transparent;
  border-color: #FAF8F5;
  color: #FAF8F5;
  opacity: 0;
  animation: heroRise 1.2s ease 0.85s forwards;
}
.hero-content .hero-cta:hover {
  background: #FAF8F5;
  color: var(--ink);
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- sections (shared) ---------- */

.section { padding: var(--pad-section) var(--pad-x); }
.section-alt { background: var(--bg-alt); }

/* ---------- Section A — intro + carousel ---------- */

.intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.intro-text .lead {
  font-size: 18px;
  line-height: 1.8;
}

.carousel-arrows { display: flex; gap: 22px; margin-top: 48px; }

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 300;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.arrow:hover { opacity: 0.5; }
.arrow:active { transform: scale(0.92); }
.arrow:disabled { opacity: 0.25; cursor: default; }
.arrow:disabled:active { transform: none; }

.carousel { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: clamp(20px, 2.5vw, 36px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.card {
  flex: 0 0 clamp(220px, 24vw, 320px);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.card:hover img { opacity: 0.85; }
.card .card-label {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--ink);
}

@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ---------- Section B — boutique ---------- */

.boutique-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
.boutique-photo img { aspect-ratio: 4 / 5; object-fit: cover; }
.boutique-text p { max-width: 46ch; }

@media (max-width: 860px) {
  .boutique-grid { grid-template-columns: 1fr; }
}

/* ---------- Section C — wedding ---------- */

.wedding { padding-left: 0; padding-right: 0; padding-bottom: 0; }
.wedding-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(72px, 8vw, 110px);
}
.wedding-intro p { margin-bottom: 40px; }
.wedding-photo img {
  width: 100%;
  height: clamp(420px, 70vh, 720px);
  object-fit: cover;
}

/* ---------- Section D — essence ---------- */

.essence { padding-left: 0; padding-right: 0; }
.essence-strip {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  max-width: 1440px;
  margin: 0 auto;
  align-items: stretch;
}
.essence-panel img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.essence-text {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5vw, 88px);
}
.essence-text .section-label { margin-bottom: 28px; }
.essence-text p { font-size: 16.5px; }

@media (max-width: 860px) {
  .essence-strip { grid-template-columns: 1fr; }
  .essence-panel img { aspect-ratio: 16 / 10; }
}

/* ---------- Section E — testimonials ---------- */

.testimonials { text-align: center; }

.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  max-width: 920px;
  margin: 0 auto;
}

.testimonial-viewport {
  position: relative;
  flex: 1;
  min-height: 320px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial.is-active { opacity: 1; visibility: visible; }

.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--taupe);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}

.t-name {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.t-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.32em;
  margin-bottom: 26px;
}
/* half star: gradient clipped to the glyph — works on any background */
.t-stars .half {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold) 50%, rgba(1, 29, 72, 0.22) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.testimonial blockquote {
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 56ch;
}

.t-counter {
  margin-top: 36px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
}

/* ---------- map ---------- */

.map { line-height: 0; }
.map iframe {
  width: 100%;
  height: clamp(320px, 42vh, 440px);
  border: 0;
  filter: grayscale(0.55) sepia(0.12);
}

/* ---------- footer ---------- */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: clamp(72px, 8vw, 110px) var(--pad-x) 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(36px, 4vw, 64px);
  max-width: 1320px;
  margin: 0 auto;
}

.footer-col h2 {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.26em;
  margin-bottom: 26px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a {
  display: inline-block;
  padding: 3px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 15.5px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-col address {
  font-style: normal;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.9;
}
.social { margin-top: 22px; display: flex; gap: 14px; align-items: baseline; }
.social a {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: clamp(56px, 7vw, 90px);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp click-to-chat ---------- */

.whatsapp {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 60;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.whatsapp:hover { opacity: 0.7; transform: translateY(-3px); }

/* ---------- scroll reveal ---------- */

/* .reveal only hides content once JS has confirmed IntersectionObserver
   support (html.reveal-ready) — content stays visible without JS. */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal-ready .reveal.in { opacity: 1; transform: none; }

/* ==========================================================
   Multi-page components (V2 architecture)
   ========================================================== */

/* ---------- the one filled button: Book an Appointment ---------- */

.btn-pill {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-pill:hover { background: transparent; color: var(--ink); }

.nav .btn-pill { padding: 11px 26px; font-size: 12px; line-height: 1; margin-left: 12px; }

/* keep pill text ivory when the header's solid/static/menu-open rules
   recolor all nav links to charcoal */
.site-header.is-solid .nav-links a.btn-pill,
.site-header.header-static .nav-links a.btn-pill,
.site-header.menu-open .nav-links a.btn-pill {
  color: var(--bg);
}
.site-header.is-solid .nav-links a.btn-pill:hover,
.site-header.header-static .nav-links a.btn-pill:hover,
.site-header.menu-open .nav-links a.btn-pill:hover {
  background: transparent;
  color: var(--ink);
}

/* header over hero: pill inverts to ivory outline until solid */
.site-header:not(.is-solid):not(.menu-open):not(.header-static) .nav .btn-pill {
  background: transparent;
  border-color: #FAF8F5;
  color: #FAF8F5;
}
.site-header:not(.is-solid):not(.menu-open):not(.header-static) .nav .btn-pill:hover {
  background: #FAF8F5;
  color: var(--ink);
}

/* inner pages: header is solid from the start */
.site-header.header-static {
  position: sticky;
  background: var(--bg);
  padding: 16px var(--pad-x);
  border-bottom: 1px solid var(--hairline);
}
.site-header.header-static .wordmark,
.site-header.header-static .nav-links a { color: var(--ink); }
.site-header.header-static .nav-toggle span { background: var(--ink); }

.nav-links a.is-current {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

/* ---------- inner page hero ---------- */

.page-hero {
  position: relative;
  height: clamp(320px, 52vh, 540px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #011D48;
  opacity: 0.22;
}
.page-hero .page-hero-title {
  position: relative;
  z-index: 2;
  color: #FAF8F5;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.06em;
  padding: 0 var(--pad-x) clamp(36px, 5vw, 64px);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.page-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.page-intro p + p { margin-top: 22px; }

/* ---------- collections landing: editorial tiles ---------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 44px);
  max-width: 1320px;
  margin: 0 auto;
}
.tile {
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.tile img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.tile:hover img { opacity: 0.85; }
.tile h2 {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 20px 0 8px;
}
.tile p { font-size: 15.5px; }

@media (max-width: 700px) {
  .tiles { grid-template-columns: 1fr; }
}

/* ---------- lookbook masonry + lightbox ---------- */

.lookbook {
  columns: 3 280px;
  column-gap: clamp(18px, 2vw, 30px);
  max-width: 1320px;
  margin: 0 auto;
}
.lookbook figure {
  break-inside: avoid;
  margin-bottom: clamp(18px, 2vw, 30px);
}
.lookbook button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.lookbook button:hover img { opacity: 0.85; }
.lookbook img { transition: opacity 0.4s ease; }
.lookbook figcaption {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(1, 29, 72, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 5vh 5vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 78vh;
  width: auto; height: auto;
  object-fit: contain;
}
.lightbox .lb-caption {
  color: var(--taupe);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-top: 20px;
  text-align: center;
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: #FAF8F5;
  font-family: var(--font);
  font-weight: 300;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 14px;
}
.lightbox .lb-close { top: 18px; right: 22px; font-size: 30px; line-height: 1; }
.lightbox .lb-prev { left: 12px; top: 50%; transform: translateY(-50%); font-size: 30px; }
.lightbox .lb-next { right: 12px; top: 50%; transform: translateY(-50%); font-size: 30px; }
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { opacity: 0.6; }

/* ---------- details strip (3 columns) ---------- */

.details-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 5vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
}
.details-strip h2 {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.details-strip p { font-size: 15.5px; }
@media (max-width: 700px) {
  .details-strip { grid-template-columns: 1fr; }
}

/* ---------- accordion ---------- */

.accordion {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.accordion details { border-bottom: 1px solid var(--hairline); }
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 40px 24px 4px;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  transition: opacity 0.3s ease;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { opacity: 0.6; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s ease;
}
.accordion details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion .acc-body { padding: 0 4px 26px; font-size: 15.5px; max-width: 60ch; }

/* ---------- how it works: 5-step timeline ---------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(24px, 3vw, 48px);
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 17px; left: 4%; right: 4%;
  height: 1px;
  background: var(--hairline);
}
.step { position: relative; }
.step .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--bg);
  font-size: 13px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.section-alt .step .step-no { background: var(--bg-alt); }
.step h3 {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step p { font-size: 15px; line-height: 1.6; }
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { left: 17px; right: auto; top: 4%; bottom: 4%; width: 1px; height: auto; }
}

/* ---------- story chapters (alternating) ---------- */

.chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 6vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.chapter + .chapter { margin-top: clamp(80px, 9vw, 130px); }
.chapter:nth-of-type(even) .chapter-photo { order: 2; }
.chapter-photo img { aspect-ratio: 4 / 5; object-fit: cover; }
.chapter-text p { max-width: 48ch; }
@media (max-width: 860px) {
  .chapter { grid-template-columns: 1fr; }
  .chapter:nth-of-type(even) .chapter-photo { order: 0; }
}

/* ---------- values cards ---------- */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  border: 1px solid var(--hairline);
  padding: clamp(32px, 4vw, 52px);
}
.value-card h3 {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.value-card p { font-size: 15.5px; }
@media (max-width: 700px) { .values { grid-template-columns: 1fr; } }

/* ---------- fabrics grid ---------- */

.fabric-group { max-width: 1320px; margin: 0 auto; }
.fabric-group + .fabric-group { margin-top: clamp(64px, 7vw, 100px); }
.fabric-group h2 {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.fabric-grid figure img { aspect-ratio: 1; object-fit: cover; }
.fabric-grid figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
@media (max-width: 860px) { .fabric-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- contact / booking form ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 6vw, 100px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}
.contact-photo img { aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.quick-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.quick-actions .link-quiet { font-size: 15px; }

.form-field { margin-bottom: 26px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font);
  font-weight: 300;
  font-size: 17px;
  color: var(--ink);
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.form-field .field-error {
  display: none;
  font-size: 13.5px;
  color: #8C3B2E;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.form-field.invalid input,
.form-field.invalid select { border-bottom-color: #8C3B2E; }
.form-field.invalid .field-error { display: block; }

.form-status {
  margin-top: 22px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink);
  min-height: 22px;
}

.contact-meta {
  margin-top: 48px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 2;
}
.contact-meta a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--hairline); }

/* ---------- instagram strip ---------- */

.instagram { text-align: center; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(8px, 1vw, 16px);
  max-width: 1320px;
  margin: 0 auto;
}
.ig-grid a { display: block; }
.ig-grid img { aspect-ratio: 1; object-fit: cover; transition: opacity 0.4s ease; }
.ig-grid a:hover img { opacity: 0.8; }
.instagram .link-quiet { margin-top: 36px; }
@media (max-width: 860px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- standalone quote (collection sub-pages) ---------- */

.solo-quote {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.solo-quote blockquote {
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}
.solo-quote .t-stars { margin-bottom: 14px; }
.solo-quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- plan-ahead note (wedding) ---------- */

.plan-note {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--hairline);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
}
.plan-note .gold-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 22px;
}
.plan-note h2 {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.plan-note p { font-size: 15.5px; }

/* ---------- book CTA block (ends every page) ---------- */

.book-block { text-align: center; }
.book-block .display-heading { margin-bottom: 18px; }
.book-block p { max-width: 52ch; margin: 0 auto 36px; }

/* ---------- mobile sticky bottom bar ---------- */

.bottom-bar { display: none; }
@media (max-width: 860px) {
  .bottom-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    background: var(--bg);
    border-top: 1px solid var(--hairline);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    gap: 12px;
  }
  .bottom-bar a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 13px 0;
  }
  .bottom-bar .bar-call {
    color: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 999px;
  }
  .bottom-bar .bar-book {
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--ink);
    border-radius: 999px;
  }
  body { padding-bottom: 72px; }
  /* the bottom bar already offers Call + Book; the floating bubble
     duplicates a third channel on a small screen */
  .whatsapp { display: none; }
}

/* ---------- prose (utility pages) ---------- */

.prose { max-width: 640px; margin: 0 auto; }
.prose h2 {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 44px 0 16px;
}
.prose p + p { margin-top: 16px; }
.prose ul { margin: 16px 0 16px 20px; color: var(--muted); }
.prose li { margin-bottom: 8px; }

/* ---------- skip link ---------- */

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 90;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* ---------- focus visibility ---------- */

a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
summary:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero-title, .hero-cta { animation: none; opacity: 1; }
  .hero-still.ken-burns { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
