/* ============================================================
   Flying Dress — theme stylesheet
   One stylesheet, no framework, self-hosted fonts. The previous
   stack loaded 50 render-blocking files plus a Google Fonts
   request; this loads one CSS file and two woff2.

   Both faces are variable, so a single file covers every weight.
   ============================================================ */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
}
/* ============================================================
   FONTS — embedded as data URIs. The artifact CSP blocks font
   CDNs, so linking Google Fonts would silently fall back.
   Both faces are variable, so one file covers every weight.
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --emerald:    #10382E;
  --emerald-lift:#17493C;
  --dark:       #141613;
  --gold:       #B6924A;   /* decorative only: dividers, dots, badges, icons */
  --gold-deep:  #7E6430;   /* gold that carries small text — clears 4.5:1 on both grounds */
  --white-warm: #FBFAF8;
  --beige:      #F4F1EC;
  --ink:        #24211F;
  /* Brief specified #777270; nudged two steps darker so 12px labels still
     clear 4.5:1 on the beige band, per "everything must remain readable". */
  --ink-2:      #6E6967;
  --foot-ink:   #AAA59D;
  --line:       #E6E1DA;

  --display: 'Cormorant Garamond', 'Didot', 'Bodoni 72', Georgia, serif;
  --body: 'Manrope', 'Avenir Next', 'Helvetica Neue', system-ui, sans-serif;

  --pad: clamp(1.25rem, 5vw, 6rem);
  --wrap: 1320px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white-warm);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.0625rem;      /* 17px */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-wrap: balance;
  margin: 0;
  color: var(--ink);
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: 900px; }

/* Generous editorial rhythm. */
.band { padding-block: clamp(4.5rem, 10vw, 9.5rem); }
.band--beige { background: var(--beige); }
.band--dark { background: var(--dark); color: var(--white-warm); }

/* --- Small labels: 11-13px, wide tracking, champagne gold --- */
.label {
  font-family: var(--body);
  font-size: .75rem;              /* 12px */
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0;
}
.band--dark .label { color: var(--gold); }

.sechead { display: flex; flex-direction: column; gap: 1.15rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.sechead h2 { font-size: clamp(2.4rem, 4.6vw, 4rem); }   /* 52-64px at desktop */
.sechead p { color: var(--ink-2); max-width: 58ch; font-size: 1.0625rem; }
.band--dark .sechead p { color: var(--foot-ink); }

.sechead--center { align-items: center; text-align: center; }
.sechead--center p { text-align: center; }

/* Gold hairline used as a divider, never as decoration for its own sake. */
.rule { width: 56px; height: 1px; background: var(--gold); border: 0; margin: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 2.1rem;
  font-family: var(--body); font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  background: var(--emerald); color: var(--white-warm);
  border: 1px solid var(--emerald); border-radius: 4px;
  cursor: pointer;
  transition: background .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease);
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.btn--ghost { background: transparent; color: var(--emerald); border-color: var(--emerald); }
.btn--ghost:hover { background: var(--emerald); color: var(--white-warm); border-color: var(--emerald); }

.btn--ondark { background: var(--white-warm); color: var(--emerald); border-color: var(--white-warm); }
.btn--ondark:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.btn--lightghost { background: transparent; color: var(--white-warm); border-color: rgba(251,250,248,.55); }
.btn--lightghost:hover { background: var(--white-warm); color: var(--emerald); border-color: var(--white-warm); }

/* Quiet text link with a gold underline that draws on hover. */
.tlink {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: var(--emerald);
  padding-bottom: .35rem; position: relative;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(.28); transform-origin: left;
  transition: transform .55s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }

/* ============================================================
   TOP CONTACT BAR — scrolls away; the nav below stays sticky
   ============================================================ */
.topbar { background: var(--dark); color: var(--foot-ink); font-size: .78rem; }
.topbar__in {
  max-width: var(--wrap); margin-inline: auto;
  padding: .55rem var(--pad);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 3vw, 2.6rem); flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: .5rem; color: var(--foot-ink); text-decoration: none; letter-spacing: .01em; transition: color .3s var(--ease); }
.topbar__item:hover { color: var(--gold); }
.topbar__item svg { color: var(--gold); flex: none; }
.topbar__wa { display: inline-flex; align-items: center; gap: .5rem; color: var(--foot-ink); text-decoration: none; letter-spacing: .01em; transition: color .3s var(--ease); }
.topbar__wa svg { color: var(--gold); flex: none; }
.topbar__wa:hover { color: var(--gold); }
@media (max-width: 640px) { .topbar__in { gap: 1.2rem; } .topbar__addr { display: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.masthead {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in oklab, var(--white-warm) 92%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .5s var(--ease), background .5s var(--ease);
}
.masthead.is-stuck { border-bottom-color: var(--line); }

.masthead__in {
  max-width: var(--wrap); margin-inline: auto;
  padding: 1.5rem var(--pad);
  display: flex; align-items: center; gap: 2.5rem;
  transition: padding .5s var(--ease);
}
.masthead.is-stuck .masthead__in { padding-block: .95rem; }

.brand {
  font-family: var(--display); font-weight: 600;
  font-size: 1.18rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: var(--emerald); white-space: nowrap;
  transition: font-size .5s var(--ease);
}
.masthead.is-stuck .brand { font-size: 1.06rem; }

.nav { margin-inline: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(1rem, 1.7vw, 2.1rem); }
.nav a {
  font-size: .76rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); padding-block: .3rem;
  position: relative; white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform .5s var(--ease);
}
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); }

.masthead .btn { padding: .78rem 1.4rem; font-size: .7rem; }

.navtoggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  font-family: var(--body); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--emerald);
  padding: .5rem 0;
}

@media (max-width: 1200px) {
  .navtoggle { display: block; }
  .masthead__in { gap: 1rem; }
  .masthead .btn { display: none; }
  .nav {
    position: absolute; inset: 100% 0 auto 0; margin: 0;
    background: var(--white-warm); border-bottom: 1px solid var(--line);
    padding: 1.4rem var(--pad) 2rem; display: none;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: .1rem; }
  .nav a { display: block; padding-block: .7rem; font-size: .85rem; }
  .nav a::after { display: none; }
}

/* ============================================================
   HERO — cinematic, minimal type
   ============================================================ */
.hero { position: relative; min-height: min(92vh, 900px); display: grid; isolation: isolate; }
.hero__img { position: absolute; inset: 0; overflow: hidden; z-index: -2; }
.hero__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  transform: scale(1.06);
  animation: heroReveal 2.4s var(--ease) forwards, heroDrift 30s ease-in-out 2.4s infinite alternate;
}
@keyframes heroReveal { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1.045); } }
@keyframes heroDrift  { from { transform: scale(1.045); } to { transform: scale(1.12); } }

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(20,22,19,.78) 0%, rgba(20,22,19,.42) 46%, rgba(20,22,19,.12) 100%);
}

.hero__in {
  max-width: var(--wrap); margin-inline: auto; width: 100%;
  padding: clamp(6rem, 14vh, 10rem) var(--pad) clamp(4rem, 9vh, 7rem);
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 1.9rem; color: var(--white-warm);
}
.hero .label { color: var(--gold); }
.hero h1 {
  color: var(--white-warm);
  font-size: clamp(2.7rem, 5.6vw, 4.75rem);   /* 64-76px desktop, ~43px mobile */
  line-height: 1.02;
  max-width: 15ch;
}
.hero h1 span { display: block; }
.hero p { max-width: 46ch; color: rgba(251,250,248,.9); font-size: 1.09rem; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: .5rem; }
.hero .tlink { color: var(--white-warm); }

/* ============================================================
   INTRO
   ============================================================ */
.intro__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 6.5rem); align-items: start; }
@media (max-width: 900px) { .intro__in { grid-template-columns: 1fr; } }
.intro h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
.intro__body { display: flex; flex-direction: column; gap: 1.5rem; }
.intro__body p { color: var(--ink-2); font-size: 1.0625rem; max-width: 56ch; }

/* ============================================================
   DRESSES — photography first, not product cards
   ============================================================ */
.dresses { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.9rem); }
@media (max-width: 1020px) { .dresses { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .dresses { grid-template-columns: 1fr; } }

.dress { text-decoration: none; display: flex; flex-direction: column; }
.dress__frame {
  position: relative; overflow: hidden; background: var(--beige);
  aspect-ratio: 4 / 5;
}
.dress__frame img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.dress:hover .dress__frame img { transform: scale(1.05); }
.dress__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,22,19,.55));
  opacity: 0; transition: opacity .55s var(--ease);
}
.dress:hover .dress__frame::after { opacity: 1; }
.dress__view {
  position: absolute; left: 0; right: 0; bottom: 1.4rem; z-index: 1;
  text-align: center; color: var(--white-warm);
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.dress:hover .dress__view { opacity: 1; transform: none; }
.dress__name {
  display: block;
  font-family: var(--display); font-size: 1.7rem; font-weight: 500;
  margin-top: 1.05rem; line-height: 1.15;
}
.dress__sub { display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); margin-top: .3rem; }

/* ============================================================
   PACKAGES
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.6vw, 1.5rem); align-items: stretch; }
@media (max-width: 1080px) { .tiers { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; } }
@media (max-width: 560px)  { .tiers { grid-template-columns: 1fr; max-width: 420px; } }

.tier {
  position: relative;
  display: flex; flex-direction: column; gap: 1.15rem;
  background: var(--white-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.8rem, 2.2vw, 2.3rem) clamp(1.4rem, 1.8vw, 1.9rem);
}
.tier--feature { border-color: var(--emerald); }
/* Gold is the badge only; the card itself stays emerald-led. */
.tier__badge {
  position: absolute; top: -.7rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: .35rem .95rem; border-radius: 2px; white-space: nowrap;
}
.tier__icon { color: var(--gold); margin-bottom: .1rem; }
.tier__icon svg { display: block; }
.tier h3 { font-size: 1.7rem; }        /* 27-32px */
.tier__price {
  font-family: var(--display); font-weight: 600;
  font-size: 2.9rem; line-height: 1;     /* 46-54px */
  font-variant-numeric: tabular-nums;
  color: var(--emerald);
}
.tier__price sup {
  font-family: var(--body); font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  vertical-align: .78em; margin-right: .2rem; color: var(--ink-2);
}
.tier__alt {
  font-family: var(--body); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; color: var(--ink-2); margin-top: .35rem;
}
.tier__desc { font-size: .92rem; color: var(--ink-2); line-height: 1.55; }
.tier ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.tier li { display: flex; gap: .6rem; font-size: .93rem; line-height: 1.4; color: var(--ink); }
.tier li::before {
  content: "\2713"; flex: none; color: var(--gold-ink);
  font-size: .82rem; font-weight: 700; line-height: 1.5;
}
.tier .btn { margin-top: auto; width: 100%; }
.tier__rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2.5rem, 5vw, 5rem); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step { display: flex; flex-direction: column; gap: 1.05rem; }
.step__n {
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep);
}
.band--dark .step__n { color: var(--gold); }
.step h3 { font-size: 1.95rem; }
.step p { color: var(--ink-2); font-size: 1rem; }
.band--dark .step h3 { color: var(--white-warm); }
.band--dark .step p { color: var(--foot-ink); }

.exp__sub {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--white-warm);
  margin-top: -.2rem;
}
.exp__trust {
  margin-top: clamp(3rem, 5vw, 4.5rem); text-align: center;
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--foot-ink);
}
.exp__cta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }


/* ============================================================
   WHY US
   ============================================================ */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 940px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why { grid-template-columns: 1fr; } }
.why__item { display: flex; flex-direction: column; gap: .95rem; }
.why__item svg { color: var(--gold); }
.why__item h3 { font-size: 1.4rem; }
.why__item p { font-size: .97rem; color: var(--ink-2); }

/* ============================================================
   GALLERY — editorial masonry
   ============================================================ */
.masonry { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 1.5vw, 1.3rem); }
@media (max-width: 1020px) { .masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px)  { .masonry { grid-template-columns: repeat(2, 1fr); } }
.masonry figure { margin: 0; overflow: hidden; background: var(--beige); aspect-ratio: 4 / 5; }
.masonry img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 1.2s var(--ease); }
.masonry figure:hover img { transform: scale(1.05); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
@media (max-width: 940px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--white-warm); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.8rem, 2.6vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.review p {
  font-family: var(--display); font-size: 1.32rem; font-weight: 500; line-height: 1.42;
}
.review__by { display: flex; flex-direction: column; gap: .1rem; margin-top: auto; }
.review__by b { font-size: .82rem; font-weight: 600; letter-spacing: .04em; }
.review__by span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); }
.review__stars { color: var(--gold); font-size: .72rem; letter-spacing: .3em; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.ig__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.6rem; margin-bottom: 2.5rem; }
.ig__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.5rem, 1vw, .9rem); }
@media (max-width: 900px) { .ig__grid { grid-template-columns: repeat(3, 1fr); } }
.ig__tile { position: relative; overflow: hidden; aspect-ratio: 1/1; display: block; background: var(--beige); }
.ig__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.ig__tile:hover img { transform: scale(1.07); }
.ig__tile::after { content: ""; position: absolute; inset: 0; background: rgba(16,56,46,.35); opacity: 0; transition: opacity .5s var(--ease); }
.ig__tile:hover::after { opacity: 1; }
.ig__handle {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-size: 1.4rem; font-weight: 500;
  text-decoration: none; color: var(--emerald);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; isolation: isolate; min-height: 560px; display: grid; place-items: center; text-align: center; overflow: hidden; }
.final img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.final::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(20,22,19,.62); }
.final__in { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; padding: clamp(4rem,9vw,7rem) var(--pad); color: var(--white-warm); }
.final h2 { color: var(--white-warm); font-size: clamp(2.2rem, 4.6vw, 3.9rem); max-width: 18ch; }
.final p { color: rgba(251,250,248,.86); font-size: 1.09rem; }
.final__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: .6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--dark); color: var(--foot-ink); border-top: 1px solid var(--gold); }
.foot__cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); padding-block: clamp(3.5rem, 7vw, 5.5rem); }
@media (max-width: 900px) { .foot__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__cols { grid-template-columns: 1fr; } }
.foot__brand {
  font-family: var(--display); font-weight: 600; font-size: 1.32rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--white-warm);
  text-decoration: none; display: inline-block; margin-bottom: 1.1rem;
}
.foot p { font-size: .95rem; max-width: 38ch; }
.foot h4 {
  font-family: var(--body); font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--white-warm);
  margin: 0 0 1.15rem;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.foot a { text-decoration: none; color: var(--foot-ink); transition: color .35s var(--ease); font-size: .95rem; }
.foot a:hover { color: var(--gold); }
.foot__contact li a { display: inline-flex; align-items: flex-start; gap: .55rem; }
.foot__contact svg { color: var(--gold); flex: none; margin-top: .28rem; }
.foot__trust { margin-top: 1.2rem; font-size: .78rem; letter-spacing: .04em; color: var(--foot-ink); max-width: 30ch; }
.foot__cta {
  border-top: 1px solid rgba(251,250,248,.12);
  padding-top: clamp(2.4rem, 5vw, 3.4rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
}
.foot__cta h3 { color: var(--white-warm); font-size: clamp(1.5rem, 2.6vw, 2.15rem); }
.foot__cta p { color: var(--foot-ink); font-size: .95rem; max-width: 48ch; margin-top: .5rem; }
.foot__cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 640px) {
  .foot__cta { flex-direction: column; align-items: flex-start; }
  .foot__cta-actions { width: 100%; }
  .foot__cta-actions .btn { flex: 1 1 auto; justify-content: center; }
  .foot__base { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .foot__base ul { flex-wrap: wrap; gap: 1rem 1.4rem; }
}
.foot__base {
  border-top: 1px solid rgba(251,250,248,.1);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: .82rem;
}
.foot__base ul { flex-direction: row; gap: 1.6rem; }

.wa {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 95;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--emerald); color: var(--white-warm);
  display: grid; place-items: center; text-decoration: none;
  border: 1px solid rgba(182,146,74,.5);
  transition: background .45s var(--ease), transform .45s var(--ease);
}
.wa:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* ============================================================
   MOTION — soft fade + slight rise, nothing flashy
   ============================================================ */
.rev { opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.rev.in { opacity: 1; transform: none; }
.rev-d1 { transition-delay: .09s; }
.rev-d2 { transition-delay: .18s; }
.rev-d3 { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  .rev { opacity: 1; transform: none; transition: none; }
  .hero__img img { animation: none; transform: scale(1.02); }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}


/* ============================================================
   WORDPRESS — blog, comments, widgets, alignments
   ============================================================ */
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--emerald); color: var(--white-warm);
  padding: .9rem 1.3rem; text-decoration: none; font-size: .8rem;
}
.skip-link:focus { left: 0; }

.layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: clamp(2.5rem,5vw,5rem); align-items: start; }
@media (max-width: 940px) { .layout { grid-template-columns: 1fr; } }

.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: clamp(1.8rem,3.5vw,3rem); }
.post-card { display: flex; flex-direction: column; gap: .75rem; text-decoration: none; }
.post-card__thumb { overflow: hidden; background: var(--beige); aspect-ratio: 3 / 2; }
.post-card__thumb img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 1.1s var(--ease); }
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post__date { font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); }
.post-card h3 { font-size: 1.5rem; transition: color .4s var(--ease); }
.post-card:hover h3 { color: var(--emerald); }
.post-card p { font-size: .96rem; color: var(--ink-2); }

.entry { display: flex; flex-direction: column; gap: 1.6rem; }
.entry__header { display: flex; flex-direction: column; gap: .9rem; }
.entry__title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.entry__thumb img { width: 100%; max-height: 660px; object-fit: cover; }

.entry__content { display: flex; flex-direction: column; gap: 1.35rem; font-size: 1.09rem; }
.entry__content > * { margin: 0; }
.entry__content p, .entry__content ul, .entry__content ol { max-width: 68ch; }
.entry__content h2 { font-size: 2.1rem; margin-top: 1.2rem; }
.entry__content h3 { font-size: 1.6rem; margin-top: .9rem; }
.entry__content ul, .entry__content ol { padding-left: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.entry__content a { color: var(--emerald); text-decoration: underline; text-underline-offset: .2em; text-decoration-color: var(--gold); }
.entry__content blockquote {
  border-left: 1px solid var(--gold); padding-left: 1.4rem; margin: .6rem 0;
  font-family: var(--display); font-size: 1.5rem; font-weight: 500; line-height: 1.4;
}
.entry__content pre { background: var(--beige); border: 1px solid var(--line); padding: 1.1rem; overflow-x: auto; font-size: .9rem; }
.entry__content code { background: var(--beige); padding: .12em .38em; font-size: .9em; }
.entry__content table { width: 100%; border-collapse: collapse; }
.entry__content th, .entry__content td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.entry__footer { border-top: 1px solid var(--line); padding-top: 1.2rem; font-size: .9rem; color: var(--ink-2); }
.entry__footer a { color: var(--emerald); }

.alignleft { float: left; margin: .3rem 1.8rem 1.2rem 0; }
.alignright { float: right; margin: .3rem 0 1.2rem 1.8rem; }
.aligncenter { margin-inline: auto; }
.alignwide { width: min(100%, 1160px); margin-inline: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text, .wp-element-caption {
  font-size: .78rem; color: var(--ink-2); text-align: center; margin-top: .5rem;
  letter-spacing: .04em;
}

.pagination { margin-top: 3.5rem; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .45rem; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.6rem; height: 2.6rem; padding-inline: .7rem;
  border: 1px solid var(--line); text-decoration: none; font-size: .85rem;
  transition: border-color .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.pagination .page-numbers:hover { border-color: var(--emerald); }
.pagination .page-numbers.current { background: var(--emerald); color: var(--white-warm); border-color: var(--emerald); }

.widget { margin-bottom: 2.4rem; }
.widget-title { font-size: 1.15rem; margin-bottom: .9rem; }
.widget ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; font-size: .95rem; }
.widget a { text-decoration: none; color: var(--ink-2); transition: color .35s var(--ease); }
.widget a:hover { color: var(--emerald); }

.search-form { display: flex; gap: .6rem; }
.search-form input[type="search"] {
  flex: 1; min-width: 0; padding: .85rem 1rem;
  border: 1px solid var(--line); background: var(--white-warm);
  font-family: var(--body); font-size: .95rem; color: var(--ink); border-radius: 4px;
}

.comments { margin-top: 4rem; border-top: 1px solid var(--line); padding-top: 2.4rem; }
.comments h2 { font-size: 1.8rem; margin-bottom: 1.4rem; }
.comment-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.7rem; }
.comment-list ol.children { list-style: none; padding-left: 1.6rem; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 1.3rem; }
.comment-body { border-left: 1px solid var(--line); padding-left: 1.2rem; }
.comment-meta { font-size: .78rem; color: var(--ink-2); margin-bottom: .5rem; }
.comment-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.8rem; }
.comment-form input[type="text"], .comment-form input[type="email"],
.comment-form input[type="url"], .comment-form textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line);
  background: var(--white-warm); font-family: var(--body); font-size: .97rem;
  color: var(--ink); border-radius: 4px;
}
.comment-form .submit {
  align-self: flex-start; background: var(--emerald); color: var(--white-warm);
  border: 1px solid var(--emerald); border-radius: 4px; padding: 1.05rem 2.1rem;
  font-family: var(--body); font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  transition: background .45s var(--ease);
}
.comment-form .submit:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Prompt shown to editors when a section has no content yet. */
.fd-empty {
  border: 1px dashed var(--line); background: var(--beige);
  padding: 1.6rem; font-size: .95rem; color: var(--ink-2); border-radius: 4px;
}
.fd-empty a { color: var(--emerald); }

/* ============================================================
   BRAND LOCKUP
   The supplied logo is stacked (emblem above wordmark), which is
   illegible at header height. So the header pairs the emblem with
   the wordmark set in the brand serif; the full stacked logo is
   used in the footer where there is vertical room.
   ============================================================ */
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand__mark { width: auto; height: 44px; transition: height .5s var(--ease); }
.masthead.is-stuck .brand__mark { height: 36px; }
.brand__name {
  font-family: var(--display); font-weight: 600;
  font-size: 1.12rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--emerald); white-space: nowrap; line-height: 1.1;
  max-width: 8ch;
}
.brand__logo { max-height: 56px; width: auto; }
@media (max-width: 560px) {
  .brand__name { font-size: .95rem; }
  .brand__mark { height: 36px; }
}

/* ============================================================
   COLOUR FILTER — dress archive only
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.4rem; }
.chip {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1.1rem .55rem .7rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: transparent; color: var(--ink-2);
  font-family: var(--body); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
  transition: border-color .4s var(--ease), color .4s var(--ease), background .4s var(--ease);
}
.chip:hover { color: var(--ink); border-color: var(--ink-2); }
.chip[aria-pressed="true"] { color: var(--white-warm); background: var(--emerald); border-color: var(--emerald); }
.chip i {
  width: 13px; height: 13px; border-radius: 50%;
  border: 1px solid rgba(36,33,31,.2); background: var(--sw, transparent);
}
.dress[hidden] { display: none; }

/* ============================================================
   ODDS AND ENDS used by the secondary templates
   ============================================================ */
.wrap--narrow { max-width: 780px; }
.sechead__lede { color: var(--ink-2); max-width: 58ch; font-size: 1.0625rem; }
.tier__who {
  font-size: .68rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-2); margin-top: -.9rem;
}
.sidebar { display: block; }

/* ============================================================
   BLOG CARDS — category, meta, read-article (existing design kept)
   ============================================================ */
.post-card__cat {
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: .2rem;
}
.post-card__excerpt { font-size: .95rem; color: var(--ink-2); }
.post-card__meta {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: .5rem 1rem; margin-top: .2rem;
}
.post-card__meta .post__date { font-size: .7rem; }
.post-card__more {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--emerald); position: relative;
}
.post-card:hover .post-card__more { color: var(--gold-deep); }

/* ============================================================
   ARTICLE — last-updated, in-content CTA, disclaimer, related
   ============================================================ */
.entry__updated {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2);
}

.article-cta {
  margin: 2.6rem 0; padding: clamp(1.8rem, 3vw, 2.4rem);
  background: var(--beige); border: 1px solid var(--line); border-radius: 6px;
  display: flex; flex-direction: column; gap: .8rem;
}
.article-cta h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin: 0; }
.article-cta p { margin: 0; color: var(--ink-2); }
.article-cta .btn { margin-top: .4rem; margin-right: .6rem; }

.disclaimer {
  margin-top: 3rem; padding: clamp(1.6rem, 2.6vw, 2.2rem);
  background: var(--bg-tint, #F4F7F5); border: 1px solid var(--line); border-radius: 6px;
}
.disclaimer h2 { font-size: 1.25rem; margin-bottom: .8rem; }
.disclaimer p { font-size: .88rem; line-height: 1.6; color: var(--ink-2); margin-bottom: .7rem; max-width: none; }
.disclaimer a { color: var(--emerald); text-decoration: underline; text-underline-offset: .18em; text-decoration-color: var(--gold); }

.related { margin-top: clamp(3rem, 6vw, 4.5rem); }
.related > .label { margin-bottom: 1.4rem; }

/* ============================================================
   RESPONSIVE HARDENING — behaviour only, no visual redesign
   ============================================================ */
html { max-width: 100%; overflow-x: hidden; }

/* iOS Safari zooms when an input's font-size is under 16px — pin it on phones. */
@media (max-width: 768px) {
  input, textarea, select { font-size: 16px; }
}

/* Book button surfaced inside the mobile menu (hidden on desktop). */
.nav__book { display: none; }
@media (max-width: 1200px) {
  .nav__book { display: inline-flex; margin: 1.1rem 0 .2rem; }
}

/* Hero: keep the subject in frame and the text legible on smaller screens. */
@media (max-width: 860px) {
  .hero { min-height: min(78vh, 680px); }
  .hero__img img { object-position: 68% 38%; }
  .hero::after {
    background: linear-gradient(180deg, rgba(20,22,19,.30) 0%, rgba(20,22,19,.34) 45%, rgba(20,22,19,.80) 100%);
  }
}
@media (max-width: 480px) {
  .hero { min-height: min(74vh, 560px); }
  .hero__img img { object-position: 70% 36%; }
}

/* Final-CTA banner: keep subject and text readable on mobile. */
@media (max-width: 640px) {
  .final { min-height: 440px; }
  .final img { object-position: 60% 30%; }
}

/* Floating WhatsApp: a touch smaller and clear of the edges on phones. */
@media (max-width: 560px) {
  .wa { width: 48px; height: 48px; right: 1rem; bottom: 1rem; }
}
