/* =============================================================
   Saltwater Creek Studio — Main stylesheet
   Palette anchored on logo: #00114F (navy)
   ============================================================= */

/* Self-hosted fonts — eliminates Google Fonts external requests */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-normal-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  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;
}

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-italic-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
  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;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  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;
}

@font-face {
  font-family: 'Caveat';
  src: url('../fonts/caveat-latin.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
  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;
}

:root {
  /* Brand palette */
  --color-teal: #0a2a6e;
  --color-teal-deep: #00114F;
  --color-teal-soft: #6b80b3;
  --color-sand: #e8dcc8;
  --color-champagne: #d4b897;
  --color-champagne-deep: #b99870;
  --color-ivory: #faf6f0;
  --color-white: #ffffff;
  --color-charcoal: #2a2a2a;
  --color-grey: #6b6b6b;
  --color-grey-soft: #d8d3cc;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 9rem;

  /* Layout */
  --container: 1200px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-soft: 0 6px 24px rgba(0, 17, 79, 0.08);
  --shadow-hover: 0 12px 36px rgba(0, 17, 79, 0.14);
  --header-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================================
   Reset & base
   ============================================================= */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-charcoal);
  background: var(--color-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--color-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-teal-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-teal-deep);
  margin: 0 0 var(--space-sm);
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 var(--space-sm); }

.script { font-family: var(--font-script); font-weight: 500; }

.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--color-teal);
  color: var(--color-ivory);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* =============================================================
   Layout
   ============================================================= */

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--space-md); }

section { padding: var(--space-xl) 0; }

.section-heading { text-align: center; margin-bottom: var(--space-lg); }
.section-heading .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}
.section-heading h2 { margin-bottom: var(--space-sm); }
.section-heading p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-grey);
  font-size: 1.1rem;
}

/* =============================================================
   Buttons
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--color-teal); color: var(--color-ivory); border-color: var(--color-teal); }
.btn-primary:hover {
  background: var(--color-teal-deep);
  border-color: var(--color-teal-deep);
  color: var(--color-ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 17, 79, 0.3);
}
.btn-accent { background: var(--color-champagne); color: var(--color-teal-deep); border-color: var(--color-champagne); }
.btn-accent:hover {
  background: var(--color-champagne-deep);
  border-color: var(--color-champagne-deep);
  color: var(--color-ivory);
  transform: translateY(-2px);
}
.btn-ghost { background: transparent; color: var(--color-ivory); border-color: var(--color-ivory); }
.btn-ghost:hover { background: var(--color-ivory); color: var(--color-teal-deep); }
.btn-outline { background: transparent; color: var(--color-teal); border-color: var(--color-teal); }
.btn-outline:hover { background: var(--color-teal); color: var(--color-ivory); }

/* =============================================================
   Header
   ============================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.site-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: calc(var(--header-height) - 12px);
  flex-shrink: 0;
}
.logo-link img {
  height: calc(var(--header-height) - 12px);
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
/* Default (top of page — transparent header over video): show light/white logo */
.logo-link .logo-light { display: block; }
.logo-link .logo-dark  { display: none; }
/* Scrolled (cream bg): show dark/navy logo */
.site-header.scrolled .logo-light { display: none; }
.site-header.scrolled .logo-dark  { display: block; }

.main-nav { display: flex; align-items: center; gap: var(--space-md); }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ivory);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
}
.site-header.scrolled .main-nav a { color: var(--color-teal-deep); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: currentColor;
  transition: width var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--color-champagne);
  color: var(--color-teal-deep) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--color-champagne-deep); color: var(--color-ivory) !important; }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-ivory);
  cursor: pointer;
  padding: 0.5rem;
}
.site-header.scrolled .menu-toggle { color: var(--color-teal-deep); }
.menu-toggle svg { width: 28px; height: 28px; }

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-height); left: 0; right: 0;
    background: var(--color-ivory);
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-soft);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { color: var(--color-teal-deep); width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--color-grey-soft); }
  .menu-toggle { display: block; }
}

/* =============================================================
   Hero
   ============================================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-ivory);
  padding: 0;
}
.hero-video, .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Soft glow halo behind all hero text — not clipped to any content box */
.hero::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 175%;
  height: 120%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(0, 17, 79, 0.65) 0%,
    rgba(0, 17, 79, 0.45) 20%,
    rgba(0, 17, 79, 0.18) 42%,
    rgba(0, 17, 79, 0.04) 60%,
    rgba(0, 17, 79, 0.01) 70%,
    transparent 78%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
    rgba(0, 17, 79, 0.10) 0%,
    rgba(0, 17, 79, 0.20) 50%,
    rgba(0, 17, 79, 0.38) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 0 var(--space-md);
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* Wordmark + h1 locked together, centred as a unit */
.hero-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
}
.hero-wordmark {
  display: block;
  width: clamp(240px, 45vw, 520px);
  height: auto;
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.55));
}

.hero .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-champagne);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}
.hero h1 {
  color: var(--color-ivory);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 17, 79, 0.6), 0 8px 30px rgba(0, 17, 79, 0.45);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f5d9b5;
  text-shadow: 0 2px 6px rgba(0, 17, 79, 0.7), 0 8px 30px rgba(0, 17, 79, 0.5);
}
.hero-text-backdrop {
  max-width: 620px;
  margin: 0 auto var(--space-md);
}
.hero .hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin: 0;
  color: var(--color-ivory);
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 40px rgba(0,0,0,0.4);
}
.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.hero-scroll {
  position: absolute;
  bottom: 0.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-ivory);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  animation: bob 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: currentColor;
  margin: 0.75rem auto 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content, .hero-scroll { animation: none; }
  .hero-video { display: none; }
  .hero-poster { display: block; }
}

/* =============================================================
   Trust strip
   ============================================================= */

.trust-strip {
  background: var(--color-teal-deep);
  color: var(--color-ivory);
  padding: var(--space-md) 0;
}
.trust-strip .container-wide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.trust-item svg { width: 32px; height: 32px; color: var(--color-champagne); }
.trust-item span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-ivory);
}
@media (max-width: 768px) {
  .trust-strip .container-wide { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}

/* =============================================================
   Category grid
   ============================================================= */

.categories { background: var(--color-ivory); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-sand);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--color-ivory);
  display: flex;
  align-items: flex-end;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  color: var(--color-ivory);
}
.category-card-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-card:hover .category-card-image { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0, 17, 79, 0.8) 100%);
}
.category-card-content {
  position: relative;
  padding: var(--space-md);
  z-index: 2;
  width: 100%;
}
.category-card h3 {
  color: var(--color-ivory);
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
  font-size: 1.6rem;
}
.category-card p {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(250, 246, 240, 0.88);
}
.category-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-champagne);
}
.category-card-cta::after { content: '→'; transition: transform var(--transition); }
.category-card:hover .category-card-cta::after { transform: translateX(4px); }
.category-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(250, 246, 240, 0.03);
  letter-spacing: 0.3em;
  text-shadow: 0 2px 8px rgba(0, 17, 79, 0.08), 0 0 40px rgba(0, 17, 79, 0.06);
}
.category-card[data-category="stubby-coolers"] {
  background: linear-gradient(135deg, #6b80b3 0%, #00114F 100%);
}
.category-card[data-category="wedding-favours"] {
  background: linear-gradient(135deg, #6b80b3 0%, #00114F 100%);
}
.category-card[data-category="laser-gifts"] {
  background: linear-gradient(135deg, #6b80b3 0%, #0a2a6e 100%);
}
.coming-soon-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: var(--color-champagne);
  color: var(--color-teal-deep);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 17, 79, 0.25);
}
.category-card[data-category="wedding-favours"] .category-card-content,
.category-card[data-category="laser-gifts"] .category-card-content { opacity: 0.95; }

@media (max-width: 860px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card { aspect-ratio: 16 / 10; }
}

/* =============================================================
   Feature strip
   ============================================================= */

.feature-strip { background: var(--color-sand); }
.feature-strip .feature-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-image-placeholder {
  color: rgba(250, 246, 240, 0.25);
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.3em;
  text-align: center;
}
.feature-content .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.feature-content h2 { margin-bottom: var(--space-sm); }
.feature-content p { color: var(--color-charcoal); font-size: 1.05rem; }
.feature-list { list-style: none; padding: 0; margin: var(--space-md) 0; }
.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 18px; height: 2px;
  background: var(--color-champagne-deep);
}
@media (max-width: 860px) {
  .feature-strip .feature-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* =============================================================
   Product teaser grid
   ============================================================= */

.products { background: var(--color-ivory); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-charcoal);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  color: var(--color-charcoal);
}
.product-card-media {
  aspect-ratio: 1;
  background: var(--color-sand);
  position: relative;
  overflow: hidden;
}
.product-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  opacity: 0.3;
}
.product-card-placeholder svg { width: 48px; height: 48px; }
.product-card-body { padding: var(--space-sm) var(--space-sm) var(--space-md); }
.product-card-body h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  color: var(--color-teal-deep);
}
.product-card-body p { font-size: 0.85rem; color: var(--color-grey); margin: 0 0 0.5rem; }
.product-card-body .price {
  display: block;
  font-weight: 500;
  color: var(--color-teal);
  font-size: 0.95rem;
}
.product-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--color-champagne);
  color: var(--color-teal-deep);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Testimonial
   ============================================================= */

.testimonial { background: var(--color-teal); color: var(--color-ivory); text-align: center; }
.testimonial h2 { color: var(--color-ivory); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto var(--space-md);
  color: var(--color-ivory);
}
.testimonial-quote::before { content: '“'; display: block; font-size: 3rem; color: var(--color-champagne); margin-bottom: -1rem; line-height: 1; }
.testimonial-attribution {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-champagne);
  font-style: normal;
}

/* =============================================================
   Big CTA
   ============================================================= */

.big-cta {
  background: var(--color-teal-deep);
  color: var(--color-ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 184, 151, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(107, 128, 179, 0.12) 0%, transparent 40%);
}
.big-cta > .container { position: relative; z-index: 2; max-width: 820px; }
.big-cta h2 { color: var(--color-ivory); }
.big-cta p {
  font-size: 1.15rem;
  color: rgba(250, 246, 240, 0.88);
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

/* =============================================================
   Footer
   ============================================================= */

.site-footer {
  background: var(--color-teal-deep);
  color: rgba(250, 246, 240, 0.8);
  padding: var(--space-xl) 0 var(--space-md);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer-brand img {
  width: auto;
  height: 280px;
  max-width: 100%;
  display: block;
  margin-bottom: var(--space-sm);
}
.footer-brand p {
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.footer-social { display: flex; gap: 0.75rem; margin-top: var(--space-sm); }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ivory);
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--color-champagne); color: var(--color-teal-deep); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-champagne);
  margin: 0 0 var(--space-sm);
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(250, 246, 240, 0.8); font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-ivory); }

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.65);
}
.footer-bottom a { color: rgba(250, 246, 240, 0.7); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   Atomic / utility classes
   ============================================================= */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-grey);
  max-width: 64ch;
  margin: 0 0 var(--space-md);
}
.accent-line {
  display: block;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-champagne-deep);
  line-height: 1.1;
  margin: 0 0 var(--space-sm);
}
.required {
  color: var(--color-champagne-deep);
  font-weight: 600;
  margin-left: 0.15em;
}
.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-teal);
  background: var(--color-sand);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.date {
  display: block;
  font-size: 0.85rem;
  color: var(--color-grey);
  font-style: italic;
  margin-top: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-grey);
}
.breadcrumb ol {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  letter-spacing: 0.04em;
}
.breadcrumb li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb li + li::before { content: '›'; color: var(--color-grey); opacity: 0.6; }
.breadcrumb a { color: var(--color-grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-teal); }
.breadcrumb li:last-child a {
  color: var(--color-teal-deep);
  font-weight: 500;
  pointer-events: none;
}
.breadcrumb [aria-current="page"] { color: var(--color-charcoal); font-weight: 500; }

/* =============================================================
   Page header
   ============================================================= */

/* Wordmark row — full width, identical centering to home hero on every page */
.wordmark-row {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-sm)) var(--space-md) 0;
  margin-bottom: var(--space-md);
}
.page-wordmark {
  display: block;
  width: clamp(240px, 45vw, 520px);
  height: auto;
  flex-shrink: 0;
}

.page-header {
  background: var(--color-ivory);
  padding-top: 0;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-grey-soft);
  text-align: left;
}
.page-header .container { max-width: 880px; }
.page-header-content { max-width: 780px; }
.page-header-content--centred {
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.page-header .page-header-content--centred h1 {
  text-align: center;
}
.page-header .page-header-content--centred .lede {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.page-header-content--centred .page-header-ctas { justify-content: center; }
.page-header .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 var(--space-sm);
  line-height: 1.1;
}
.page-header .lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-grey);
  max-width: 680px;
  margin: 0 0 var(--space-md);
}
.page-header-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

/* =============================================================
   Coming-soon hero
   ============================================================= */

.coming-soon-hero {
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 184, 151, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 75% 80%, rgba(107, 128, 179, 0.10) 0%, transparent 50%),
    var(--color-ivory);
  padding-top: 0;
  padding-bottom: var(--space-xl);
  text-align: center;
  border-bottom: 1px solid var(--color-grey-soft);
}
.coming-soon-hero .container { max-width: 780px; }
.coming-soon-hero .eyebrow {
  display: inline-block;
  background: var(--color-champagne);
  color: var(--color-teal-deep);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.coming-soon-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 var(--space-sm);
}
.coming-soon-hero .lede {
  font-size: 1.15rem;
  color: var(--color-grey);
  max-width: 620px;
  margin: 0 auto var(--space-md);
  line-height: 1.65;
}
.coming-soon-hero .accent-line {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-champagne-deep);
  display: block;
  margin: var(--space-sm) 0;
}
.coming-soon-hero .hero-ctas { margin-top: var(--space-md); justify-content: center; }

/* =============================================================
   Value row (about / custom-orders / category pages)
   ============================================================= */

.value-row {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}
.value-row .section-heading { margin-bottom: var(--space-lg); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.value-card {
  background: var(--color-ivory);
  border: 1px solid var(--color-grey-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-champagne);
}
.value-icon,
.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-teal);
  color: var(--color-champagne);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}
.value-icon svg,
.value-card-icon svg { width: 26px; height: 26px; display: block; }
.value-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  color: var(--color-teal-deep);
}
.value-card p {
  font-size: 0.92rem;
  color: var(--color-grey);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 1024px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .value-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Process (numbered steps)
   ============================================================= */

.process {
  padding: var(--space-xl) 0;
  background: var(--color-sand);
}
.process-grid,
.process-steps {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  counter-reset: process step;
}
.process-step,
.process-steps li {
  position: relative;
  padding: var(--space-md);
  background: var(--color-ivory);
  border: 1px solid var(--color-grey-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  counter-increment: process;
}
.process-step::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: -18px;
  left: var(--space-md);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-champagne-deep);
  background: var(--color-ivory);
  padding: 0 0.5rem;
  line-height: 1;
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-champagne-deep);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.process-step h3,
.process-steps h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  color: var(--color-teal-deep);
}
.process-step p,
.process-steps p {
  font-size: 0.92rem;
  color: var(--color-grey);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .process-grid, .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-grid, .process-steps { grid-template-columns: 1fr; }
}

/* =============================================================
   Preview tiles (coming-soon page)
   ============================================================= */

.preview-tiles {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.preview-tile {
  background: var(--color-ivory);
  border: 1px solid var(--color-grey-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.preview-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.preview-tile-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-teal);
  color: var(--color-champagne);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  flex-shrink: 0;
}
.preview-tile-icon svg { width: 30px; height: 30px; display: block; }
.preview-tile h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }
.preview-tile p { margin: 0; color: var(--color-grey); font-size: 0.95rem; line-height: 1.55; }

@media (max-width: 980px) { .preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .preview-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Cross-sell
   ============================================================= */

.cross-sell {
  padding: var(--space-xl) 0;
  background: var(--color-sand);
  text-align: center;
}
.cross-sell .container { max-width: 760px; }
.cross-sell .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.cross-sell h2 { margin-bottom: var(--space-sm); }
.cross-sell p {
  font-size: 1.05rem;
  color: var(--color-charcoal);
  max-width: 56ch;
  margin: 0 auto var(--space-md);
}

/* =============================================================
   FAQ
   ============================================================= */

.faq-section {
  padding: var(--space-xl) 0;
  background: var(--color-ivory);
}
.faq-section .container { max-width: 880px; }

.faq-toc {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.5rem;
  margin: var(--space-md) 0 var(--space-lg);
  justify-content: center;
}
.faq-toc a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: var(--color-ivory);
  border: 1px solid var(--color-grey-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--color-teal-deep);
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.faq-toc a:hover {
  background: var(--color-champagne);
  border-color: var(--color-champagne);
  color: var(--color-teal-deep);
}

.faq-group {
  max-width: 820px;
  margin: 0 auto var(--space-lg);
  scroll-margin-top: calc(var(--header-height) + var(--space-md));
}
.faq-group-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-teal-deep);
  border-bottom: 2px solid var(--color-champagne);
  padding-bottom: 0.5rem;
  margin: 0 0 var(--space-md);
}

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-grey-soft);
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: var(--color-champagne);
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-teal-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-teal);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--color-teal); }
.faq-body,
.faq-item > p { padding: 0 2rem 1.4rem; color: var(--color-charcoal); }
.faq-body p,
.faq-item > p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-charcoal);
}

/* =============================================================
   Prose / legal pages
   ============================================================= */

.prose-row { padding: var(--space-xl) 0; }
.prose-row .container {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-charcoal);
}
.prose-row p { margin-bottom: var(--space-sm); }

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-lg) 0 var(--space-xl);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-charcoal);
}
.legal-body .container { max-width: 820px; }
.legal-body h2 {
  font-size: 1.5rem;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-teal-deep);
}
.legal-body h2:first-of-type { margin-top: var(--space-md); }
.legal-body h3 {
  font-size: 1.15rem;
  margin: var(--space-md) 0 0.5rem;
  color: var(--color-teal);
}
.legal-body p, .legal-body li { color: var(--color-charcoal); line-height: 1.7; }
.legal-body ul, .legal-body ol { padding-left: 1.4rem; margin: 0 0 var(--space-sm); }
.legal-body li { margin-bottom: 0.3rem; }
.legal-body .updated {
  font-size: 0.9rem;
  color: var(--color-grey);
  margin-bottom: var(--space-md);
  font-style: italic;
}

/* =============================================================
   Contact page
   ============================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-grey-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
}
.contact-form h2 { font-size: 1.4rem; margin: 0 0 var(--space-sm); }

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-sm);
  gap: 0.35rem;
}
.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-teal-deep);
}
.form-field .required {
  color: var(--color-champagne-deep);
  margin-left: 0.15rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-grey-soft);
  border-radius: 10px;
  background: var(--color-ivory);
  color: var(--color-charcoal);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(10, 42, 110, 0.15);
}
.form-field textarea { resize: vertical; min-height: 140px; }

.form-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--color-grey);
  font-style: italic;
  margin-top: 0.3rem;
}

.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.form-row-inline .form-field { margin-bottom: 0; }

@media (max-width: 560px) {
  .form-row-inline { grid-template-columns: 1fr; }
}

.form-actions {
  margin-top: var(--space-sm);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}
.form-status { font-size: 0.9rem; color: var(--color-grey); }
.form-status.success { color: var(--color-teal); font-weight: 600; }
.form-status.error { color: #b9431a; font-weight: 600; }

/* Honeypot — visually hidden, accessible to bots only.
   High specificity + !important so accidental overrides
   can never reveal it. */
.honeypot,
.contact-form .honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-info {
  background: var(--color-sand);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.contact-info h2 { margin: 0 0 var(--space-sm); font-size: 1.3rem; }
.contact-info ul { list-style: none; padding: 0; margin: 0 0 var(--space-sm); }
.contact-info li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-grey-soft);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-info li:last-child { border-bottom: none; }
.contact-info li strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.contact-info a {
  color: var(--color-teal-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.contact-info a:hover { color: var(--color-teal); }

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.4rem;
}
.contact-social a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10, 42, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-deep);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.contact-social a:hover {
  background: var(--color-champagne);
  color: var(--color-teal-deep);
}
.contact-social svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: block;
  max-width: 26px;
  max-height: 26px;
}

/* =============================================================
   Journal grid (index)
   ============================================================= */

.journal-preview { background: var(--color-ivory); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 960px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .journal-grid { grid-template-columns: 1fr; } }

.journal-card {
  background: var(--color-white);
  border: 1px solid var(--color-grey-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-charcoal);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.journal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: var(--color-charcoal);
}
.journal-card-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--color-sand), var(--color-champagne));
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}
.journal-card .tag {
  margin-bottom: var(--space-xs);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-champagne-deep);
  font-weight: 600;
}
.journal-card .meta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.journal-card h3,
.journal-card h4 {
  font-size: 1.2rem;
  color: var(--color-teal-deep);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.journal-card p {
  font-size: 0.95rem;
  color: var(--color-grey);
  margin: 0;
  line-height: 1.55;
}
.journal-card .date {
  font-size: 0.8rem;
  color: var(--color-grey);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* =============================================================
   404 page
   ============================================================= */

.error-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-lg)) 0 var(--space-xl);
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-ivory) 100%);
}
.error-hero .container { max-width: 720px; }
.error-hero .error-code {
  font-family: var(--font-script);
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 1;
  color: var(--color-teal);
  opacity: 0.85;
  margin-bottom: var(--space-xs);
}
.error-hero h1 { margin: 0 0 var(--space-sm); }
.error-hero .lede { max-width: 56ch; margin: 0 auto var(--space-md); }
.error-hero .accent-line { margin-bottom: var(--space-sm); }
.error-hero .hero-ctas { justify-content: center; flex-wrap: wrap; }

.error-suggest {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}
.error-suggest .section-heading { text-align: center; }
.suggest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.suggest-card {
  border: 1px solid var(--color-grey-soft);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.suggest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-champagne);
}
.suggest-card h3 { margin: 0; font-size: 1.15rem; }
.suggest-card p { margin: 0; color: var(--color-grey); font-size: 0.95rem; }

@media (max-width: 980px) { .suggest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .suggest-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Defensive SVG cap — ensures inline icons never blow out
   to the default 300×150 replaced-element size
   ============================================================= */

.value-row svg,
.preview-tiles svg,
.process svg,
.value-icon svg,
.value-card-icon svg,
.preview-tile-icon svg,
.suggest-card svg,
.faq-section svg {
  max-width: 100%;
  max-height: 100%;
}

/* =============================================================
   Narrow-viewport adjustments
   ============================================================= */

@media (max-width: 640px) {
  .page-header,
  .coming-soon-hero {
    padding-top: 0;
  }
}

/* =============================================================
   PATCH 2026-04-25 — Rev 1 fixes
   1. Header scroll colour (nav letters readable on white)
   2. Icon placeholder sizing (no more 300x150 SVG blocks)
   3. Honeypot + form-status hidden until needed
   ============================================================= */

/* --- 1. Header scroll state --- */
.site-header.scrolled .main-nav a,
.site-header.scrolled .menu-toggle {
  color: var(--color-teal-deep);
}

/* --- 2. Icon placeholders (stop SVGs rendering at default 300x150) --- */
.value-icon,
.value-card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EEF0F8;
  color: #0a2a6e;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.value-icon svg,
.value-card-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.preview-tile-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EEF0F8;
  color: #0a2a6e;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.preview-tile-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

/* Defensive cap — any inline SVG inside these section containers
   can never overflow its parent regardless of HTML structure. */
.value-row svg,
.preview-tiles svg,
.process svg,
.value-icon svg,
.value-card-icon svg,
.preview-tile-icon svg,
.suggest-card svg,
.faq-section svg {
  max-width: 100%;
  max-height: 100%;
}

/* --- 3. Honeypot field (must be invisible to humans, visible to bots) --- */
.honeypot,
.contact-form .honeypot,
form .honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Form status — empty by default, only styled when JS adds .success or .error */
.form-status {
  font-size: 0.9rem;
  color: #5a5a5a;
  min-height: 1.2em;
}
.form-status:empty { display: none; }
.form-status.success { color: #0a2a6e; font-weight: 600; }
.form-status.error { color: #b9431a; font-weight: 600; }
