/* ============================================================
   Bloom Room Studio — styles.css
   ------------------------------------------------------------
   Edit this file to change colors, fonts, spacing, or layout.
   Content (words, photos, products) is edited in index.html.
   ============================================================ */

/* ============ SELF-HOSTED FONTS (Latin + Thai subsets) ============ */

/* Inter — variable weight (300–500), latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Cormorant Garamond — variable weight (300–600), latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/cormorant-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Cormorant Garamond italic — variable weight (300–400), latin */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('../fonts/cormorant-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Sarabun 300 — latin */
@font-face {
  font-family: 'Sarabun';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/sarabun-300-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Sarabun 300 — thai */
@font-face {
  font-family: 'Sarabun';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/sarabun-300-thai.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* Sarabun 400 — latin */
@font-face {
  font-family: 'Sarabun';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/sarabun-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Sarabun 400 — thai */
@font-face {
  font-family: 'Sarabun';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/sarabun-400-thai.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* Sarabun 500 — latin */
@font-face {
  font-family: 'Sarabun';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/sarabun-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Sarabun 500 — thai */
@font-face {
  font-family: 'Sarabun';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/sarabun-500-thai.woff2') format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* ============ DESIGN TOKENS (edit here to restyle the whole site) ============ */
:root {
  --main-family: 'Inter', 'Sarabun', sans-serif;
  --heading-family: 'Cormorant Garamond', 'Sarabun', serif;
  --bg: #ffffff;
  --text: #000000;
  --muted: #6a6a6a;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #9e2614;   /* brick red */
  --taupe: #b79e8c;    /* warm taupe */
  --footer-bg: #000000;
  --main-spacing: 0.025em;
  --heading-spacing: 0.15em;
  --font-size: 16px;
  --nav-size: 12px;
  --section-y: 96px;
}

/* ============ BASE / RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--font-size); scroll-behavior: smooth; }
body {
  font-family: var(--main-family);
  font-weight: 400;
  letter-spacing: var(--main-spacing);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* When Thai is active, use Sarabun for everything so mixed content looks cohesive */
html[lang="th"] body { font-family: 'Sarabun', 'Inter', sans-serif; }
html[lang="th"] em,
html[lang="th"] h1, html[lang="th"] h2, html[lang="th"] h3, html[lang="th"] h4 {
  font-family: 'Sarabun', serif;
  font-style: normal;
}

/* ---- Thai typography adjustments ----
   Sarabun's x-height reads smaller than Inter's at the same px size, and
   Latin-style uppercase tracking (0.25em+) makes Thai look thin & stretched.
   So when Thai is active we: (1) bump body + small-label sizes ~7–9% and
   (2) relax letter-spacing on uppercase labels so the characters stay paired. */
html[lang="th"] { --main-spacing: 0.015em; }
html[lang="th"] body           { font-size: 17px; line-height: 1.7; }
html[lang="th"] .rich-text p   { font-size: 16px; line-height: 1.85; }
html[lang="th"] .service p,
html[lang="th"] .footer-col p,
html[lang="th"] .footer-col li,
html[lang="th"] .product .name { font-size: 14.5px; }
html[lang="th"] .announcement { letter-spacing: 0.12em; }
html[lang="th"] .announcement,
html[lang="th"] nav.primary a,
html[lang="th"] .eyebrow,
html[lang="th"] .btn,
html[lang="th"] .lang-btn,
html[lang="th"] .filter-btn,
html[lang="th"] .product .meta,
html[lang="th"] .footer-col h4 { font-size: 13px; letter-spacing: 0.12em; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--heading-family); font-style: italic; font-weight: 400; }

/* ============ ACCESSIBILITY ============ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 10000;
}
.skip-link:focus { left: 16px; top: 16px; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  /* Animate the collapse when the page is scrolled past ~24px. */
  transition: box-shadow 0.25s ease;
}
.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 40px 16px;
  position: relative;
  transition: padding 0.25s ease;
}
.logo-center {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
}
.logo-center img {
  height: 56px;
  display: block;
  width: auto;
  transition: height 0.25s ease;
}

/* ---- Compact header on scroll ----
   main.js toggles .is-scrolled after scrollY > 24. Reclaims ~70px
   of sticky viewport without changing the chrome's visual identity. */
.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.site-header.is-scrolled .header-row { padding: 10px 40px 6px; }
.site-header.is-scrolled .logo-center img { height: 38px; }
.site-header.is-scrolled .logo-wordmark { font-size: 18px; }
.site-header.is-scrolled nav.primary { padding: 2px 0 12px; }
.site-header.is-scrolled nav.primary a { padding: 4px 0; }
@media (max-width: 768px) {
  .site-header.is-scrolled .header-row { padding: 8px 24px 4px; }
  .site-header.is-scrolled .logo-center img { height: 34px; }
  .site-header.is-scrolled .logo-wordmark { font-size: 15px; }
}
.logo-wordmark {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: #111;
  line-height: 1;
  white-space: nowrap;
}
.header-actions {
  grid-column: 3;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.lang-toggle button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.2em;
  color: #6a6a6a;
  padding: 2px 2px;
  transition: color 0.2s;
}
.lang-toggle button.active { color: #000; }
.lang-toggle .sep { color: #d7d7d7; margin: 0 4px; }

nav.primary {
  text-align: center;
  padding: 6px 0 22px;
}
nav.primary a {
  font-size: var(--nav-size);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 18px;
  padding: 6px 0;
  position: relative;
  color: #000;
  transition: color 0.2s;
}
nav.primary a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.25s ease, left 0.25s ease;
}
nav.primary a:hover::after { width: 100%; left: 0; }
nav.primary a.current::after { width: 100%; left: 0; }

/* ---- Single-row header on wide screens ----
   Merges logo row + nav row into one line to reclaim vertical space. */
@media (min-width: 1025px) {
  .site-header {
    display: flex;
    align-items: center;
    padding: 0 40px;
  }
  .header-row {
    display: contents;
  }
  .nav-toggle { display: none; }
  .logo-center {
    order: 1;
    flex-shrink: 0;
  }
  .logo-center img { height: 44px; }
  .logo-wordmark { font-size: 18px; }
  nav.primary {
    order: 2;
    flex: 1;
    padding: 20px 0;
  }
  .header-actions {
    order: 3;
    flex-shrink: 0;
    text-align: right;
  }
  /* Scrolled state — tighter */
  .site-header.is-scrolled { padding: 0 40px; }
  .site-header.is-scrolled .logo-center img { height: 34px; }
  .site-header.is-scrolled .logo-wordmark { font-size: 16px; }
  .site-header.is-scrolled nav.primary { padding: 14px 0; }
}

/* ============ PAGE INTRO (gallery / portfolio pages) ============ */
.page-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--section-y) 24px 60px;
  text-align: center;
}
.page-intro h1 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.15;
  margin-bottom: 26px;
}
.page-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: #2a2a2a;
}

/* ============ FILTER BAR ============ */
.filter-group {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}
.filter-group:first-of-type { padding-top: 10px; }
.filter-group:last-of-type  { border-bottom: none; margin-bottom: 20px; }
.filter-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 72px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px 10px;
  padding: 12px 0;
}
.filter-btn {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #000;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.filter-btn:hover { border-color: #000; }
.filter-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.filter-btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
}
.filter-btn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ============ GALLERY (reuses .products grid) ============ */
.gallery {
  padding: 0 40px 110px;
  max-width: 1600px;
  margin: 0 auto;
}
.gallery-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* When a card is hidden by the filter */
.product.is-hidden { display: none; }

@media (max-width: 768px) {
  .page-intro { padding: var(--section-y) 24px 40px; }
  .filter-group { flex-direction: column; gap: 0; padding: 0 16px; }
  .filter-label { min-width: auto; padding-top: 10px; }
  .filter-bar { padding: 6px 0 12px; gap: 6px; }
  .filter-btn { padding: 9px 16px; font-size: 10.5px; letter-spacing: 0.2em; }
  .gallery { padding: 0 24px 70px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.hero-img {
  width: 100%;
  aspect-ratio: 2.23 / 1;
  object-fit: cover;
  display: block;
}
.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 60px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 55%);
}
.hero-caption-inner { max-width: 760px; }
.brand-wordmark {
  display: block;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.92;
  margin-bottom: 18px;
}
.hero-caption h1 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.15;
  letter-spacing: var(--heading-spacing);
}
.hero-caption p {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.92;
}

/* ============ RICH TEXT INTRO ============ */
.rich-text {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--section-y) 24px 90px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 26px;
}
.rich-text h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.25;
  margin-bottom: 28px;
}
.rich-text p {
  font-size: 15px;
  line-height: 1.95;
  color: #2a2a2a;
}

/* ============ IMAGE + TEXT BLOCK ============ */
.image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
}
.image-text .media { overflow: hidden; }
.image-text .media img,
.image-text .media video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.image-text .media:hover img,
.image-text .media:hover video { transform: scale(1.02); }
.image-text .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}
.image-text.reverse .media { order: 2; }
.image-text .copy h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.25;
  margin-bottom: 22px;
}
.image-text .copy p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #2a2a2a;
  margin-bottom: 26px;
  max-width: 520px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 34px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid #000;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn:hover { background: #fff; color: #000; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn.on-dark { background: #fff; color: #000; border-color: #fff; }
.btn.on-dark:hover { background: transparent; color: #fff; border-color: #fff; }
.btn.on-dark:focus-visible { outline-color: #fff; }

/* ============ SERVICES ============ */
.services-section {
  background: #faf9f7;
  padding: var(--section-y) 40px;
}
.services-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}
.services-intro h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.2;
  margin-bottom: 20px;
}
.services-intro p { font-size: 15px; line-height: 1.85; color: #444; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.service { text-align: left; }
.service-num {
  font-family: var(--heading-family);
  font-style: italic;
  font-size: 36px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.service h3 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: var(--heading-spacing);
  margin-bottom: 14px;
}
.service p { font-size: 13.5px; line-height: 1.9; color: #444; margin-bottom: 16px; }
.service-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: opacity 0.18s ease;
}
.service-link:hover { opacity: 0.7; }

/* ============ COLLECTION ============ */
.collection {
  padding: var(--section-y) 40px;
  max-width: 1600px;
  margin: 0 auto;
}
.collection-title { text-align: center; margin-bottom: 70px; }
.collection-title h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.2;
  margin-bottom: 20px;
}
.collection-title p { font-size: 14.5px; color: #444; max-width: 560px; margin: 0 auto; }

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}
.product {
  display: block;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: inherit;
  width: 100%;
}
.product-order {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 0;
  text-align: center;
  transition: background 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.product-order:hover {
  background: var(--accent);
  color: #fff;
}
.product-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f2efea;
}
.product-img img,
.product-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.product:hover .product-img img,
.product:hover .product-img video { transform: scale(1.04); }
.product h4 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: var(--heading-spacing);
  margin: 20px 0 6px;
}
.product .meta {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
}
.collection-cta {
  text-align: center;
  margin-top: 70px;
}

/* ============ STUDIO BAND (dark) ============ */
.studio-band {
  background: #0a0a0a;
  color: #fff;
  padding: var(--section-y) 40px;
}
.studio-band .band-title {
  text-align: center;
  margin-bottom: 70px;
}
.studio-band .band-title .eyebrow { color: var(--taupe); }
.studio-band .band-cta { margin: 60px auto 0; }
.studio-band .band-title h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.2;
  color: #fff;
}
.studio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto;
}
.studio-grid img,
.studio-grid video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.95);
  transition: filter 0.4s;
  display: block;
}
.studio-grid img:hover,
.studio-grid video:hover { filter: saturate(1.1); }
.studio-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
  .studio-grid-3 { grid-template-columns: 1fr; }
}

/* Step cards inside the dark band (delivery, gift-cards) */
.band-step { text-align: left; }
.band-step-num {
  display: block;
  font-family: var(--heading-family);
  font-style: italic;
  font-size: 36px;
  color: var(--taupe);
  margin-bottom: 10px;
}
.band-step h4 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: var(--heading-spacing);
  margin-bottom: 10px;
}
.band-step p {
  font-size: 13.5px;
  line-height: 1.85;
  color: #c7c7c7;
}

/* Optional text paragraph inside the dark band (e.g. events page) */
.studio-band .band-copy {
  max-width: 640px;
  margin: -30px auto 0;
  text-align: center;
}
.studio-band .band-copy p {
  font-size: 15px;
  line-height: 1.9;
  color: #d7d7d7;
}

/* ============ NEWSLETTER / CONTACT ============ */
.newsletter {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--section-y) 40px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.newsletter > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: -1;
}
.newsletter-inner { max-width: 620px; }
.newsletter .eyebrow { color: #fff; }
.newsletter h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.2;
  margin-bottom: 20px;
}
.newsletter p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 34px;
}
.newsletter .btn + .btn { margin-left: 12px; }
/* Address / phone / hours block inside the Contact section */
.newsletter .contact-info {
  margin: -14px 0 32px;
  font-size: 13.5px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.newsletter .contact-info p { margin: 0 0 4px; font-size: 13.5px; }
.newsletter .contact-info a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.newsletter .contact-info a:hover { border-color: #fff; }

/* ---- Contact page map ---- */
.contact-map { display: block; margin: 0 auto 24px; max-width: 480px; border-radius: 8px; overflow: hidden; }
.contact-map-img { display: block; width: 100%; height: auto; }

/* ============ LIGHTBOX (bouquets / events galleries) ============ */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(1100px, 94vw);
  max-height: 94vh;
  width: auto;
  height: auto;
  margin: auto;
  color: #fff;
}
.lightbox::backdrop { background: rgba(0, 0, 0, 0.88); }
.lightbox[open] {
  position: fixed;
  inset: 0;
  margin: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}
.lightbox-close {
  justify-self: end;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 42px; height: 42px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.lightbox-info {
  text-align: center;
  padding: 4px 8px 8px;
}
.lightbox-title {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 6px;
  color: #fff;
}
.lightbox-meta {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}
.lightbox-ig {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 22px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.lightbox-ig:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
@media (max-width: 600px) {
  .lightbox-img { max-height: 60vh; }
  .lightbox-title { font-size: 22px; }
}

/* ============ CONTACT FORM (contact.html) ============ */
.contact-form-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 40px var(--section-y);
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row.two-col > div { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--main-family);
  font-size: 15px;
  color: var(--text);
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.18s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.form-note { font-size: 12px; color: var(--muted); line-height: 1.6; }
@media (max-width: 600px) {
  .form-row.two-col { grid-template-columns: 1fr; }
  .form-submit { flex-direction: column; align-items: flex-start; }
}

/* ============ WEDDING FORM INTRO ============ */
.wedding-form-intro {
  text-align: center;
  margin-bottom: 32px;
}
.wedding-form-intro h2 {
  font-family: var(--heading-family);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.wedding-form-intro p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ============ FOOTER ============ */
footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 90px 40px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-brand img { height: 54px; width: auto; }
.footer-brand p {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.85;
  color: #c7c7c7;
  max-width: 280px;
}
footer h4 {
  font-family: var(--main-family);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 12px; font-size: 13px; color: #c7c7c7; }
footer a { color: #c7c7c7; transition: color 0.2s; }
footer a:hover { color: var(--taupe); }
.footer-bottom {
  max-width: 1400px;
  margin: 70px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============ LEGAL PAGES (privacy, terms) ============ */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px var(--section-y);
}
.legal-content h2 {
  font-family: var(--heading-family);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: var(--heading-spacing);
  margin: 2.5em 0 0.75em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 1em; color: var(--muted); line-height: 1.8; }
.legal-content ul { margin: 0 0 1em 1.25em; color: var(--muted); line-height: 1.8; }
.legal-content li { margin-bottom: 0.4em; }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* ============ FADE-IN ON SCROLL ============ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .products { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 40px; }
  .studio-grid { grid-template-columns: repeat(3, 1fr); }
  .image-text .copy { padding: 60px 40px; }
}
@media (max-width: 768px) {
  :root { --section-y: 70px; }
  .hero-img { aspect-ratio: 4 / 5; }
  .hero-caption { padding: 0 28px 40px; }
  .rich-text { padding: var(--section-y) 24px 60px; }
  .image-text { grid-template-columns: 1fr; }
  .image-text .media { order: 1 !important; }
  .image-text .copy { padding: 50px 28px; order: 2; }
  .image-text .media img,
  .image-text .media video { min-height: 400px; aspect-ratio: 4 / 5; height: auto; }
  .services-section { padding: var(--section-y) 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 50px; }
  .collection { padding: var(--section-y) 24px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .studio-band { padding: var(--section-y) 24px; }
  .studio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .newsletter { padding: 80px 24px; min-height: 480px; }
  footer { padding: 60px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  nav.primary a { margin: 0 10px; font-size: 11px; }
  .header-row { padding: 18px 24px 12px; }
  .logo-center { gap: 10px; }
  .logo-center img { height: 44px; }
  .logo-wordmark { font-size: 17px; }
  .hero-caption h1 { font-size: clamp(26px, 7vw, 42px); }
}
@media (max-width: 480px) {
  .products { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  /* On very small screens the logo image alone carries the brand —
     the wordmark would crowd the hamburger + language toggle. */
  .logo-wordmark { display: none; }
}

/* ============================================================
   ADDITIONS — added 2026-04-23 with the IA refresh.
   Rotating announcement, mobile nav, sticky WhatsApp,
   price tiers, case study, subscriptions ladder, etc.
   ============================================================ */

/* ---- Rotating announcement bar ----
   The bar contains multiple <span class="announcement-msg">; only
   the active one is visible. main.js cycles them every 5 seconds. */
.announcement {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.announcement-msg.is-active { opacity: 1; pointer-events: auto; }

/* ---- Mobile hamburger button ----
   Hidden on desktop; shown on mobile in place of the empty
   left-cell of the header grid. */
.nav-toggle {
  display: none;
  grid-column: 1;
  justify-self: start;
  align-self: center;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #000;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.site-header.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- Sticky WhatsApp FAB ----
   Bottom-right on every page. Standard SE-Asia commerce pattern. */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  background: #1ebe57;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.whatsapp-fab svg { display: block; }
.whatsapp-label { line-height: 1; }
@media (max-width: 600px) {
  .whatsapp-fab { padding: 12px; }
  .whatsapp-label { display: none; }
}

/* ---- Lightbox: 2-button action row (WhatsApp + IG) ---- */
.lightbox-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.lightbox-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  padding: 11px 22px;
  border: 1px solid #fff;
  transition: background 0.18s ease, color 0.18s ease;
}
.lightbox-cta:hover { background: transparent; color: #fff; }

/* ---- Hero secondary tagline ----
   Smaller eyebrow under the brand wordmark in the hero.
   Pairs with the existing brand-wordmark. */
.hero-tagline {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ---- Price-tier cards (Bouquets, Subscriptions) ----
   Three-up grid of plan/price cards. Middle one is "featured". */
.tiers-section {
  background: #faf9f7;
  padding: var(--section-y) 40px;
}
.tiers-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.tiers-intro h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.2;
  margin-bottom: 18px;
}
.tiers-intro p { font-size: 15px; line-height: 1.85; color: #444; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.tier {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.tier.featured {
  border-color: var(--accent);
  border-width: 2px;
  position: relative;
  transform: translateY(-12px);
  box-shadow: 0 8px 32px rgba(158, 38, 20, 0.10), 0 2px 8px rgba(0,0,0,0.04);
}
.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 7px 20px;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--heading-family);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: var(--heading-spacing);
  margin-bottom: 8px;
}
.tier-price {
  font-family: var(--heading-family);
  font-size: 32px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 6px;
  line-height: 1.1;
}
.tier-price small {
  font-style: normal;
  font-family: var(--main-family);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 6px;
}
.tier-tagline {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: 13.5px;
  line-height: 1.8;
  color: #2a2a2a;
}
.tier-features li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}
.tier .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr; max-width: 460px; }
  .tier.featured { transform: none; box-shadow: 0 4px 16px rgba(158,38,20,0.08); }
}

/* ---- Currency toggle ---- */
.currency-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
}
.currency-toggle button {
  background: none;
  border: 1px solid var(--line);
  font-family: var(--main-family);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
}
.currency-toggle button.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.currency-toggle button:hover:not(.active) {
  border-color: var(--text);
  color: var(--text);
}

/* ---- Comparison table ---- */
.compare-table-wrap {
  max-width: 720px;
  margin: 60px auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: center;
}
.compare-table th,
.compare-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: var(--heading-spacing);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
}
.compare-table thead th.featured-col {
  color: var(--accent);
}
.compare-table tbody td:first-child {
  text-align: left;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-table tbody td {
  color: var(--text);
}
.compare-table .check { color: var(--accent); font-weight: 500; }
.compare-table .dash  { color: var(--line); }
@media (max-width: 600px) {
  .compare-table { font-size: 12px; }
  .compare-table th,
  .compare-table td { padding: 8px 10px; }
}

/* ---- Wedding case study ----
   Magazine-style spread for a single featured wedding.
   .case-study-head     — eyebrow / h2 / .case-study-meta (centered intro)
   .case-study-body     — 2-col grid: long-form story | photo strip
     .case-study-text   — h3 sub-headings, paragraphs, blockquote
     .case-study-strip  — 2x2 grid of images aligned to the story */
.case-study {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--section-y) 40px;
}
.case-study-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.case-study-meta {
  display: block;
  margin: 18px auto 0;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-style: italic;
}
.case-study-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.case-study-text h3 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: var(--heading-spacing);
  margin: 28px 0 10px;
}
.case-study-text h3:first-child { margin-top: 0; }
.case-study-text p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 14px;
}
.case-study-text blockquote {
  font-family: var(--heading-family);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  font-style: italic;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 22px;
  margin: 32px 0 8px;
}
.case-study-text .signature {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.case-study-text .case-study-note {
  margin-top: 32px;
  padding: 18px 22px;
  background: #fbf8f4;
  border-left: 2px solid var(--accent);
  font-size: 14.5px;
  line-height: 1.7;
  color: #2a2a2a;
  font-style: italic;
}
.case-study-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.case-study-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
@media (max-width: 900px) {
  .case-study { padding: var(--section-y) 24px; }
  .case-study-body { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- "What's included" checklist (Weddings, Events) ---- */
.included-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-y) 40px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
  margin-top: 40px;
}
.included-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.included-item h3,
.included-item h4 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: var(--heading-spacing);
  margin-bottom: 8px;
}
.included-item p { font-size: 13.5px; line-height: 1.8; color: #444; }
.included-intro { text-align: center; max-width: 760px; margin: 0 auto; }
.included-intro h2 { font-family: var(--heading-family); font-weight: 400; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: var(--heading-spacing); }
@media (max-width: 700px) {
  .included-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- Studio page: founder note block ---- */
.founder-note {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-y) 24px;
  text-align: center;
}
.founder-note .signature {
  display: block;
  margin-top: 24px;
  font-family: var(--heading-family);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}
.founder-note .role {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-note blockquote {
  font-family: var(--heading-family);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  color: #2a2a2a;
  font-style: italic;
  margin: 0;
}

/* ---- Studio page: trust stats bar ----
   Four confirmable facts laid out as a band. Lightweight, no imagery —
   the goal is quick credibility scanning for agencies and direct buyers. */
.trust-stats {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px;
  border-top: 1px solid #eadfd5;
  border-bottom: 1px solid #eadfd5;
  background: #fbf8f4;
}
.trust-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.trust-stat { display: flex; flex-direction: column; gap: 6px; }
.trust-stat-value {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: var(--heading-spacing);
  color: var(--accent);
}
.trust-stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 700px) {
  .trust-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

/* ---- Form thank-you panel (Contact page) ----
   Hidden by default. Revealed when the URL hash is #thanks
   (Formspree's _next field redirects there after submit). */
.form-thanks { display: none; }
.form-thanks:target {
  display: block;
  max-width: 820px;
  margin: 40px auto 20px;
  padding: 60px 40px;
  background: #faf9f7;
  text-align: center;
  border-top: 3px solid var(--accent);
}
.form-thanks .form-thanks-inner { max-width: 600px; margin: 0 auto; }
.form-thanks h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: var(--heading-spacing);
  margin: 8px 0 16px;
}
.form-thanks h3 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 12px;
}
.form-thanks p { font-size: 14px; color: #444; line-height: 1.85; margin-bottom: 22px; }
.form-thanks .btn { margin: 6px 4px; }

/* Secondary intro paragraph used on weddings/events to point
   to a related page or surface a planning-window note. */
.page-intro-meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-style: italic;
  margin-top: 14px;
}
.page-intro-meta a { color: var(--accent); text-decoration: underline; }

/* Inline body-copy links — subtle underline so they feel editorial, not "button-y" */
.welcome-body a,
.page-intro > p:not(.page-intro-meta) a,
.included-item p a,
.included-intro p a,
.copy p a,
.hero-slide-inner p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Mobile nav drawer ----
   On phones the nav becomes a vertical drawer that slides
   below the logo row. Toggled by .nav-toggle in the header. */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .header-row { grid-template-columns: 1fr auto 1fr; }

  nav.primary {
    display: none;
    flex-direction: column;
    padding: 8px 0 24px;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .site-header.is-open nav.primary { display: flex; }
  nav.primary a {
    margin: 0;
    padding: 14px 0;
    font-size: 12px;
    text-align: center;
  }
  nav.primary a::after { display: none; }

  /* Push the WhatsApp FAB above the iOS Safari toolbar comfortably */
  .whatsapp-fab { right: 14px; bottom: 14px; }
}

/* ---- Tighter tier section on mobile ---- */
@media (max-width: 768px) {
  .tiers-section { padding: var(--section-y) 24px; }
  .included-section { padding: var(--section-y) 24px; }
  .case-study { padding: 60px 20px; }
}

/* ============================================================
   ADDITIONS — testimonials, newsletter signup form, lightbox
   email CTA. Appended at the end so they're easy to find.
   ============================================================ */

/* ---- Testimonials block (homepage + weddings) ---- */
.testimonials {
  background: #faf9f7;
  padding: var(--section-y) 40px;
}
.testimonials-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.testimonials-intro h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.2;
  margin-top: 14px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.testimonial {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial blockquote {
  font-family: var(--body-family, 'Inter', sans-serif);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.75;
  font-style: normal;
  color: #222;
  margin: 0;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial figcaption strong {
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.18em;
}

/* ---- Per-card 5-star row ----
   Rendered between blockquote and figcaption. Amber (#e4b24b) is
   the conventional Google-review star color — reads instantly as
   "5-star" without competing with the brick-red accent. */
.testimonial-stars {
  color: #e4b24b;
  font-size: 15px;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-top: -6px; /* tighten against the quote above */
}

/* ---- Rating eyebrow above the heading ----
   Sits where the plain "Kind Words" eyebrow used to and gives the
   section an at-a-glance credibility marker. */
.testimonials-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonials-rating .stars {
  color: #e4b24b;
  letter-spacing: 0.12em;
  font-size: 15px;
}
.testimonials-rating .score {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (max-width: 1000px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials { padding: var(--section-y) 24px; }
}

/* ---- Inline newsletter signup form (homepage #contact) ----
   Sits on the dark .newsletter section. Email input + button on
   one row at desktop, stacks on mobile. */
.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 24px auto 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 460px;
  width: 100%;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  outline: none;
  letter-spacing: 0.04em;
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.newsletter-form input[type="email"]:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.newsletter-form button {
  flex: 0 0 auto;
}
.newsletter-form-note {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px;
}
.newsletter-form-thanks {
  font-family: var(--heading-family);
  font-style: italic;
  font-size: 22px;
  margin: 28px 0 24px;
  color: #fff;
}
@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form button { width: 100%; }
}

/* ---- Newsletter/Contact section: primary CTA + channel links ----
   WhatsApp-first hierarchy. The primary CTA is visually weighted
   (wider padding, slightly larger), and secondary channels are
   text links separated by middots. */
.newsletter-primary-cta {
  margin: 8px auto 16px;
}
.newsletter .btn.btn-primary {
  padding: 16px 44px;
  font-size: 12px;
  letter-spacing: 0.3em;
}
.newsletter-channels {
  margin: 0 auto 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.newsletter-channels span[aria-hidden] {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-channels a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  margin: 0 4px;
  transition: border-color 0.2s;
}
.newsletter-channels a:hover { border-color: #fff; }
.newsletter-channels span:first-child {
  display: inline-block;
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.7);
}
/* Contact-info block now sits beneath channel links, muted a notch. */
.newsletter .contact-info {
  margin: 8px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

/* ---- Lightbox third CTA: email-us link ----
   Mirrors .lightbox-ig styling so the three actions read as a row. */
.lightbox-email {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 22px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.lightbox-email:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   LANDING PAGE — single static hero + welcome block.
   ============================================================ */

/* ---- Welcome block ----
   Two-column editorial layout after the hero:
     Left column  (.welcome-main)  — eyebrow, H1, intro paragraph.
     Right column (.welcome-aside) — visit panel with map, address, phone.
   Stacks to a single column under 860px. */
.welcome-block {
  max-width: 760px;
  margin: 0 auto;
  padding: 90px 40px 80px;
  text-align: center;
}
.welcome-block .eyebrow {
  color: var(--accent, #9e2614);
  margin-bottom: 18px;
}
.welcome-headline {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: var(--heading-spacing);
  color: #111;
  margin: 0 0 22px;
}
.welcome-headline em {
  font-style: italic;
  color: var(--accent, #9e2614);
}
.welcome-body {
  font-size: 16px;
  line-height: 1.8;
  color: #3b3b3b;
  margin: 0 auto;
  max-width: 58ch;
}

/* Right column — visit panel with map thumbnail. */
.welcome-aside {
  background: var(--cream, #faf8f5);
  border-radius: 8px;
  padding: 0 0 28px;
  overflow: hidden;
}
.welcome-aside .eyebrow {
  color: var(--taupe, #b79e8c);
  padding: 0 28px;
}
.welcome-aside-map {
  display: block;
  margin-bottom: 20px;
}
.welcome-map-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.welcome-aside-address,
.welcome-aside-hours,
.welcome-aside-phone {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #2a2a2a;
  padding: 0 28px;
}
.welcome-aside-hours { color: #666; }
.welcome-aside-phone { margin-bottom: 22px; }
.welcome-aside-phone a {
  color: #2a2a2a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.welcome-aside-phone a:hover { border-bottom-color: var(--accent, #9e2614); }
.welcome-aside-address a {
  color: #2a2a2a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.welcome-aside-address a:hover { border-bottom-color: var(--accent, #9e2614); }
.welcome-aside > .btn {
  margin: 0 28px;
}

/* ---- Hero ----
   Single full-bleed hero image with caption overlay. */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease, visibility 0s linear 0s;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.62), rgba(0,0,0,0.12) 55%, transparent 80%);
}
.hero-slide-inner { max-width: 760px; }
.hero-slide-inner .eyebrow-light {
  color: #fff;
  opacity: 0.92;
  margin-bottom: 16px;
}
.hero-slide-inner h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(32px, 4.8vw, 62px);
  line-height: 1.15;
  letter-spacing: var(--heading-spacing);
  color: #fff;
  margin: 0 0 18px;
}
.hero-slide-inner h2 em { font-style: italic; padding-right: 0.1em; }
.hero-caption h1 em { padding-right: 0.1em; }
.hero-slide-inner p {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
}

/* ---- Hero CTA group (inside caption) ---- */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-secondary-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.25s;
}
.hero-secondary-link:hover {
  color: #fff;
}

/* ---- Social proof strip ---- */
.social-proof-strip {
  text-align: center;
  padding: 40px 24px;
  border-bottom: 1px solid #eee;
}
.social-proof-inner {
  max-width: 640px;
  margin: 0 auto;
}
.social-proof-inner .stars {
  display: block;
  font-size: 18px;
  letter-spacing: 3px;
  color: #d4a853;
  margin-bottom: 12px;
}
.social-proof-inner blockquote {
  font-family: var(--heading-family);
  font-style: italic;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.6;
  color: #333;
  margin: 0 0 10px;
}
.social-proof-inner cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #888;
}
.social-proof-inner cite strong {
  color: #555;
}

/* ---- Full-bleed overlay (Weddings) ----
   Full-width image with text overlaid on a dark gradient.
   Breaks the 50/50 image+text rhythm. */
.fullbleed-overlay {
  position: relative;
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
}
.fullbleed-overlay > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 700px;
  object-fit: cover;
  display: block;
}
.fullbleed-overlay-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 60px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  color: #fff;
}
.fullbleed-overlay-copy h2 {
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: var(--heading-spacing);
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff;
}
.fullbleed-overlay-copy h2 em { color: var(--taupe); }
.fullbleed-overlay-copy p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
}

/* ---- Stats strip ----
   Compact numbers bar to break rhythm between sections. */
.stats-strip {
  padding: 56px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--heading-family);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Asymmetric image+text (60/40) ---- */
.image-text.wide-media {
  grid-template-columns: 3fr 2fr;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-slide-caption { padding: 0 40px 80px; }
  .welcome-block { padding: 90px 32px 80px; }
  .image-text.wide-media { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
}
@media (max-width: 768px) {
  .welcome-block { padding: var(--section-y) 24px 60px; }
  .welcome-body { font-size: 15.5px; }
  .hero-slides { aspect-ratio: 4 / 5; }
  .hero-slide-caption { padding: 0 24px 70px; }
  .hero-slide-inner h2 { font-size: clamp(26px, 7vw, 42px); }
  .hero-slide-inner p { font-size: 12.5px; }
  .hero-cta-group { gap: 14px; }
  .hero-cta-group .btn { font-size: 11px; padding: 12px 20px; }
  .hero-secondary-link { font-size: 11px; }
  .fullbleed-overlay-copy { padding: 50px 28px; }
  .fullbleed-overlay-copy h2 { font-size: clamp(24px, 6vw, 34px); }
  .fullbleed-overlay > img { min-height: 450px; }
  .stats-strip { padding: 40px 24px; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .image-text.wide-media { grid-template-columns: 1fr; }
}

/* ---- Cookie consent banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 24px;
  background: var(--footer-bg);
  color: #fff;
  font-size: 13px;
  letter-spacing: var(--main-spacing);
}
.cookie-banner p { margin: 0; max-width: 640px; }
.cookie-banner p a { color: #fff; text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept,
.cookie-decline {
  flex-shrink: 0;
  padding: 8px 20px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.cookie-accept:hover,
.cookie-decline:hover {
  background: #fff;
  color: #000;
}
.cookie-decline {
  opacity: 0.7;
}
.cookie-decline:hover {
  opacity: 1;
}
.footer-cookie-link { cursor: pointer; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; gap: 10px; }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* ============ PRINT ============ */

/* ============ CSP-SAFE UTILITY CLASSES ============ */
.noscript-msg { text-align: center; padding: 2em; font-family: sans-serif; }
.honeypot { display: none; }
.page-intro-404 { padding-top: 140px; padding-bottom: 140px; }
.mt-36 { margin-top: 36px; }
.mt-24 { margin-top: 24px; }

/* Noscript fallback navigation */
.noscript-nav { background: #fff; padding: 1em 2em; font-family: sans-serif; text-align: center; border-bottom: 1px solid #eee; }
.noscript-nav-brand { font-weight: bold; font-size: 1.2em; color: #9e2614; text-decoration: none; }
.noscript-nav-links { margin-top: .5em; }
.noscript-nav-links a { margin: 0 .5em; color: #333; }

@media print {
  .announcement, .site-header, .whatsapp-fab, .cookie-banner,
  .nav-toggle, .skip-link, .newsletter-form, br-whatsapp, br-cookie,
  .newsletter-primary-cta, .newsletter-channels { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero-carousel { break-inside: avoid; }
  .image-text { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
  footer { background: #fff; color: #000; }
  footer a { color: #000; }
}

