/* ==========================================================================
   SeenStory Studios — shared stylesheet
   Plain CSS, no build step, mobile-first.
   Design-token architecture with entirely original values for this brand:
   a dark cinematic theme (near-black + warm gold/bronze, ivory text).
   ========================================================================== */

:root {
  /* Brand palette: near-black charcoal + warm gold/bronze, ivory text.
     Deliberately dark and understated rather than bright/saturated — this
     is a premium creative service, not a flashy AI-tool sales page.
     --color-accent sits at ~4.7:1 contrast against --color-bg for text use;
     --color-accent-light is for hover states and small highlights only,
     never for body text on dark backgrounds (fails contrast at that size). */
  --color-bg: #0b0a09;
  --color-bg-alt: #14120f;
  --color-surface: #1c1815;
  --color-surface-alt: #221c17;
  --color-primary-dark: #050403; /* deepest ink, used for text-on-gold */
  --color-accent: #c9a24c;
  --color-accent-dark: #a3813a;
  --color-accent-light: #e6c877;
  --color-accent-rgb: 201, 162, 76; /* rgba() glow behind CTA buttons */
  --color-text: #f4efe6;
  --color-text-muted: #b6ab99;
  --color-border: #332c22;
  --color-white: #ffffff;

  /* Component tokens — sharper, more editorial than a rounded consumer-app
     feel: cinematic/premium reads better with modest radii, not pill-everywhere. */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 14px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 32px 72px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(var(--color-accent-rgb), 0.28), 0 10px 30px rgba(var(--color-accent-rgb), 0.16);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --max-width: 1240px;
  --content-width: 1240px;

  /* Two-font system: Playfair Display (cinematic, editorial serif) for
     headings, Manrope (clean geometric sans) for body/UI. */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  /* Site-wide default: centred titles, headings and body copy on both
     desktop and mobile, so individual pages don't need .text-center/.center
     wrapper classes to get a centred layout — it's the baseline, not an
     opt-in. Forms and bulleted checklists are the deliberate exceptions
     (see the overrides near the end of this file) because centred form
     labels/inputs and centred bullet markers hurt usability and readability. */
  text-align: center;
}

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

a { color: var(--color-accent-light); text-decoration-color: rgba(var(--color-accent-rgb), 0.5); }
a:hover { color: var(--color-accent); }

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

::selection { background: rgba(var(--color-accent-rgb), 0.35); color: var(--color-white); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  /* auto left/right margins centre the box itself within its parent —
     text-align:center on its own only centres text *inside* an
     already-capped max-width box, it doesn't move the box. Both are
     needed together for headings to read as properly centred rather
     than centred-text-in-a-left-stuck-box. */
  margin: 0 auto 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-white);
  max-width: 24ch;
}
h1 { font-size: clamp(2.25rem, 1.6rem + 2.6vw, 4rem); }
.hero h1, .page-hero h1 { font-size: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); max-width: 18ch; }
h2 { font-size: clamp(1.7rem, 1.4rem + 1.3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); }
p { margin: 0 0 1em; }
.lede {
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-xs);
}

.container { max-width: var(--content-width); margin: 0 auto; padding: 0 var(--space-md); }
.text-center { text-align: center; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

section { padding: var(--space-2xl) 0; }
.section-alt { background: var(--color-bg-alt); }

.section-head { max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: var(--space-lg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--color-accent-light), var(--color-accent));
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(var(--color-accent-rgb), 0.28); color: var(--color-primary-dark); }
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(244, 239, 230, 0.35);
}
.btn-secondary:hover { border-color: var(--color-accent); color: var(--color-accent-light); }
.btn-text { color: var(--color-accent-light); font-weight: 600; text-decoration: none; }
.btn-text:hover { color: var(--color-accent); }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); margin-top: var(--space-md); }

/* ---------- Top bar / header / nav ---------- */
.topbar {
  background: var(--color-primary-dark);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm); padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.topbar a { color: var(--color-accent-light); }

.site-header {
  background: rgba(11, 10, 9, 0.92);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--color-border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--color-accent-light); }
.brand-mark { height: 34px; width: 34px; display: block; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.95rem;
  cursor: pointer;
}
.nav-menu { display: flex; align-items: center; gap: var(--space-md); }
.nav-menu a:not(.btn) {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-menu a:not(.btn):hover { color: var(--color-accent-light); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-sm) var(--space-md) var(--space-md);
    gap: var(--space-sm);
  }
  .nav-menu.is-open { display: flex; }
  .site-header { position: sticky; }
  .site-header .container { position: relative; }
}

/* ---------- Hero ---------- */
.hero { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); background: radial-gradient(120% 100% at 50% 0%, rgba(var(--color-accent-rgb), 0.08), transparent 60%), var(--color-bg); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero-media img, .hero-media video { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); }

.page-hero { padding-top: var(--space-xl); padding-bottom: var(--space-xl); background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); }
.breadcrumb { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-accent-light); }

.trust-strip { padding: var(--space-md) 0; background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); }
.trust-strip-row { display: flex; flex-wrap: wrap; gap: var(--space-lg); justify-content: center; color: var(--color-text-muted); font-size: 0.92rem; }
.trust-strip-row span { display: flex; align-items: center; gap: 8px; }
.trust-strip-row svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: rgba(var(--color-accent-rgb), 0.45); transform: translateY(-2px); }
.card h3 { margin-bottom: 0.35em; }
.card p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.card-featured { border-color: var(--color-accent); box-shadow: var(--shadow-glow); }
.card-link { color: var(--color-accent-light); font-weight: 600; text-decoration: none; font-size: 0.92rem; }
.card-link:hover { color: var(--color-accent); }

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(var(--color-accent-rgb), 0.14);
  color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  /* margin: auto left/right centres this fixed-width box itself within
     a centred card — text-align:center has no effect on a flex/block
     element's own position, only on inline content inside it. */
  margin: 0 auto var(--space-sm);
}
.icon-tile svg { width: 22px; height: 22px; }

.callout {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.callout-filled {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

/* ---------- Content bands (image + text) ---------- */
.content-band { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center; }
@media (min-width: 900px) { .content-band { grid-template-columns: 1fr 1fr; } }
.content-band-reverse .content-band-media { order: 2; }
.content-band-media img, .content-band-media video { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }

/* ---------- Video showcase ---------- */
.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--color-surface);
  cursor: pointer;
}
.video-frame:has(video) { cursor: default; }
.video-frame img { width: 100%; height: 100%; object-fit: cover; }
.video-frame .play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame .play-button span {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(11, 10, 9, 0.55);
  border: 1px solid rgba(244, 239, 230, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: transform 0.15s ease, background 0.15s ease;
}
.video-frame:hover .play-button span { transform: scale(1.06); background: rgba(var(--color-accent-rgb), 0.85); }
.video-frame .play-button svg { width: 28px; height: 28px; color: var(--color-white); margin-left: 4px; }
.video-frame .video-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-md);
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: var(--color-white);
  font-size: 0.9rem;
}

/* ---------- Steps ---------- */
.steps { display: grid; gap: var(--space-md); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: var(--space-md); border-top: 1px solid var(--color-border); }
.step h3::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.18);
  color: var(--color-accent-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: 10px;
  vertical-align: middle;
}
.step p { color: var(--color-text-muted); }

/* ---------- Chips / badges ---------- */
.town-chips, .chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.town-chip, .chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
}
.town-chip:hover, .chip:hover { border-color: var(--color-accent); color: var(--color-accent-light); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  color: var(--color-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: var(--space-sm); color: var(--color-text-muted); }

/* ---------- Forms ----------
   Deliberate exception to the site-wide centred-text default: centred
   labels and centred typed input/textarea text hurt usability and
   readability, so forms stay left-aligned regardless of what section
   they sit in. */
form { text-align: left; }
.form-grid { display: grid; gap: var(--space-sm); grid-template-columns: 1fr; margin-bottom: var(--space-sm); }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: var(--space-sm); }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; color: var(--color-text); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.98rem;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--color-text-muted); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.18);
}
.form-note { font-size: 0.85rem; color: var(--color-text-muted); }
.honeypot-field { position: absolute; left: -9999px; }
/* Also left-aligned deliberately: centred text would misalign the
   tick-mark bullet, which is absolutely positioned at the left edge of
   each list item. */
.check-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 10px; color: var(--color-text-muted); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.18);
  border: 1px solid var(--color-accent);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(180deg, var(--color-bg-alt), var(--color-bg));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-primary-dark); color: var(--color-text-muted); padding: var(--space-xl) 0 var(--space-md); border-top: 1px solid var(--color-border); }
.footer-grid { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; margin-bottom: var(--space-lg); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col-heading { font-family: var(--font-display); color: var(--color-white); font-size: 1.05rem; cursor: default; list-style: none; margin-bottom: var(--space-sm); }
.footer-col-heading::-webkit-details-marker { display: none; }
.footer-col-body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col-body a, .footer-contact-list a { color: var(--color-text-muted); text-decoration: none; }
.footer-col-body a:hover, .footer-contact-list a:hover { color: var(--color-accent-light); }
.footer-contact-list { list-style: none; padding: 0; margin: 0 0 var(--space-sm); display: grid; gap: 8px; }
.social-links { display: flex; justify-content: center; gap: 12px; margin-top: var(--space-sm); }
.social-link { width: 34px; height: 34px; border-radius: 50%; background: var(--color-surface); border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); }
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--color-accent); color: var(--color-accent-light); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--color-text-muted); }
.footer-bottom a:hover { color: var(--color-accent-light); }

@media (max-width: 900px) {
  .footer-col-heading { cursor: pointer; }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 50;
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ---------- Utility ---------- */
.cards-dark .card { background: var(--color-surface); }
