/* ==========================================================================
   Lovely Bride — Design System
   A quiet, editorial bridal identity: warm paper, deep ink, bronze accents.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Colour */
  --ink:        #16130F;
  --ink-70:     #4A423A;
  --ink-45:     #857A6E;
  --paper:      #FAF6F1;
  --paper-2:    #F2EAE1;
  --blush:      #E9DBD1;
  --bronze:     #9C7A56;
  --bronze-dk:  #7C5F41;
  --line:       rgba(22, 19, 15, .13);
  --line-soft:  rgba(22, 19, 15, .07);
  --white:      #FFFFFF;

  /* Type */
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --fs-hero:  clamp(2.5rem, 7vw, 5.2rem);
  --fs-h1:    clamp(2rem, 5vw, 3.5rem);
  --fs-h2:    clamp(1.7rem, 3.8vw, 2.7rem);
  --fs-h3:    clamp(1.2rem, 2vw, 1.45rem);
  --fs-body:  clamp(1rem, 1.05vw, 1.075rem);
  --fs-small: .82rem;
  --fs-label: .68rem;

  /* Space */
  --gut:      clamp(1.25rem, 5vw, 4.5rem);
  --section:  clamp(4.5rem, 11vw, 9rem);
  --maxw:     1440px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .55s;

  --header-h: 74px;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.68;
  color: var(--ink-70);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

::selection { background: var(--bronze); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

/* --- Typography --------------------------------------------------------- */
h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.015em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }

.eyebrow {
  font-size: var(--fs-label);
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bronze);
  display: block;
}

.lede {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.72;
  color: var(--ink-70);
  font-weight: 300;
}

.muted { color: var(--ink-45); }
.center { text-align: center; }

/* Italic serif accent used inside headlines */
em.accent { font-style: italic; color: var(--bronze); }

/* --- Layout ------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 820px; }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--flush-b { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.bg-2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: rgba(250,246,241,.72); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--paper); }

.rule { height: 1px; background: var(--line); border: 0; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1.05em 2.3em;
  font-size: var(--fs-label);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform .25s var(--ease);
  text-align: center;
}
.btn:hover { background: var(--bronze); border-color: var(--bronze); color: var(--white); }
.btn:active { transform: translateY(1px); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.btn--light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--ink); }

.btn--solid-light { background: #fff; border-color: #fff; color: var(--ink); }
.btn--solid-light:hover { background: var(--bronze); border-color: var(--bronze); color: #fff; }

.btn--block { width: 100%; }

/* Underlined text link */
.link-u {
  display: inline-block;
  font-size: var(--fs-label);
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-bottom: .45em;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.link-u:hover { border-color: var(--bronze); color: var(--bronze); }

/* --- Header ------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.brand {
  grid-column: 2;
  justify-self: center;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: .5rem;
  letter-spacing: .42em;
  text-align: center;
  margin-top: .18em;
  color: var(--bronze);
  transition: color var(--dur) var(--ease);
}

.nav { grid-column: 1; display: flex; gap: clamp(1rem, 2vw, 2rem); align-items: center; }
.nav a {
  font-size: var(--fs-label);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-block: .4em;
  white-space: nowrap;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header__end {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 1.6vw, 1.4rem);
}

.lang {
  display: flex;
  align-items: center;
  gap: .45em;
  font-size: var(--fs-label);
  letter-spacing: .14em;
  color: var(--ink);
}
.lang button { color: inherit; opacity: .45; transition: opacity .3s var(--ease); letter-spacing: inherit; }
.lang button[aria-pressed="true"] { opacity: 1; text-decoration: underline; text-underline-offset: .35em; }
.lang button:hover { opacity: .85; }
.lang span { opacity: .3; }

/* Transparent header over hero — a soft scrim keeps the nav legible
   regardless of how bright the hero photograph is behind it. */
.header--over { background: transparent; }
.header--over::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 220%;
  background: linear-gradient(to bottom, rgba(10, 8, 6, .62), rgba(10, 8, 6, 0));
  pointer-events: none;
  z-index: -1;
}
.header--over .brand,
.header--over .brand small,
.header--over .nav a,
.header--over .lang { color: #fff; }
.header--over .burger span { background: #fff; }
.header--over .btn--ghost { color: #fff; border-color: rgba(255,255,255,.75); }
.header--over .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.header--solid {
  background: rgba(250, 246, 241, .93);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}

/* Burger */
.burger {
  display: none;
  width: 30px; height: 18px;
  position: relative;
  grid-column: 1;
  justify-self: start;
}
.burger span {
  position: absolute;
  left: 0; width: 100%; height: 1px;
  background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease), background var(--dur) var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; }
.burger span:nth-child(3) { bottom: 0; }
body.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
body.menu-open .burger span { background: var(--ink) !important; }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--paper);
  padding: calc(var(--header-h) + 3rem) var(--gut) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  overflow-y: auto;
}
body.menu-open .drawer { transform: translateY(0); }
body.menu-open { overflow: hidden; }
.drawer nav { display: flex; flex-direction: column; gap: 1.1rem; }
.drawer nav a {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 7.5vw, 2.5rem);
  color: var(--ink);
  line-height: 1;
}
.drawer nav a:hover { color: var(--bronze); }
.drawer__foot { border-top: 1px solid var(--line); padding-top: 1.6rem; font-size: var(--fs-small); }
.drawer__foot a { display: block; margin-bottom: .35rem; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
/* Scrim tuned to the hero photograph currently in place: an outdoor estate shot,
   mid-tone overall but with a bright sky at the top and a pale gown right where
   the headline falls. Bottom stop carries most of the work. Retune if the
   picture changes — a dark image needs far less than this. */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom,
      rgba(10,8,6,.42) 0%,
      rgba(10,8,6,.12) 26%,
      rgba(10,8,6,.34) 58%,
      rgba(10,8,6,.82) 100%),
    linear-gradient(to right,
      rgba(10,8,6,.18) 0%, rgba(10,8,6,0) 30%,
      rgba(10,8,6,0) 70%, rgba(10,8,6,.18) 100%);
}
.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 var(--gut) clamp(3.5rem, 9vh, 7rem);
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: var(--fs-hero);
  color: #fff;
  margin-bottom: .35em;
  text-wrap: balance;
}
.hero .eyebrow { color: rgba(255,255,255,.82); margin-bottom: 1.4em; }
.hero p {
  max-width: 46ch;
  margin: 0 auto 2.4em;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}
.hero__cta { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* --- Seasonal promo band ------------------------------------------------ *
 * Two time-boxed offers under the hero. main.js hides it once dismissed or
 * after data-until, and adds .promo--autumn / .promo--winter to spotlight the
 * offer that is live now. Percentages only — no currency figure, so the
 * "no prices" rule and JSON-LD priceRange stay untouched. */
.promo {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid rgba(156,122,86,.35);
}
.promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding-block: clamp(1.1rem, 2.4vw, 1.6rem);
  flex-wrap: wrap;
}
.promo__deals {
  display: flex;
  align-items: stretch;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  flex-wrap: wrap;
}
.promo__deal {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-left: clamp(1.25rem, 4vw, 2.75rem);
  border-left: 1px solid rgba(250,246,241,.16);
}
.promo__deal:first-child { padding-left: 0; border-left: 0; }
.promo__season {
  font-size: var(--fs-label);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.promo__figure { display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.promo__pct {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
  color: var(--paper);
}
.promo__detail { font-size: var(--fs-small); color: rgba(250,246,241,.8); }
.promo__dates {
  font-size: var(--fs-label);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250,246,241,.55);
}
.promo__cta {
  flex: none;
  align-self: center;
  background: var(--bronze);
  color: var(--ink);
  font-size: var(--fs-small);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95em 1.9em;
  border-radius: 2px;
  transition: background var(--dur) var(--ease);
}
.promo__cta:hover { background: var(--paper); }
.promo__close {
  position: absolute;
  top: .5rem; right: .7rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(250,246,241,.55);
  padding: .2rem .4rem;
}
.promo__close:hover { color: var(--paper); }
/* Spotlight the live offer; dim the other. */
.promo--autumn .promo__deal--winter,
.promo--winter .promo__deal--autumn { opacity: .5; }
.promo--closing { display: none; }
@media (max-width: 640px) {
  .promo__inner { justify-content: center; text-align: center; }
  .promo__deals { justify-content: center; }
  .promo__deal { padding-left: 0; border-left: 0; align-items: center; }
  .promo__cta { order: 3; width: 100%; text-align: center; }
}

/* --- Marquee (designer names) ------------------------------------------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 1.5rem;
  overflow: hidden;
  background: var(--paper);
}
.marquee__track {
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(.95rem, 1.5vw, 1.25rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-45);
  white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* --- Section heading ---------------------------------------------------- */
.shead { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.shead .eyebrow { margin-bottom: 1em; }
.shead h1, .shead h2 { max-width: 18ch; text-wrap: balance; }
.shead h1 { font-size: var(--fs-h2); }
.shead.center h1, .shead.center h2 { margin-inline: auto; }
.shead p { max-width: 58ch; margin-top: 1.2rem; }
.shead.center p { margin-inline: auto; }
.shead--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* --- Dress grid --------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: clamp(1rem, 2.2vw, 2rem) clamp(.8rem, 1.6vw, 1.5rem);
}

.card { display: block; position: relative; }
.card__media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--paper-2);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__tag {
  position: absolute;
  top: .8rem; left: .8rem;
  background: rgba(250,246,241,.94);
  color: var(--ink);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .5em .9em;
}

.card__body { padding-top: .95rem; display: flex; flex-direction: column; gap: .25rem; }
.card__name {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.2;
}
.card__meta {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.card__cta {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  margin-top: .2rem;
}
.card:hover .card__cta { opacity: 1; transform: none; }
@media (hover: none) { .card__cta { opacity: 1; transform: none; } }

/* --- Filters ------------------------------------------------------------ */
.filters {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: rgba(250,246,241,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-block: 1rem;
}
.filters__row {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.filters__scroll {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: .15rem;
  flex: 1 1 auto;
  min-width: 0;
}
.filters__scroll::-webkit-scrollbar { display: none; }

.chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  padding: .62em 1.25em;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-70);
  background: transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
  border-radius: 999px;
}
.chip:hover { border-color: var(--ink-45); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.select {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .62em 2.4em .62em 1.25em;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-70);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23857A6E' stroke-width='1'/%3E%3C/svg%3E") no-repeat right 1.1em center;
  cursor: pointer;
}

.result-count {
  font-size: var(--fs-label);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-45);
  padding-block: 1.6rem;
}

.empty {
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
}
.empty h3 { margin-bottom: .6rem; }

/* --- Editorial split ---------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.split--reverse .split__media { order: 2; }
.split__media img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.split__body > * + * { margin-top: 1.35rem; }
.split__body .btn, .split__body .link-u { margin-top: 2rem; }

/* --- Steps -------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  counter-reset: step;
}
.step { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bronze);
  display: block;
  margin-bottom: .9rem;
}
.step h3 { margin-bottom: .6rem; }

/* --- Testimonials ------------------------------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.quote p {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.1rem;
}
.quote cite {
  font-style: normal;
  font-size: var(--fs-label);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
}
.stars { color: var(--bronze); letter-spacing: .3em; font-size: .8rem; margin-bottom: 1rem; }

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  position: relative;
  isolation: isolate;
  padding-block: clamp(5rem, 12vw, 9rem);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(12,10,8,.58); z-index: -1; }
.cta-band h2 { color: #fff; max-width: 16ch; margin: 0 auto .8em; }
.cta-band .eyebrow { color: rgba(255,255,255,.75); margin-bottom: 1.2em; }
.cta-band p { max-width: 48ch; margin: 0 auto 2.4em; color: rgba(255,255,255,.85); }

/* --- Gallery ------------------------------------------------------------ */
.masonry { columns: 3; column-gap: clamp(.8rem, 1.6vw, 1.5rem); }
.masonry figure { break-inside: avoid; margin-bottom: clamp(.8rem, 1.6vw, 1.5rem); cursor: zoom-in; overflow: hidden; }
.masonry img { width: 100%; transition: transform 1s var(--ease), opacity .4s var(--ease); }
.masonry figure:hover img { transform: scale(1.04); opacity: .92; }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(12,10,8,.94);
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 86svh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  color: #fff; font-size: 1.9rem; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2rem; padding: 1rem; opacity: .7;
}
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: .3rem; }
.lightbox__nav--next { right: .3rem; }

/* --- Dress detail ------------------------------------------------------- */
.detail { display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5.5rem); align-items: start; }
/* The salon's photos are only ~467px wide, so the portrait is capped at 440px:
   the browser downscales it a touch (always sharp) instead of upscaling and blurring. */
.detail__media { max-width: 440px; box-shadow: 0 16px 44px rgba(22, 19, 15, .13); }
.detail__media img { width: 100%; aspect-ratio: 2/3; object-fit: cover; background: var(--paper-2); }
.detail__thumbs { display: flex; gap: .6rem; margin-top: .6rem; }
.detail__thumbs button { width: 74px; aspect-ratio: 2/3; overflow: hidden; opacity: .5; transition: opacity .3s var(--ease); }
.detail__thumbs button[aria-pressed="true"] { opacity: 1; outline: 1px solid var(--ink); }
.detail__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.detail__body { position: sticky; top: calc(var(--header-h) + 2rem); max-width: 560px; }
.detail__body h1 { margin: .4rem 0 .8rem; }
.specs { border-top: 1px solid var(--line); margin-top: 2rem; }
.specs div {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: .95rem 0; border-bottom: 1px solid var(--line-soft);
  font-size: .84rem;
}
.specs dt { font-size: var(--fs-label); letter-spacing: .2em; text-transform: uppercase; color: var(--ink-45); }
.specs dd { color: var(--ink); text-align: right; }

.breadcrumb { font-size: var(--fs-label); letter-spacing: .2em; text-transform: uppercase; color: var(--ink-45); }

/* --- Style & Trend article --------------------------------------------- */
.article__head { margin: 2rem 0 2.4rem; }
.article__head .eyebrow { display: block; margin-bottom: 1rem; }
.article__head h1 { max-width: 20ch; }
.article__media { margin-bottom: 2.8rem; }
.article__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; background: var(--paper-2); }
.article__body { font-size: 1.06rem; line-height: 1.85; color: var(--ink-70); }
.article__body > * + * { margin-top: 1.3rem; }
.article__body h2 { font-size: var(--fs-h3); color: var(--ink); margin-top: 2.6rem; }
.article__body ul { padding-left: 1.2rem; }
.article__body li { margin-top: .5rem; }
.article__body strong { color: var(--ink); font-weight: 400; }
.article__back { margin-top: 3rem; font-size: var(--fs-small); letter-spacing: .12em; text-transform: uppercase; }
.article__back a:hover { color: var(--bronze); }

/* --- Article share row -------------------------------------------------- */
.share { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; margin-top: 2.8rem; padding-top: 2rem; border-top: 1px solid var(--line-soft); }
.share__label { font-size: var(--fs-label); letter-spacing: .24em; text-transform: uppercase; color: var(--ink-45); margin-right: .4rem; }
.share__btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-70); transition: color var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.share__btn:hover { color: var(--paper); background: var(--bronze); border-color: var(--bronze); }
.share__btn svg { width: 18px; height: 18px; }
.share__toast { font-size: var(--fs-small); color: var(--bronze); margin-left: .3rem; }
.breadcrumb a:hover { color: var(--bronze); }

/* --- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label {
  font-size: var(--fs-label);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.field input, .field textarea, .field select {
  border: 0; border-bottom: 1px solid var(--line);
  background: transparent;
  padding: .7em 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color .35s var(--ease);
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--bronze);
}
.field textarea { resize: vertical; min-height: 90px; }
.form__note { font-size: var(--fs-small); color: var(--ink-45); }

.form-status {
  padding: 1rem 1.2rem;
  background: var(--paper-2);
  border-left: 2px solid var(--bronze);
  font-size: .9rem;
  color: var(--ink);
}
.form-status[hidden] { display: none; }

/* --- Contact info ------------------------------------------------------- */
.info-list { display: grid; gap: 1.8rem; }
.info-list div { border-top: 1px solid var(--line); padding-top: 1rem; }
.info-list dt {
  font-size: var(--fs-label); letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-45); margin-bottom: .45rem;
}
.info-list dd { font-size: 1.05rem; color: var(--ink); }
.info-list a:hover { color: var(--bronze); }

.map-embed { width: 100%; aspect-ratio: 16/10; border: 0; filter: grayscale(1) contrast(.95); }

/* --- Footer ------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(250,246,241,.6); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer a { color: rgba(250,246,241,.72); transition: color .3s var(--ease); }
.footer a:hover { color: var(--bronze); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
  display: block;
}
.footer h4 {
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.footer ul { list-style: none; display: grid; gap: .6rem; font-size: .9rem; }
.footer__bottom {
  border-top: 1px solid rgba(250,246,241,.13);
  padding-top: 1.8rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .74rem; letter-spacing: .08em;
}

/* --- Mobile sticky booking bar ------------------------------------------ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: none;
  gap: 1px;
  background: var(--line);
  transform: translateY(100%);
  transition: transform .5s var(--ease);
  box-shadow: 0 -6px 24px rgba(22,19,15,.12);
}
.sticky-cta.show { transform: none; }
.sticky-cta a {
  flex: 1;
  padding: 1.05em .5em;
  text-align: center;
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
}
.sticky-cta a.primary { background: var(--ink); color: var(--paper); }

/* --- Reveal on scroll --------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .detail { grid-template-columns: 1fr; }
  .detail__media { margin-inline: auto; }
  .detail__body { position: static; max-width: none; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .hero__media img { object-position: 52% 38%; }
  .nav { display: none; }
  .burger { display: block; }
  .header__end .btn { display: none; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .hero { min-height: 92svh; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
  .form__row { grid-template-columns: 1fr; }
  .footer { padding-bottom: 5.5rem; }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .card__name { font-size: 1.12rem; }
}

@media print {
  .header, .drawer, .sticky-cta, .filters { display: none !important; }
}


/* --- Added with the SEO rebuild ----------------------------------------- */

/* Skip link — visible only when tabbed to */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--paper);
  padding: .9em 1.4em;
  font-size: var(--fs-label);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* Towns served — a real sentence in the footer, not a keyword dump */
.footer__areas {
  font-size: .8rem;
  line-height: 1.75;
  color: rgba(250, 246, 241, .42);
  max-width: 90ch;
  padding-bottom: 2.4rem;
}

/* Breadcrumb */
.breadcrumb { display: flex; gap: .6em; flex-wrap: wrap; align-items: center; }
.breadcrumb span[aria-current] { color: var(--ink); }

/* FAQ — plain disclosure widgets, no JavaScript needed */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--bronze); }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: .3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--bronze);
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { padding: 0 2.5rem 1.5rem 0; font-size: .95rem; }

/* Language switch is now a pair of links, not buttons */
.lang a { color: inherit; opacity: .45; transition: opacity .3s var(--ease); }
.lang a:hover { opacity: .85; }
.lang a[aria-current] { opacity: 1; text-decoration: underline; text-underline-offset: .35em; }

/* Cards hidden by a filter */
.card[hidden] { display: none; }


/* --- Booking form: validation, states, spam trap ------------------------- */

/* The honeypot must be invisible to people but not to bots, so it is moved
   off-screen rather than display:none — some bots skip hidden inputs. */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.field__error {
  font-size: .78rem;
  color: #A33C2E;
  margin-top: .1rem;
}
.field__error[hidden] { display: none; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-bottom-color: #A33C2E; }

.form-status { transition: opacity .3s var(--ease); }
.form-status--ok   { border-left-color: var(--bronze); }
.form-status--err  { border-left-color: #A33C2E; }
.form-status a { text-decoration: underline; text-underline-offset: .25em; }

#f-submit[aria-busy="true"] { opacity: .6; pointer-events: none; }


/* --- FAQ page ----------------------------------------------------------- */
.faq-group + .faq-group { margin-top: clamp(2.5rem, 5vw, 4rem); }
.faq-group__title {
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bronze);
  margin-bottom: 1rem;
}
.faq-cta {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 2.8rem);
  border-top: 1px solid var(--line);
}
.faq-cta p { font-family: var(--serif); font-size: clamp(1.15rem, 1.9vw, 1.45rem); color: var(--ink); }

/* --- Cookie consent ------------------------------------------------------ */
.consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 40px rgba(22, 19, 15, .10);
  transform: translateY(110%);
  transition: transform .5s var(--ease);
}
.consent.show { transform: none; }
.consent__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(1.2rem, 2.4vw, 1.8rem) var(--gut);
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  flex-wrap: wrap;
}
.consent__text { flex: 1 1 340px; }
.consent__text strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: .3rem;
}
.consent__text p { font-size: .88rem; max-width: 68ch; }
.consent__text a { color: var(--bronze); text-decoration: underline; text-underline-offset: .25em; }
.consent__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.consent__actions .btn { padding-block: .85em; }

/* On phones the sticky booking bar owns the bottom edge — lift the banner. */
@media (max-width: 860px) {
  .consent { bottom: 0; }
  .consent__inner { padding-bottom: 1.4rem; }
  .consent__actions { width: 100%; }
  .consent__actions .btn { flex: 1; }
  body:has(.consent.show) .sticky-cta { transform: translateY(100%); }
}

/* A button that reads as a link (cookie settings) */
.linkish {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .2em;
  font: inherit;
  cursor: pointer;
}
.linkish:hover { color: var(--bronze); }

/* --- Prose (privacy page) ------------------------------------------------ */
.prose > * + * { margin-top: 1.1rem; }
.prose h2 {
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bronze);
  margin-top: clamp(2.2rem, 4vw, 3rem);
}
.prose p { max-width: 72ch; }
.prose__note {
  font-size: .85rem;
  color: var(--ink-45);
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
