/* ============================================================
   Spotlight Pet Videos: warm & heartfelt design system
   ============================================================ */

:root {
  --cream: #FBF7F1;
  --cream-deep: #F4EBDE;
  --card: #FFFFFF;
  --ink: #3D3229;
  --ink-soft: #5C4F43;
  --heading: #1b344d;
  --muted: #8A7A6A;
  --terracotta: #C96F4A;
  --terracotta-dark: #A9553A;
  --blush: #F7E2D4;
  --gold: #E3A857;
  --sage: #9BAA8D;
  --line: #E8DECF;
  --shadow: 0 10px 30px rgba(93, 70, 50, 0.10);
  --shadow-soft: 0 4px 14px rgba(93, 70, 50, 0.08);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--heading);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 42em;
}

.section-intro { max-width: 40em; color: var(--ink-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 18px rgba(201, 111, 74, 0.35);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--terracotta-dark);
  box-shadow: inset 0 0 0 2px var(--terracotta);
}
.btn-ghost:hover {
  background: var(--blush);
  transform: translateY(-2px);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.brand-mark { width: 42px; height: 42px; flex-shrink: 0; }

/* Primary brand logo (full lockup image) */
.brand-logo { height: 92px; width: auto; display: block; flex-shrink: 0; }
.site-footer .brand-logo { height: 86px; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover { color: var(--terracotta-dark); }
.site-nav a.active {
  color: var(--terracotta-dark);
  border-bottom-color: var(--terracotta);
}

.nav-cta { padding: 0.6rem 1.3rem; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(92vh, 860px);
  padding: clamp(4rem, 12vh, 8rem) 0;
  overflow: hidden;
  /* poster as background: shows while the video loads, if it fails, or on reduced motion */
  background: #2a1e14 url("hero-poster.jpg") center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(38, 28, 20, 0.55) 0%, rgba(38, 28, 20, 0.30) 42%, rgba(38, 28, 20, 0.72) 100%),
    linear-gradient(90deg, rgba(38, 28, 20, 0.55) 0%, rgba(38, 28, 20, 0.10) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}

.hero .eyebrow { color: var(--gold); }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255, 255, 255, 0.92); margin: 1.4rem 0 2.2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero .btn-ghost {
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75);
}
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.hero-note {
  margin-top: 1.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}


/* Page hero (interior pages) */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    radial-gradient(ellipse 60% 70% at 90% 0%, rgba(227, 168, 87, 0.16), transparent);
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { margin-top: 1.2rem; }

/* Page hero with a background video (Our Films) */
.page-hero.has-video {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(72vh, 640px);
  padding: clamp(3rem, 9vh, 6rem) 0;
  overflow: hidden;
  border-bottom: none;
  /* dark fallback; each page's <video poster> supplies the actual still */
  background: #2a1e14;
}
.page-hero.has-video .hero-content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}
.page-hero.has-video .eyebrow { color: var(--gold); }
.page-hero.has-video h1 { color: #fff; }
.page-hero.has-video .lead { color: rgba(255, 255, 255, 0.92); }

/* ---------- Media placeholders (swap for real stills/footage) ---------- */

.media-ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(61, 50, 41, 0.55);
}

.media-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(61, 50, 41, 0.22));
  pointer-events: none;
}

.media-ph .ph-icon { width: 54px; height: 54px; opacity: 0.6; }

.media-ph .ph-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 1;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.ph-a { background: linear-gradient(135deg, #F3D9BE, #E0B18B); }
.ph-b { background: linear-gradient(135deg, #EAD9C2, #C9A87F); }
.ph-c { background: linear-gradient(135deg, #F7E2D4, #DFA98A); }
.ph-d { background: linear-gradient(135deg, #E9E3D2, #B9BFA3); }
.ph-e { background: linear-gradient(135deg, #F2E0CE, #D8AE92); }
.ph-f { background: linear-gradient(135deg, #EFE6DA, #CBB39A); }

.hero-media {
  aspect-ratio: 4 / 5;
  transform: rotate(2deg);
}
.hero-media-stack { position: relative; }
.hero-media-stack .media-chip {
  position: absolute;
  z-index: 2;
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.7rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.media-chip svg { width: 20px; height: 20px; flex-shrink: 0; }
.chip-top { top: -1.2rem; left: -1.6rem; transform: rotate(-3deg); }
.chip-bottom { bottom: -1.2rem; right: -1rem; transform: rotate(2deg); }

/* ---------- Sections ---------- */

.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--cream-deep); }
.section-head { margin-bottom: 2.6rem; }
.section-head.center { text-align: center; }
.section-head.center .section-intro { margin: 0.9rem auto 0; }
.section-head:not(.center) .section-intro { margin-top: 0.9rem; }

/* Positioning band */
.band {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2.6rem, 5vw, 4rem) 0;
}
.band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.4;
  max-width: 28em;
  margin: 0 auto;
  text-align: center;
}
.band cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Grids & cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 28px; height: 28px; }

.card-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--terracotta-dark);
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

/* Moments gallery */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.moments-grid .media-ph { aspect-ratio: 4 / 3; }
.moments-grid .tall { aspect-ratio: 3 / 4; grid-row: span 2; }

/* Detail list ("the little things") */
.details-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
}
.details-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.details-list .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Films page ---------- */

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.4rem, 5vw, 3.8rem) 0;
}
.service-row + .service-row { border-top: 1px solid var(--line); }
.service-row .media-ph { aspect-ratio: 3 / 2; }
.service-row.flip .service-media { order: 2; }
.service-row h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.8rem; }
.service-row p { color: var(--ink-soft); }
.service-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--terracotta-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.milestone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
  list-style: none;
}
.milestone-chips li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* Remembrance: gentle, quiet treatment */
.remembrance {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  border: 1px solid var(--line);
}
.remembrance h2 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.remembrance p { max-width: 38em; margin: 0 auto 0.8rem; color: var(--ink-soft); }

/* ---------- How it works ---------- */

.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
}
.step-num {
  counter-increment: step;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-num::before { content: counter(step); }
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--terracotta);
  box-shadow: var(--shadow);
  position: relative;
}
.price-card .flag {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { margin-bottom: 0.3rem; }
.price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--terracotta-dark);
  margin: 0.6rem 0 0.2rem;
}
.price small { font-size: 0.95rem; color: var(--muted); font-family: var(--font-body); font-weight: 600; }
.price-card ul { list-style: none; margin: 1.2rem 0 1.6rem; flex-grow: 1; }
.price-card li {
  padding: 0.45rem 0 0.45rem 1.7rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.pricing-note {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}
/* Richer pricing cards (pricing page) */
.price-card .card-desc {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0.4rem 0 0.2rem;
}
.price-card .includes-label {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}
.price-card .includes-label + ul { margin-top: 0.6rem; }
.price-card .ideal-for {
  margin: 0 0 1.6rem;
  padding: 0.9rem 1.1rem;
  background: var(--cream-deep);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.price-card .ideal-for strong { color: var(--heading); }

/* Gift certificates */
.gift-cert {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.4rem);
}
.gift-cert h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.8rem; }
.gift-cert p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 40em; }
.gift-cert .btn { margin-top: 0.4rem; }
.gift-card-visual {
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  color: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 8 / 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gift-card-visual .gc-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}
.gift-card-visual .gc-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
}
.gift-card-visual .gc-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- FAQ (accordion) ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--terracotta); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ""; }
.faq-question:hover { color: var(--terracotta-dark); }
.faq-item[open] .faq-question { color: var(--terracotta-dark); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--terracotta);
  font-size: 1.4rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.faq-item[open] .faq-chevron { transform: rotate(90deg); }
.faq-answer { padding: 0 1.5rem 1.35rem; }
.faq-answer p { color: var(--ink-soft); font-size: 0.98rem; max-width: 62ch; }
@media (prefers-reduced-motion: reduce) {
  .faq-chevron, .faq-item { transition: none; }
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-grid .media-ph { aspect-ratio: 4 / 5; }
.about-copy p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.about-copy p strong { color: var(--ink); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201, 111, 74, 0.18);
}

.form-success {
  display: none;
  background: #EEF3E7;
  border: 1px solid var(--sage);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-top: 1.2rem;
  font-weight: 600;
  color: #4E5A40;
}
.form-success.visible { display: block; }

.form-error {
  display: none;
  background: #FBE9E4;
  border: 1px solid var(--terracotta);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-top: 1.2rem;
  font-weight: 600;
  color: #8A3B22;
}
.form-error a { color: inherit; text-decoration: underline; }
.form-error.visible { display: block; }

.contact-aside .card + .card { margin-top: 1.4rem; }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  border-radius: calc(var(--radius) + 6px);
  color: #fff;
  text-align: center;
  padding: clamp(2.6rem, 6vw, 4.2rem) clamp(1.5rem, 5vw, 4rem);
  box-shadow: var(--shadow);
}
.cta-banner h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-banner p { max-width: 36em; margin: 0 auto 1.8rem; color: rgba(255, 255, 255, 0.92); }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--terracotta-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.cta-banner .btn-primary:hover { background: var(--cream); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #CDBFB1;
  padding: 3.5rem 0 2rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.site-footer .brand { color: var(--cream); }
.site-footer .brand-sub { color: var(--gold); }
.footer-tagline { margin-top: 1rem; font-size: 0.95rem; max-width: 24em; }
.site-footer h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: #CDBFB1; text-decoration: none; font-size: 0.95rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.6rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Tagline divider (scrolls left on scroll) ---------- */

.tagline-divider {
  overflow: hidden;
  padding: clamp(1.2rem, 3.5vw, 2.2rem) 0;
  background: var(--blush);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tagline-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}
.tagline-item {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1.1;
  color: var(--heading);
  white-space: nowrap;
  padding: 0 clamp(1.4rem, 3vw, 2.4rem);
}
.tagline-sep {
  flex: 0 0 auto;
  width: clamp(22px, 2.4vw, 30px);
  height: clamp(22px, 2.4vw, 30px);
  color: var(--terracotta);
  opacity: 0.85;
}
.tagline-sep svg { width: 100%; height: 100%; display: block; fill: currentColor; }

/* ---------- Film-strip parallax divider ---------- */

.film-strip-wrap {
  overflow: hidden;
  width: 100%;
  line-height: 0;
  user-select: none;
  background: #1c1206;
}
.film-strip {
  display: flex;
  flex-direction: column;
  width: max-content;
  will-change: transform;
}
.film-perfs {
  height: 24px;
  background-color: #1c1206;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='24'%3E%3Crect x='10' y='5' width='24' height='14' rx='3' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 44px 24px;
  border-top: 2px solid #2a1a0a;
  border-bottom: 2px solid #2a1a0a;
}
.film-frames {
  display: flex;
  align-items: stretch;
  border-top: 3px solid #2a1a0a;
  border-bottom: 3px solid #2a1a0a;
}
.film-frame {
  width: 280px;
  height: 188px;
  flex-shrink: 0;
  border-right: 3px solid #1c1206;
  overflow: hidden;
  position: relative;
}
.film-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.03);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.film-frame:hover img { filter: saturate(1.05) contrast(1.05); transform: scale(1.04); }

/* ---------- Video gallery ---------- */

.gallery-row-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.gallery-row-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}
.gallery-row-label--top { margin-top: 3rem; }

.gallery-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-grid--vertical { grid-template-columns: repeat(4, 1fr); }

.gallery-item { display: flex; flex-direction: column; gap: 0.7rem; }

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-deep);
  box-shadow: var(--shadow-soft);
}
.video-thumb--vertical { aspect-ratio: 9 / 16; }

.thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-thumb:hover .thumb-img { transform: scale(1.05); }

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(38, 28, 20, 0.35));
  pointer-events: none;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(201, 111, 74, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, background 0.25s ease;
}
.play-badge svg { width: 22px; height: 22px; margin-left: 3px; fill: #fff; }
.video-thumb:hover .play-badge { transform: translate(-50%, -50%) scale(1.12); background: var(--terracotta); }
.video-thumb:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }

.thumb-caption { font-size: 0.9rem; font-weight: 700; color: var(--ink-soft); }

/* ---------- Video modal ---------- */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.video-modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 12, 0.62);
  backdrop-filter: blur(2px);
  cursor: pointer;
}
.modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  animation: modalIn 0.22s ease;
}
.modal-content.is-vertical { max-width: min(420px, calc(100vh * 9 / 16 - 3rem)); }
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: none; }
}
.modal-video {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.modal-close {
  position: absolute;
  top: -2.9rem;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.modal-close:hover { background: var(--terracotta); border-color: var(--terracotta); transform: scale(1.1); }

@media (prefers-reduced-motion: reduce) {
  .film-strip { transform: none !important; }
  .film-frame img, .thumb-img, .play-badge { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 960px) {
  .grid-3, .values-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .details-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.6rem 4%;
    display: none;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a.active { border-bottom-color: var(--line); }

  .hero-grid,
  .service-row,
  .about-grid,
  .gift-cert,
  .contact-grid { grid-template-columns: 1fr; }

  .service-row.flip .service-media { order: 0; }

  .hero-media { max-width: 420px; margin: 0 auto; }
  .chip-top { left: 0; }
  .chip-bottom { right: 0; }

  .moments-grid { grid-template-columns: 1fr 1fr; }
  .moments-grid .tall { grid-row: auto; aspect-ratio: 4 / 3; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--vertical { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .values-grid, .pricing-grid,
  .moments-grid, .details-list, .footer-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .step { grid-template-columns: 48px 1fr; padding: 1.3rem; }
  .step-num { width: 48px; height: 48px; font-size: 1.2rem; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid--vertical { grid-template-columns: repeat(2, 1fr); }
  .film-frame { width: 200px; height: 135px; }
  .film-perfs { height: 18px; background-size: 34px 18px; }

  .brand-logo { height: 70px; }
  .site-footer .brand-logo { height: 70px; }
}
