/* =====================================================================
   Strictly Weddings Warehouse of Arizona
   Vanilla CSS — boutique, warm, editorial
   No frameworks. Mobile-first. Designed for 390px up.
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --color-bg:         #fdfcfb;   /* bright near-white */
  --color-bg-alt:     #5fd2ce;   /* turquoise — alternate sections */
  --color-text:       #1a1a1a;
  --color-heading:    #2c1810;   /* deep warm brown */
  /* Turquoise accent, four steps, chosen so every combination that carries
     text clears WCAG AA (4.5:1). Which one to reach for:
       --accent-br   decorative only. Only 3.0:1 on white, so borders,
                     underlines and focus rings — never text, never a fill
                     behind text.
       --accent      solid fills and accent text on white (4.65:1).
       --accent-dk   hover and active states.
       --accent-deep accent text, rules and borders that sit on --bg-alt.
                     The tint is saturated enough that --accent manages only
                     3.5:1 there and --accent-dk only 3.9:1; this gets 5.0:1. */
  --color-accent:     #0c8280;   /* turquoise — solid fills + accent text */
  --color-accent-dk:  #0a6462;   /* deep turquoise — hover/active */
  --color-accent-br:  #0fa6a3;   /* vivid turquoise — decorative only */
  --color-accent-deep:#085150;   /* darkest — accent text/rules on the --bg-alt tint (5.0:1) */
  --color-gold:       #c9a96e;   /* champagne gold — decorative */
  --color-white:      #ffffff;
  --color-overlay:    rgba(0, 0, 0, 0.45);
  --color-line:       rgba(44, 24, 16, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', system-ui, -apple-system, Segoe UI, sans-serif;

  --maxw: 1180px;
  --gutter: 1.375rem;
  --radius: 2px;
  --shadow-sm: 0 2px 12px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 12px 40px rgba(44, 24, 16, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --sticky-h: 64px; /* mobile booking bar height */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 8vw, 4.75rem); }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Section kickers ("Simple & Stress-Free"). Bigger and heavier than the usual
   fine-print eyebrow, with the tracking eased off — at this size 0.22em was
   pulling the letters too far apart to read comfortably. */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.88rem;
  color: var(--color-accent);
}
.eyebrow--light { color: var(--color-gold); }
/* The turquoise sections are dark enough that the normal accent tones fall
   under AA at this size. The deepest tone gets it to 5.0:1. */
.section--alt .eyebrow,
.page-hero .eyebrow { color: var(--color-accent-deep); }
.page-hero--media .eyebrow { color: var(--color-gold); }

.lead { font-size: 1.15rem; font-weight: 400; }

.script-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 760px; }

.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--alt { background: var(--color-bg-alt); }
.section--accent { background: var(--color-accent); color: var(--color-white); }
.section--dark { background: var(--color-heading); color: var(--color-bg); }

.section-head { text-align: center; max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3.25rem); }
.section-head .eyebrow { display: block; margin-bottom: 0.85rem; }
.section-head p { font-size: 1.08rem; font-weight: 500; color: rgba(26, 26, 26, 0.9); margin-top: 0.75rem; }
/* Body copy sitting straight on the turquoise: drop the muting and add a
   little weight, otherwise it reads washed out against a background this
   saturated. Text inside white cards on those sections is left alone. */
.section--alt > .container .section-head p,
.section--alt .split__body .lead {
  color: var(--color-text);
  font-weight: 500;
}
/* Every accent-coloured element that can land on a turquoise surface. On the
   tint --accent is only 2.6:1, so these all step down to the deepest tone.
   Anything inside a white card on those sections keeps the normal tones. */
.section--alt .script-accent,
.section--alt .stat strong,
.section--alt .badge:hover,
.section--alt .form label,
.ai-snippet .script-accent,
.ai-snippet .stat strong,
.page-hero .script-accent,
.page-hero .stat strong { color: var(--color-accent-deep); }
.section--alt .form .note { color: rgba(26, 26, 26, 0.85); }

.text-center { text-align: center; }
/* Standalone captions (book, FAQ, thanks) — the form variant is styled below. */
.note { font-size: 0.97rem; font-weight: 500; }

/* decorative divider */
.rule {
  width: 64px; height: 1px; background: var(--color-gold);
  margin: 1.25rem auto; position: relative; border: none;
}
.rule::before {
  content: "✦"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); background: inherit;
  color: var(--color-gold); font-size: 0.7rem;
  background: var(--color-bg); padding: 0 0.5rem;
}
/* Champagne gold sits at 1.19:1 on the turquoise and effectively disappears,
   so the divider switches to the deep turquoise on those sections. */
.section--alt .rule { background: var(--color-accent-deep); }
.section--alt .rule::before { background: var(--color-bg-alt); color: var(--color-accent-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 500;
  letter-spacing: 0.04em; font-size: 0.92rem;
  padding: 1rem 1.9rem; border-radius: var(--radius);
  min-height: 48px;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn--primary { background: var(--color-accent); color: var(--color-white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-accent-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* Pressed state: settle back down and scale in, so the click has weight
   rather than only swapping colour. */
.btn--primary:active { background: var(--color-accent-dk); transform: scale(0.975); box-shadow: var(--shadow-sm); }
.btn--on-accent:active,
.btn--light:active,
.btn--ghost:active { transform: scale(0.975); }
.btn--ghost { background: transparent; color: var(--color-heading); border: 1px solid var(--color-line); }
.btn--ghost:hover { border-color: var(--color-accent-br); color: var(--color-accent-dk); }
.btn--light { background: var(--color-white); color: var(--color-heading); }
.btn--light:hover { background: var(--color-bg-alt); transform: translateY(-2px); }
.btn--on-accent { background: var(--color-white); color: var(--color-accent-dk); }
.btn--on-accent:hover { background: var(--color-heading); color: var(--color-white); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 252, 251, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-line);
}
/* gap is a floor: space-between alone will happily leave the wordmark
   touching the first nav link when the row is full. */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 66px; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand__mark { height: 34px; width: auto; }
/* The wordmark read light because Cormorant Garamond at 400 is a fine serif,
   not because the colour was pale — the old brown was already ~16:1 here. So
   this goes to the 600 weight (already loaded) as well as a deeper near-black
   brown. The footer overrides the colour for its dark background. */
.brand__text {
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1;
  color: #1a0d06; font-weight: 600; letter-spacing: 0.02em;
}
.brand__text small {
  display: block; font-family: var(--font-body); font-size: 0.63rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--color-accent);
  margin-top: 2px; font-weight: 500;
}
.nav__links { display: none; }
.nav__cta { display: none; }
/* Never let the call button wrap or be squeezed — the nav links absorb any
   shortfall instead. */
.brand, .nav__cta { flex: none; }
.nav__cta { white-space: nowrap; }
.nav__cta-full { display: none; }

.nav__toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 12px 6px; margin-right: -6px;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--color-heading);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.nav__drawer {
  position: fixed; inset: 66px 0 0 0; z-index: 55;
  background: var(--color-bg);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  padding: 1.5rem var(--gutter) 2.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  overflow-y: auto;
}
.nav__drawer[data-open="true"] { transform: translateX(0); }
.nav__drawer a {
  font-family: var(--font-display); font-size: 1.7rem;
  color: var(--color-heading); padding: 0.7rem 0;
  border-bottom: 1px solid var(--color-line);
}
.nav__drawer a[aria-current="page"] { color: var(--color-accent); }
.nav__drawer .btn { margin-top: 1.5rem; font-family: var(--font-body); font-size: 0.95rem; }
.nav__drawer .nav__phone {
  margin-top: 0.75rem; text-align: center; border: none;
  font-family: var(--font-body); font-size: 1rem; letter-spacing: 0.05em;
  color: var(--color-accent-dk);
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: grid; place-items: center; overflow: hidden; }
.hero video, .hero__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.30) 40%, rgba(44,24,16,0.6) 100%);
}
.hero__content {
  position: relative; z-index: 2; text-align: center; color: var(--color-white);
  padding: 6rem var(--gutter) 8rem; max-width: 880px;
}
.hero__content h1 { color: var(--color-white); text-shadow: 0 2px 30px rgba(0,0,0,0.35); margin: 1rem 0 1.25rem; }
/* Sits on video, so the background luminance is whatever frame is showing.
   A light champagne rather than the mid gold, plus size, weight and a shadow,
   so it stays legible across the whole loop. */
.hero__eyebrow {
  color: #f3e7d0;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}
.hero__sub {
  font-size: 1.15rem; font-weight: 400; max-width: 560px; margin: 0 auto 2rem;
  color: rgba(255,255,255,0.92);
}
.hero__cta-row { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero__scroll {
  display: inline-flex; align-items: center; gap: 0.4rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.92); margin-top: 0.5rem;
}
.hero__scroll:hover { color: var(--color-gold); }

/* ---------- Trust strip ---------- */
.trust { background: var(--color-heading); color: var(--color-bg); }
.trust__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem; padding-block: 2.25rem; text-align: center;
}
.trust__item { display: flex; flex-direction: column; gap: 0.3rem; }
.trust__item .ico { color: var(--color-gold); font-size: 1.1rem; }
.trust__item strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.trust__item span { font-size: 0.86rem; font-weight: 500; letter-spacing: 0.08em; color: rgba(253,252,251,0.88); text-transform: uppercase; }

/* ---------- Full-bleed quote divider ---------- */
.divider {
  position: relative; min-height: 56vh; display: grid; place-items: center;
  background-size: cover; background-position: center center; background-attachment: scroll;
  text-align: center; color: var(--color-white); overflow: hidden;
}
/* Only apply parallax on pointer devices wide enough to handle it — mobile browsers (esp. iOS Safari) render background-attachment: fixed incorrectly */
@media (hover: hover) and (min-width: 768px) {
  .divider { background-attachment: fixed; }
}
.divider::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.divider__inner { position: relative; z-index: 1; max-width: 720px; padding: 4rem var(--gutter); }
.divider__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.7rem, 4.5vw, 3rem); line-height: 1.25; color: var(--color-white);
}
.divider__cite { display: block; margin-top: 1.25rem; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.8rem; font-weight: 500; color: var(--color-gold); }

/* ---------- Steps / How it works ---------- */
.steps { display: grid; gap: 1.5rem; }
.step {
  background: var(--color-white); border-radius: var(--radius); padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.step__num {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--color-gold);
  line-height: 1; display: block; margin-bottom: 0.5rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 1.08rem; font-weight: 500; color: rgba(26,26,26,0.9); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.dress-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--color-bg-alt); box-shadow: var(--shadow-sm);
}
.dress-card img {
  width: 100%; aspect-ratio: 2 / 3; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dress-card:hover img { transform: scale(1.05); }
.dress-card__body { padding: 0.95rem 1rem 1.15rem; }
.dress-card__body h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.dress-card__meta { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; color: var(--color-accent-deep); text-transform: uppercase; }
.dress-card__price { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-heading); margin-top: 0.35rem; }
.dress-card__cta {
  display: block; text-align: center; margin: 0.85rem 1rem 1.15rem;
  padding: 0.7rem; border: 1px solid var(--color-line); border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-accent-deep);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.dress-card__cta:hover { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.dress-card__tag {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  background: rgba(253,252,251,0.92); color: var(--color-accent-dk);
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.6rem; border-radius: var(--radius);
}

/* ---------- Auto-scrolling dress banner ---------- */
.dress-carousel { width: 100%; overflow: hidden; margin-top: 2.5rem; }
.dress-carousel__track {
  display: flex; width: max-content;
  list-style: none; margin: 0; padding: 0;
  animation: dress-scroll 48s linear infinite;
}
.dress-carousel:hover .dress-carousel__track { animation-play-state: paused; }
/* margin (not gap) so the trailing space after the last item is uniform too,
   keeping translateX(-50%) a perfectly seamless one-set advance */
.dress-carousel__track li { flex: none; margin-right: 1rem; }
.dress-carousel__track img {
  height: 300px; width: auto; display: block;
  object-fit: cover; border-radius: var(--radius);
}
@keyframes dress-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (min-width: 768px) {
  .dress-carousel__track img { height: 420px; }
}
@media (prefers-reduced-motion: reduce) {
  .dress-carousel__track { animation: none; }
  .dress-carousel { overflow-x: auto; }
}

/* filters */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.55rem 1.1rem; border: 1px solid var(--color-line); border-radius: 40px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; color: var(--color-heading);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--color-accent-br); }
.filter-btn[aria-pressed="true"] { background: var(--color-heading); color: var(--color-white); border-color: var(--color-heading); }
.is-hidden { display: none; }

/* ---------- Split panel ---------- */
.split { display: grid; gap: 2rem; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img, .split__media video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__body h2 { margin-bottom: 1rem; }
.split__body .lead { color: rgba(26,26,26,0.78); margin-bottom: 1.25rem; }
.features { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 600px) { .features { grid-template-columns: 1fr 1fr; } }
.feature dt {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--color-heading); margin-bottom: 0.35rem;
}
.feature dt::before { content: "✦ "; color: var(--color-gold); }
/* Same problem as .rule — gold is 1.19:1 on the turquoise and vanishes. */
.section--alt .feature dt::before { color: var(--color-accent-deep); }
.feature dd {
  font-family: var(--font-body); font-size: 1.02rem;
  color: var(--color-text); line-height: 1.6; margin: 0;
}

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; gap: 1.25rem; }
.review-card {
  background: var(--color-white); border-radius: var(--radius); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.9rem;
}
.review-card .stars { color: var(--color-gold); letter-spacing: 0.15em; font-size: 1rem; }
.review-card blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem;
  line-height: 1.4; color: var(--color-heading);
}
.review-card cite { font-style: normal; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-accent-dk); }

/* ---------- As seen on ---------- */
.seen-on { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.75rem; }
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.06em;
  border: 1px solid var(--color-line); border-radius: var(--radius);
  padding: 0.7rem 1.4rem; color: var(--color-heading); min-height: 56px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.badge:hover { border-color: var(--color-accent-br); color: var(--color-accent-dk); }
.badge--tlc { font-size: 1.6rem; letter-spacing: 0.18em; }
.badge--abc { font-size: 1.2rem; }
.badge--mark { flex-direction: column; gap: 0; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; }
.badge--mark strong { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.02em; }

/* ---------- Happy brides strip ---------- */
/* Pinterest-style masonry via CSS columns — tall and wide photos sit naturally, no cropping */
.brides-grid { columns: 2; column-gap: 0.75rem; }
.brides-grid img {
  width: 100%; display: block; break-inside: avoid;
  margin-bottom: 0.75rem; border-radius: var(--radius);
}

/* ---------- Trusted partner footnote ---------- */
.partner-note { background: var(--color-bg); text-align: center; padding: 1.75rem var(--gutter); }
.partner-note p { max-width: 640px; margin: 0 auto; font-size: 0.97rem; font-weight: 500; color: rgba(26,26,26,0.86); }
.partner-note a { color: var(--color-accent-dk); white-space: nowrap; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { color: var(--color-white); }
.final-cta p { color: var(--color-white); max-width: 520px; margin: 0.75rem auto 2rem; }
.final-cta .phone-line { margin-top: 1.5rem; font-size: 1.05rem; }
.final-cta .phone-line a { color: var(--color-white); border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 2px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; padding: clamp(4rem, 12vw, 7rem) 0 clamp(3rem, 7vw, 4.5rem);
  text-align: center; background: var(--color-bg-alt); overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
.page-hero p { max-width: 620px; margin: 1rem auto 0; color: var(--color-text); font-weight: 400; }
.page-hero--media { color: var(--color-white); background: var(--color-heading); }
.page-hero--media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.page-hero--media .container { position: relative; z-index: 1; }
.page-hero--media h1 { color: var(--color-white); }
.page-hero--media p { color: rgba(255,255,255,0.85); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form .field { display: grid; gap: 0.4rem; }
.form label { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent-dk); }
.form input, .form textarea, .form select {
  font: inherit; padding: 0.85rem 1rem; border: 1px solid var(--color-line);
  border-radius: var(--radius); background: var(--color-white); color: var(--color-text);
  min-height: 48px; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(15,166,163,0.35);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .row-2 { display: grid; gap: 1.1rem; }
.form .note { font-size: 0.95rem; font-weight: 500; color: rgba(26,26,26,0.86); }

/* Call / text pair on the booking page. Stacks on phones, side by side once
   there is room. */
.book-actions { display: grid; gap: 0.85rem; }
@media (min-width: 560px) { .book-actions { grid-template-columns: 1fr 1fr; } }

/* ---------- Definition lists (hours / pricing) ---------- */
.dl-card {
  background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}
.dl-card h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.dl-card dl { display: grid; grid-template-columns: 1fr auto; gap: 0.55rem 1rem; }
.dl-card dt { color: rgba(26,26,26,0.94); font-weight: 500; }
.dl-card dd { font-weight: 500; color: var(--color-heading); text-align: right; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item { background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item__q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.3rem 1.5rem; font-family: var(--font-display); font-size: 1.3rem; color: var(--color-heading);
}
.faq-item__q .plus { color: var(--color-accent); font-size: 1.5rem; flex: none; transition: transform 0.3s var(--ease); }
.faq-item__q[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item__a-inner { padding: 0 1.5rem 1.4rem; font-size: 1.1rem; font-weight: 500; color: rgba(26,26,26,0.94); }

/* ---------- Stats row ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--color-accent); line-height: 1; }
.stat span { font-size: 0.88rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(26,26,26,0.85); }

/* ---------- AI snippet (homepage factual block) ---------- */
.ai-snippet { background: var(--color-bg-alt); }
.ai-snippet .container { max-width: 820px; }
/* This paragraph is the plain-language summary of the business, so it is the
   one most worth reading. Full weight and size rather than the muted body
   treatment used elsewhere. */
.ai-snippet p {
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.72;
  color: var(--color-text);
}
.ai-snippet p strong { font-weight: 500; }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); line-height: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* ---------- TLC video ---------- */
.video-feature { background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 0.75rem; }
.video-feature video { width: 100%; border-radius: var(--radius); aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.video-feature figcaption { padding: 0.9rem 0.5rem 0.3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; justify-content: space-between; }
.video-feature figcaption span { font-size: 0.92rem; color: rgba(26,26,26,0.85); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-heading); color: rgba(253,252,251,0.92); padding-block: 3.5rem 6.5rem; }
.footer-grid { display: grid; gap: 2.25rem; }
.footer-brand .brand__text { color: var(--color-bg); }
.footer-brand p { color: rgba(253,252,251,0.9); margin-top: 0.75rem; max-width: 32ch; font-size: 1.03rem; font-weight: 500; }
.footer-col h4 { color: var(--color-gold); font-family: var(--font-body); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.6rem; font-size: 1.04rem; font-weight: 500; }
.footer-col a:hover { color: var(--color-gold); }
.footer-col address { font-style: normal; line-height: 1.9; font-size: 1.04rem; font-weight: 500; color: rgba(253,252,251,0.94); }
.footer-col address a { border-bottom: 1px solid transparent; }
.footer-col address a:hover { border-color: var(--color-gold); }
.social-row { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-row a {
  width: 40px; height: 40px; border: 1px solid rgba(253,252,251,0.25); border-radius: 50%;
  display: grid; place-items: center; transition: all 0.25s var(--ease);
}
.social-row a:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-heading); }
.footer-bottom { margin-top: 2.75rem; padding-top: 1.75rem; border-top: 1px solid rgba(253,252,251,0.15); font-size: 0.94rem; font-weight: 500; color: rgba(253,252,251,0.85); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; }
.footer-cities { max-width: 34rem; line-height: 1.7; text-align: right; }
@media (max-width: 640px) { .footer-cities { text-align: left; } }

/* ---------- Sticky mobile booking bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr auto;
  background: var(--color-heading); border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.18);
  padding: 0.55rem 0.6rem calc(0.55rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 52px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em;
}
.mobile-bar .mb-book { background: var(--color-accent); color: var(--color-white); }
.mobile-bar .mb-call { background: transparent; color: var(--color-bg); border: 1px solid rgba(255,255,255,0.3); padding-inline: 1.1rem; }

/* Visually hidden but still announced by screen readers — used for section
   headings that would be redundant on screen. This is NOT for crawler-only
   text; the business facts that used to live here are in the LocalBusiness
   schema and llms.txt instead. */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--color-accent); color: #fff; padding: 0.75rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================================
   Responsive — tablet & up
   =================================================================== */
@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__drawer { display: none; }
  /* At 768 the bigger nav type leaves no room between the wordmark and the
     first link, so the gap tightens here and opens back up at 1024. */
  .nav__links { display: flex; align-items: center; gap: 1.4rem; }
  .nav__links a {
    font-size: 1.05rem; font-weight: 500; letter-spacing: 0.03em;
    position: relative; padding: 0.25rem 0;
  }
  .nav__links a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
    background: var(--color-accent-br); transition: width 0.25s var(--ease);
  }
  .nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
  .nav__links a[aria-current="page"] { color: var(--color-accent); }
  .nav__cta { display: inline-flex; }

  .mobile-bar { display: none; }

  .trust__grid { grid-template-columns: repeat(4, 1fr); padding-block: 3rem; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split--reverse .split__media { order: 2; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .brides-grid { columns: 3; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .form .row-2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
  .dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* Tablet-width nav: six links plus a full phone number does not fit on one
   row, and the button was wrapping onto two lines. Below 1024 the button says
   "Call Us"; the number comes back once there is room for it. */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__links a { font-size: 0.97rem; }
  .nav__cta { font-size: 0.86rem; padding-inline: 1.15rem; }
}

@media (min-width: 1024px) {
  .hero { min-height: 100vh; }
  .gallery-grid { gap: 1.5rem; }
  .nav__links { gap: 2rem; }
  .nav__cta-short { display: none; }
  .nav__cta-full { display: inline; }
}

/* Mobile spacing so sticky bar never covers content */
@media (max-width: 767px) {
  body { padding-bottom: var(--sticky-h); }
  .step { padding: 1.5rem 1.25rem; }
}

/* Inventory honesty note (dresses page) */
.inventory-note {
  text-align: center; max-width: 720px; margin: 0 auto 1.75rem;
  padding: 0.9rem 1.25rem; background: var(--color-bg-alt);
  border: 1px solid var(--color-line); border-radius: var(--radius);
  font-size: 0.97rem; color: var(--color-text); font-weight: 400;
}

/* Booking fallback (book page) */
.booking-fallback {
  text-align: center; margin-top: 1rem; padding: 1.1rem 1.25rem;
  background: var(--color-bg-alt); border: 1px dashed var(--color-accent-deep);
  border-radius: var(--radius);
}
.booking-fallback a { color: var(--color-accent-deep); border-bottom: 1px solid var(--color-accent-deep); font-weight: 500; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.blog-card {
  background: var(--color-white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card a.blog-card__img { display: block; overflow: hidden; }
.blog-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__date { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.5rem; }
.blog-card__body h3 { font-size: 1.5rem; line-height: 1.15; margin-bottom: 0.6rem; }
.blog-card__body h3 a:hover { color: var(--color-accent); }
.blog-card__excerpt { color: rgba(26, 26, 26, 0.9); font-size: 1.06rem; font-weight: 500; margin-bottom: 1.1rem; }
.blog-card__more { margin-top: auto; align-self: flex-start; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--color-accent-dk); border-bottom: 1px solid var(--color-accent-br); padding-bottom: 2px; }
.blog-card__more:hover { color: var(--color-heading); }

/* Article (single post) */
.article { max-width: 760px; margin: 0 auto; }
.article__back { display: inline-block; margin-bottom: 1.5rem; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--color-accent-dk); }
.article__back:hover { color: var(--color-heading); }
.article__date { display: block; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.75rem; }
.article h1 { font-size: clamp(2.1rem, 5.5vw, 3.25rem); margin-bottom: 1rem; }
.article__hero { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin: 1.75rem 0 2.25rem; }
.article__hero img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.article__body p { font-size: 1.08rem; color: rgba(26, 26, 26, 0.86); margin-bottom: 1.25rem; }
.article__body h2 { font-size: 1.7rem; margin: 2rem 0 0.75rem; }
.article__body a { color: var(--color-accent-dk); border-bottom: 1px solid var(--color-accent-br); }
.article__body ul.article__list { list-style: disc; padding-left: 1.25rem; margin-bottom: 1.25rem; }
.article__body ul.article__list li { font-size: 1.08rem; color: rgba(26, 26, 26, 0.86); margin-bottom: 0.5rem; }
.article__body blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.4;
  color: var(--color-heading); border-left: 2px solid var(--color-accent-br);
  padding-left: 1.25rem; margin: 1.75rem 0;
}
/* Q&A block on posts that have one — same accordion as the FAQ page */
.article__faq { margin-top: 2.5rem; }
.article__faq h2 { font-size: 1.7rem; margin-bottom: 1rem; }
.article__cta { margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid var(--color-line); text-align: center; }

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid .blog-card--feature { grid-column: span 2; flex-direction: row; }
  .blog-grid .blog-card--feature .blog-card__img { flex: 1 1 55%; }
  .blog-grid .blog-card--feature img { height: 100%; aspect-ratio: auto; min-height: 320px; }
  .blog-grid .blog-card--feature .blog-card__body { flex: 1 1 45%; justify-content: center; padding: 2.5rem; }
  .blog-grid .blog-card--feature h3 { font-size: 2rem; }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid .blog-card--feature { grid-column: span 3; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dress-card img, .btn, .filter-btn, .faq-item__a, .faq-item__q .plus,
  .nav__drawer, .nav__toggle span, .site-header, .blog-card, .blog-card img { transition: none; }
  .divider { background-attachment: scroll; }
}
