/* Storyline Creative -- Shared Stylesheet */

:root {
  --slate:      #2d3240;
  --slate-mid:  #404760;
  --slate-lt:   #6b7280;
  --terra:      #c4622d;
  --terra-lt:   #d4764a;
  --terra-pale: #f5e6dc;
  --sand:       #f7f3ee;
  --warm-white: #fdfaf7;
  --rule:       #e4ddd6;
  --ink:        #1a1c24;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Epilogue', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(253,250,247,0.94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  color: var(--slate); text-decoration: none;
  letter-spacing: -0.01em;
}
.logo em { font-style: italic; color: var(--terra); font-weight: 400; }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--slate-lt); text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--slate); }
.nav-cta {
  background: var(--terra) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 13px !important; font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { background: var(--terra-lt) !important; color: white !important; }

/* HERO */
.hero {
  padding: 180px 56px 120px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #d4764a; margin-bottom: 36px;
}
.hero-kicker::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--terra);
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.03em; color: var(--slate);
  margin-bottom: 40px; max-width: 900px;
  word-wrap: break-word; overflow-wrap: break-word;
}
.hero-h1 em { font-style: italic; font-weight: 700; color: var(--terra); }
.hero-body-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}
.hero-sub {
  font-size: 18px; font-weight: 300;
  line-height: 1.75; color: var(--slate-lt);
  max-width: 440px;
}
.hero-sub strong { color: var(--slate); font-weight: 500; }
.hero-right-col { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-actions-mobile { display: none; }
.hero-proof {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hero-proof span {
  font-size: 12px; font-weight: 500; color: var(--slate);
  background: var(--sand); border: 1px solid var(--rule);
  padding: 6px 14px; border-radius: 20px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terra); color: white;
  padding: 15px 32px; border-radius: 2px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  letter-spacing: 0.04em; transition: transform 0.15s, opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--terra-lt); transform: translateY(-1px); }
.btn-text {
  font-size: 13px; color: var(--slate-lt);
  text-decoration: none; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.btn-text:hover { color: var(--slate); }
.hero-note {
  font-size: 12px; color: var(--slate-lt);
  font-weight: 400; font-style: italic;
  border-left: 2px solid var(--terra-pale);
  padding-left: 14px; line-height: 1.6;
}

/* MARQUEE STRIP */
.strip {
  background: var(--slate);
  padding: 18px 0; overflow: hidden; white-space: nowrap;
}
.strip-inner {
  display: inline-flex; gap: 0;
  animation: marquee 30s linear infinite;
}
.strip-item {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #ffffff; padding: 0 40px;
}
.strip-item span { color: var(--terra); margin-right: 40px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SECTION SHARED */
.section { padding: 100px 56px; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 100px 56px; }
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--terra); }
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.025em; color: var(--slate);
  margin-bottom: 20px;
  word-wrap: break-word; overflow-wrap: break-word;
}
.section-h2 em { font-style: italic; color: var(--terra); font-weight: 400; }
.section-sub {
  font-size: 16px; color: var(--slate-lt);
  font-weight: 300; line-height: 1.75; max-width: 520px;
}

/* WHO WE WORK WITH */
.who { background: var(--sand); }
.who-inner { max-width: 1100px; margin: 0 auto; padding: 100px 56px; }
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 56px; background: var(--rule);
}
.who-card { background: var(--warm-white); padding: 44px 36px; }
.who-card:hover { background: var(--terra-pale); }
.who-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900;
  color: var(--rule); line-height: 1;
  margin-bottom: 20px; letter-spacing: -0.04em;
}
.who-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--slate); margin-bottom: 12px; line-height: 1.2;
}
.who-card p { font-size: 14px; color: var(--slate-lt); line-height: 1.7; font-weight: 300; }

/* HOW IT WORKS */
.how { background: var(--slate); }
.how-inner { max-width: 1100px; margin: 0 auto; padding: 100px 56px; }
.how-inner .eyebrow { color: var(--terra-lt); }
.how-inner .eyebrow::before { background: var(--terra-lt); }
.how-inner .section-h2 { color: #e8e4de; }
.how-inner .section-h2 em { color: var(--terra-lt); }
.how-inner .section-sub { color: #6b7280; }
.steps {
  display: flex; flex-direction: column;
  gap: 0; margin-top: 64px; border-top: 1px solid #3d4356;
}
.step {
  padding: 40px 0;
  border-bottom: 1px solid #3d4356;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra-lt); margin-top: 6px; display: block;
}
.step-left { }
.step-right { }
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: #e8e4de; margin-bottom: 14px; line-height: 1.2;
}
.step p { font-size: 14px; color: #9ba3b4; line-height: 1.75; font-weight: 300; }

/* TESTIMONIAL */
.testimonial-section { padding: 100px 56px; max-width: 1100px; margin: 0 auto; }
.testimonial-block {
  background: var(--terra-pale); border-radius: 4px;
  padding: 64px 72px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center; overflow: hidden;
}
.quote-col { min-width: 0; overflow: hidden; }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px; color: var(--terra);
  opacity: 0.2; line-height: 0.6;
  margin-bottom: 24px; display: block;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic; font-weight: 400;
  color: var(--slate); line-height: 1.5; margin-bottom: 28px;
  word-wrap: break-word; overflow-wrap: break-word; min-width: 0;
}
.quote-attr {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--terra);
}
.quote-attr span {
  display: block; color: var(--slate-lt);
  font-weight: 400; letter-spacing: 0.05em;
  margin-top: 4px; text-transform: none; font-size: 13px;
}
.quote-stat {
  text-align: center; padding: 40px;
  background: white; border-radius: 4px; min-width: 180px;
}
.quote-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900;
  color: var(--terra); letter-spacing: -0.04em;
  line-height: 1; display: block; margin-bottom: 8px;
}
.quote-stat-label { font-size: 12px; color: var(--slate-lt); font-weight: 400; line-height: 1.5; }

/* PACKAGES */
.packages { background: var(--sand); }
.packages-inner { max-width: 1100px; margin: 0 auto; padding: 100px 56px; }
.packages-note-top {
  display: inline-block; margin-top: 16px;
  font-size: 13px; color: var(--slate-lt); font-style: italic;
  border-bottom: 1px dashed var(--rule); padding-bottom: 2px;
}
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.pkg {
  background: var(--warm-white); border: 1.5px solid var(--rule);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(45,50,64,0.1); }
.pkg.featured { border-color: var(--terra); }
.pkg-top { padding: 36px 40px 28px; border-bottom: 1.5px solid var(--rule); position: relative; }
.pkg.featured .pkg-top { background: var(--slate); border-bottom-color: transparent; }
.pkg-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 16px; display: block;
}
.pkg.featured .pkg-tag { color: var(--terra-lt); }
.pkg-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--slate); margin-bottom: 16px; }
.pkg.featured .pkg-name { color: #e8e4de; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--slate); letter-spacing: -0.04em; line-height: 1; }
.pkg.featured .pkg-price { color: white; }
.pkg-price sub { font-size: 16px; font-weight: 400; font-family: 'Epilogue', sans-serif; color: var(--slate-lt); vertical-align: baseline; letter-spacing: 0; }
.pkg.featured .pkg-price sub { color: rgba(255,255,255,0.5); }
.pkg-body { padding: 32px 40px 40px; }
.pkg-desc { font-size: 14px; color: var(--slate-lt); line-height: 1.7; font-weight: 300; padding-bottom: 24px; border-bottom: 1px solid var(--rule); margin-bottom: 24px; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pkg-features li { font-size: 13.5px; color: var(--slate); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; font-weight: 400; }
.pkg-features li::before { content: '--'; color: var(--terra); font-weight: 600; flex-shrink: 0; }
.pkg-cta {
  display: block; text-align: center; padding: 13px 24px; border-radius: 2px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--slate); color: var(--slate);
}
.pkg-cta:hover { background: var(--slate); color: white; }
.pkg.featured .pkg-cta { background: var(--terra); border-color: var(--terra); color: white; }
.pkg.featured .pkg-cta:hover { background: var(--terra-lt); border-color: var(--terra-lt); }
.pkg-savings { margin-top: 32px; padding: 20px 24px; background: rgba(196,98,45,0.07); border-radius: 3px; font-size: 13px; color: var(--slate-lt); line-height: 1.6; }
.pkg-savings strong { color: var(--terra); }

/* CTA SECTION */
.cta-section { padding: 120px 56px; text-align: center; max-width: 760px; margin: 0 auto; overflow: hidden; }
.cta-section .eyebrow { justify-content: center; }
.cta-section .eyebrow::before { display: none; }
.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 56px); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.03em; color: var(--slate);
  margin-bottom: 24px; word-wrap: break-word; overflow-wrap: break-word;
}
.cta-h2 em { font-style: italic; color: var(--terra); font-weight: 700; }
.cta-sub { font-size: 17px; color: var(--slate-lt); font-weight: 300; line-height: 1.7; margin-bottom: 44px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--slate); padding: 48px 56px; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: #e8e4de; }
.footer-logo em { font-style: italic; color: var(--terra-lt); font-weight: 400; }
.footer-copy { font-size: 12px; color: #9ba3b4; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 12px; color: #9ba3b4; text-decoration: none; }
.footer-links a:hover { color: #e8e4de; }

/* HAMBURGER + MOBILE MENU */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--warm-white); z-index: 200;
  flex-direction: column; justify-content: center; align-items: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--slate); text-decoration: none; padding: 20px 0; border-bottom: 1px solid var(--rule); width: 75%; text-align: center; }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a.mob-cta { color: var(--terra); }
.mobile-close { position: absolute; top: 24px; right: 28px; font-size: 32px; line-height: 1; background: none; border: none; color: var(--slate-lt); cursor: pointer; }

/* ABOUT PAGE */
.intro {
  max-width: 1100px; margin: 0 auto;
  padding: 140px 56px 80px;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: start;
  border-bottom: 1px solid var(--rule);
}
.eyebrow.animate { color: var(--terra); }
.intro-h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: var(--slate); margin-bottom: 24px; }
.intro-h1 em { font-style: italic; color: var(--terra); font-weight: 400; }
.intro-lead { font-size: 17px; color: var(--slate-lt); line-height: 1.8; font-weight: 300; }
.intro-lead strong { color: var(--slate); font-weight: 500; }
.photo-col { position: sticky; top: 100px; align-self: start; }
.photo-wrap { background: var(--sand); border-radius: 3px; overflow: hidden; aspect-ratio: 3/4; }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.photo-label { padding: 16px 20px; display: flex; flex-direction: column; gap: 2px; background: var(--warm-white); border-top: 1px solid var(--rule); }
.photo-label strong { font-size: 14px; font-weight: 600; color: var(--slate); }
.photo-label span { font-size: 12px; color: var(--slate-lt); }
.story { max-width: 760px; margin: 0 auto; padding: 80px 56px 64px; }
.story-block { margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--rule); }
.story-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.story-block h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--slate); margin-bottom: 20px; }
.story-block h2 em { font-style: italic; color: var(--terra); font-weight: 400; }
.story-block p { font-size: 16px; color: var(--slate-lt); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.story-block p:last-child { margin-bottom: 0; }
.story-block p strong { color: var(--slate); font-weight: 500; }
.pull-quote { border-left: 3px solid var(--terra); padding: 8px 0 8px 24px; margin: 28px 0; }
.pull-quote p { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--slate); font-weight: 400; line-height: 1.5; margin: 0; }
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.tool-item { background: var(--sand); border: 1px solid var(--rule); border-radius: 4px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.tool-icon { font-size: 20px; flex-shrink: 0; }
.tool-info h4 { font-size: 13px; font-weight: 600; color: var(--slate); }
.tool-info p { font-size: 12px; color: var(--slate-lt); font-weight: 300; margin-top: 1px; }
.values { background: var(--slate); padding: 80px 0; margin-top: 0; }
.values-inner { max-width: 1100px; margin: 0 auto; padding: 0 56px; }
.values-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra-lt); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.values-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--terra-lt); }
.values-h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: #e8e4de; margin-bottom: 48px; line-height: 1.15; }
.values-h2 em { font-style: italic; color: var(--terra-lt); font-weight: 400; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid #3d4356; }
.value-item { padding: 40px 0; padding-right: 40px; border-right: 1px solid #3d4356; }
.value-item:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.value-item:nth-child(2) { padding-left: 40px; }
.value-num { font-family: 'Playfair Display', serif; font-size: 11px; font-style: italic; color: var(--terra-lt); margin-bottom: 14px; display: block; letter-spacing: 0.1em; }
.value-item h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #e8e4de; margin-bottom: 10px; }
.value-item p { font-size: 13.5px; color: #9ca3af; line-height: 1.7; font-weight: 300; }
.cta-band { background: var(--terra); padding: 80px 56px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: white; line-height: 1.2; }
.cta-band h2 em { font-style: italic; font-weight: 400; }
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 10px; font-weight: 300; }
.btn-light { background: white; color: var(--terra); padding: 16px 32px; border-radius: 2px; font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* SERVICES PAGE */
.services-hero { padding: 140px 56px 80px; max-width: 1100px; margin: 0 auto; border-bottom: 1px solid var(--rule); }
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; background: var(--rule); }
.deliverable-card { background: var(--warm-white); padding: 36px 32px; }
.deliverable-icon { font-size: 24px; margin-bottom: 16px; display: block; }
.deliverable-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--slate); margin-bottom: 10px; }
.deliverable-card p { font-size: 13.5px; color: var(--slate-lt); line-height: 1.7; font-weight: 300; }
.faq-section { max-width: 760px; margin: 0 auto; padding: 80px 56px; }
.faq-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: var(--slate); margin-bottom: 40px; line-height: 1.15; }
.faq-section h2 em { font-style: italic; color: var(--terra); font-weight: 400; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q { width: 100%; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; cursor: pointer; font-family: 'Epilogue', sans-serif; font-size: 15px; font-weight: 600; color: var(--slate); line-height: 1.4; }
.faq-icon { font-size: 18px; color: var(--terra); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 22px; font-size: 14.5px; color: var(--slate-lt); line-height: 1.8; font-weight: 300; }
.faq-item.open .faq-a { display: block; }
.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--slate); font-weight: 500; }
.podfade-callout { background: var(--terra-pale); border-left: 3px solid var(--terra); padding: 16px 20px; margin-top: 12px; border-radius: 0 3px 3px 0; }
.podfade-callout p { font-size: 13.5px; color: var(--slate); line-height: 1.7; margin: 0; }
.podfade-callout a { color: var(--terra); }

/* CONTACT PAGE */
.contact-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 140px 56px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: var(--slate); margin-bottom: 20px; }
.contact-h1 em { font-style: italic; color: var(--terra); font-weight: 400; }
.contact-sub { font-size: 16px; color: var(--slate-lt); line-height: 1.8; font-weight: 300; margin-bottom: 48px; }
.what-happens h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--slate); margin-bottom: 24px; }
.what-step { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.what-step-num { font-family: 'Playfair Display', serif; font-size: 13px; font-style: italic; color: var(--terra); font-weight: 400; min-width: 24px; padding-top: 2px; }
.what-step p { font-size: 14px; color: var(--slate-lt); line-height: 1.7; font-weight: 300; }
.what-step p strong { color: var(--slate); font-weight: 500; }
.contact-details { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--rule); }
.contact-details h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--slate); margin-bottom: 16px; }
.contact-link { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--slate-lt); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--rule); }
.contact-link:last-child { border-bottom: none; }
.contact-link:hover { color: var(--terra); }
.contact-link-icon { width: 28px; height: 28px; background: var(--terra-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--terra); flex-shrink: 0; }
.form-card { background: var(--warm-white); border: 1.5px solid var(--rule); border-radius: 4px; padding: 44px; position: sticky; top: 100px; }
.form-card h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--slate); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--slate-lt); margin-bottom: 28px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--slate); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--rule); border-radius: 2px; font-family: 'Epilogue', sans-serif; font-size: 14px; color: var(--slate); background: var(--warm-white); outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--terra); }
.field input.field-error, .field select.field-error { border-color: #e05a5a; }
.field textarea { resize: vertical; min-height: 100px; }
.submit-btn { width: 100%; padding: 14px; background: var(--terra); color: white; border: none; border-radius: 2px; font-family: 'Epilogue', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; margin-top: 4px; }
.submit-btn:hover { background: var(--terra-lt); }
.form-note { font-size: 12px; color: var(--slate-lt); text-align: center; margin-top: 12px; font-style: italic; }
.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 20px; gap: 16px; }
.success-icon { font-size: 40px; color: var(--terra); }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--slate); }
.form-success p { font-size: 14px; color: var(--slate-lt); line-height: 1.7; }

/* RESPONSIVE -- 1100px */
@media (max-width: 1100px) {
  .hero { padding: 160px 40px 100px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 140px 1fr; gap: 24px; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .deliverables-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; border-top: none; }
  .value-item, .value-item:nth-child(2), .value-item:last-child { padding: 28px 0; border-right: none; border-top: 1px solid #3d4356; padding-left: 0; }
  .testimonial-block { padding: 48px; gap: 40px; }
  .contact-wrap { padding: 140px 40px 80px; gap: 60px; }
  .services-hero { padding: 140px 40px 60px; }
  .faq-section { padding: 80px 40px; }
  .story { padding: 80px 40px 64px; }
  .values-inner { padding: 0 40px; }
}

/* RESPONSIVE -- 900px */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 120px 24px 72px; }
  .hero-h1 { font-size: clamp(36px, 10vw, 60px); margin-bottom: 24px; }
  .hero-body-row { grid-template-columns: 1fr; gap: 28px; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-actions-mobile { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 8px; }
  .hero-actions-desktop { display: none; }
  .btn-primary { text-align: center; }
  .hero-proof { justify-content: flex-start; }

  .section, .who-inner, .how-inner, .packages-inner,
  .testimonial-section, .cta-section { padding: 64px 24px; }

  .who-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-label { margin-bottom: 4px; }
  .testimonial-block { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .quote-stat { padding: 28px 20px; }

  .pkg-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .pkg-top { padding: 28px 28px 22px; }
  .pkg-body { padding: 24px 28px 32px; }

  .cta-actions { flex-direction: column; align-items: center; gap: 14px; }

  footer { flex-direction: column; gap: 16px; text-align: center; padding: 40px 24px; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }

  .intro { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .photo-col { position: static; }
  .photo-wrap { max-width: 280px; margin: 0 auto; }
  .story { padding: 52px 24px 52px; }
  .values { padding: 56px 0; }
  .values-inner { padding: 0 24px; }
  .cta-band { grid-template-columns: 1fr; padding: 56px 24px; }

  .services-hero { padding: 120px 24px 60px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 60px 24px; }

  .contact-wrap { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 48px; }
  .form-card { position: static; padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 108px 20px 56px; }
  .hero-proof span { font-size: 11px; padding: 5px 10px; }
  .section, .who-inner, .how-inner, .packages-inner,
  .testimonial-section, .cta-section { padding: 52px 20px; }
  .testimonial-block { padding: 24px 20px; }
  .pkg-top, .pkg-body { padding-left: 20px; padding-right: 20px; }
  .values-inner { padding: 0 20px; }
  .story { padding-left: 20px; padding-right: 20px; }
  .contact-wrap { padding-left: 20px; padding-right: 20px; }
  .faq-section { padding-left: 20px; padding-right: 20px; }
}
/* PAGE HEADER (services page) */
.page-header {
  max-width: 1100px; margin: 0 auto;
  padding: 140px 56px 80px;
  border-bottom: 1px solid var(--rule);
}
.page-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--slate);
  margin-bottom: 20px; margin-top: 16px;
  word-wrap: break-word; overflow-wrap: break-word;
}
.page-h1 em { font-style: italic; color: var(--terra); font-weight: 400; }
.page-sub {
  font-size: 17px; color: var(--slate-lt);
  font-weight: 300; line-height: 1.75; max-width: 600px;
}
.page-header-actions {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px; flex-wrap: wrap;
}
@media (max-width: 900px) {
  .page-header-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .page-header-actions .btn-primary { text-align: center; }
  .page-header-actions .btn-text { justify-content: center; }
}

/* INCLUDED GRID (services page) */
.included {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 56px;
}
.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px; background: var(--rule);
}
.included-item {
  background: var(--warm-white); padding: 36px 32px;
}
.included-icon { font-size: 24px; margin-bottom: 16px; display: block; }
.included-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--slate); margin-bottom: 10px;
}
.included-item p { font-size: 13.5px; color: var(--slate-lt); line-height: 1.7; font-weight: 300; }

/* FAQ STAT (podfade callout) */
.faq-stat {
  margin-top: 16px; padding: 16px 20px;
  background: var(--terra-pale);
  border-left: 3px solid var(--terra);
  border-radius: 0 3px 3px 0;
  font-size: 13.5px; color: var(--slate);
  line-height: 1.7;
}
.faq-cite { color: var(--terra); font-weight: 500; }

/* NAV ACTIVE STATE */
.nav-links a.active { color: var(--slate); }

/* RESPONSIVE additions */
@media (max-width: 1100px) {
  .page-header { padding: 140px 40px 60px; }
  .included { padding: 60px 40px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-section { padding: 80px 40px; }
}

@media (max-width: 900px) {
  .page-header { padding: 120px 24px 48px; }
  .included { padding: 56px 24px; }
  .included-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .page-header { padding: 108px 20px 40px; }
  .included { padding: 48px 20px; }
}

/* FORM ERROR STATE */
.form-error {
  background: #fef2f2; border: 1.5px solid #fca5a5;
  border-radius: 3px; padding: 14px 18px;
  margin-bottom: 20px;
}
.form-error p { font-size: 14px; color: #b91c1c; margin: 0; line-height: 1.6; }

/* ============================================================
   REMOTE PILL (hero)
   ============================================================ */
.remote-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,98,45,0.1); border: 1px solid rgba(196,98,45,0.25);
  border-radius: 20px; padding: 6px 14px;
  font-size: 13px; font-weight: 500; color: var(--terra-lt);
  margin-bottom: 24px;
}
.remote-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--terra); flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.8); }
}

/* ============================================================
   REMOTE / RIVERSIDE SECTION
   ============================================================ */
.remote-section { background: var(--slate); padding: 100px 56px; }
.remote-inner { max-width: 1100px; margin: 0 auto; }
.remote-section .eyebrow { color: var(--terra); }
.remote-section .section-h2 { color: var(--warm-white); }
.remote-section .section-h2 em { color: var(--terra-lt); }
.remote-section .section-sub { color: rgba(253,250,247,0.6); margin-bottom: 56px; }

/* ── Browser mockup shell ── */
.riverside-mockup {
  background: #111318;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
  margin-bottom: 56px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Chrome bar */
.mockup-chrome {
  background: #1e2027;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.chrome-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; display: block; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.chrome-bar {
  flex: 1; background: #2a2d36; border-radius: 6px;
  padding: 5px 12px; display: flex; align-items: center; gap: 8px;
  color: #6b7280; font-size: 12px;
}
.chrome-bar svg { flex-shrink: 0; }
.chrome-spacer { width: 60px; }

/* Riverside topbar */
.mockup-topbar {
  background: #181b22; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-left { display: flex; align-items: center; gap: 10px; }
.rec-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 6px #ef4444;
  animation: pulse-dot 2s ease infinite; flex-shrink: 0;
}
.show-title { color: #f5f5f5; font-size: 13px; font-weight: 600; }
.show-meta  { color: #6b7280; font-size: 12px; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.invite-btn {
  background: #1e2330; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 5px 12px; color: #9ca3af; font-size: 12px; cursor: pointer;
}
.rec-btn {
  background: var(--terra); border-radius: 6px;
  padding: 5px 14px; color: #fff; font-size: 12px; font-weight: 600;
}

/* Video grid */
.mockup-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; background: #0d0f13; padding: 3px;
}
.video-tile {
  position: relative; background: #1a1d26; border-radius: 6px;
  overflow: hidden; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
}
.producer-tile { background: #141720; border: 1px solid rgba(196,98,45,0.2); }
.tile-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 3px solid rgba(255,255,255,0.1);
}
.producer-tile .tile-avatar { border-color: rgba(196,98,45,0.4); width: 68px; height: 68px; }
.tile-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  border-radius: 4px; padding: 4px 10px;
  display: flex; align-items: center; gap: 5px;
  color: #fff; font-size: 12px; font-weight: 500;
}
.tile-role { color: #9ca3af; font-size: 11px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.producer-badge {
  background: rgba(196,98,45,0.15); border: 1px solid rgba(196,98,45,0.3);
  color: var(--terra-lt); font-size: 11px; font-weight: 600;
}
.producer-badge svg { color: var(--terra-lt); }
.tile-audio {
  position: absolute; top: 10px; right: 10px;
  display: flex; align-items: flex-end; gap: 2px; height: 16px;
}
.tile-audio span {
  transform-origin: bottom;
  width: 3px; height: 16px; border-radius: 2px; background: #4ade80; display: block;
  will-change: transform;
}
.tile-audio.speaking span:nth-child(1) { animation: bar1 0.8s ease infinite alternate; }
.tile-audio.speaking span:nth-child(2) { animation: bar2 0.6s ease infinite alternate; }
.tile-audio.speaking span:nth-child(3) { animation: bar3 1.0s ease infinite alternate; }
.tile-audio.speaking span:nth-child(4) { animation: bar1 0.7s ease infinite alternate; }
.tile-audio:not(.speaking) span:nth-child(1) { transform: scaleY(0.25); }
.tile-audio:not(.speaking) span:nth-child(2) { transform: scaleY(0.44); }
.tile-audio:not(.speaking) span:nth-child(3) { transform: scaleY(0.31); }
.tile-audio:not(.speaking) span:nth-child(4) { transform: scaleY(0.56); }
@keyframes bar1 { from { transform: scaleY(0.25); } to { transform: scaleY(0.88); } }
@keyframes bar2 { from { transform: scaleY(0.50); } to { transform: scaleY(1.00); } }
@keyframes bar3 { from { transform: scaleY(0.75); } to { transform: scaleY(0.31); } }

/* Track panel */
.track-panel {
  background: #0f1116; border-radius: 6px;
  padding: 14px 16px; display: flex; flex-direction: column; gap: 8px;
}
.track-label { font-size: 11px; color: #6b7280; font-weight: 600; letter-spacing: 0.06em; }
.track-row { display: flex; align-items: center; gap: 8px; }
.track-name { color: #9ca3af; font-size: 10px; width: 54px; flex-shrink: 0; }
.waveform {
  flex: 1; height: 20px; background: #1a1d26; border-radius: 3px;
  display: flex; align-items: center; padding: 0 4px; gap: 2px; overflow: hidden;
}
.waveform span { width: 3px; border-radius: 1px; display: block; flex-shrink: 0; }
.waveform-green span { background: #4ade80; }
.waveform-blue  span { background: #60a5fa; }
.db-label { font-size: 10px; width: 36px; text-align: right; flex-shrink: 0; font-family: monospace; }
.db-label.green { color: #4ade80; }
.db-label.blue  { color: #60a5fa; }
.track-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4px;
}
.rec-status { color: #4ade80; font-size: 10px; font-weight: 600; }
.track-quality { color: #6b7280; font-size: 10px; font-family: monospace; }

/* Bottom toolbar */
.mockup-toolbar {
  background: #181b22; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.toolbar-left, .toolbar-right { display: flex; gap: 8px; }
.tool-btn {
  background: #1e2330; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 7px 13px;
  display: flex; align-items: center; gap: 6px;
  color: #9ca3af; font-size: 12px; cursor: pointer;
}
.end-btn {
  background: #dc2626; border-radius: 8px;
  padding: 7px 16px; color: #fff; font-size: 12px; font-weight: 600; cursor: pointer;
}
.producer-chat {
  flex: 1; max-width: 320px;
  background: rgba(196,98,45,0.1); border: 1px solid rgba(196,98,45,0.25);
  border-radius: 8px; padding: 7px 13px;
  display: flex; align-items: center; gap: 8px;
  color: var(--terra-lt); font-size: 11px;
}
.producer-chat em { font-style: italic; }

/* Remote callouts below mockup */
.remote-callouts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden;
}
.remote-callout {
  background: rgba(255,255,255,0.03); padding: 28px 28px;
  display: flex; gap: 16px; align-items: flex-start;
}
.callout-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(196,98,45,0.15); border: 1px solid rgba(196,98,45,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--terra-lt);
}
.remote-callout strong { display: block; color: var(--warm-white); font-size: 14px; margin-bottom: 6px; }
.remote-callout p { color: rgba(253,250,247,0.5); font-size: 13px; line-height: 1.65; margin: 0; }

/* Responsive */
@media (max-width: 1100px) {
  .remote-section { padding: 80px 40px; }
}
@media (max-width: 900px) {
  .remote-section { padding: 64px 24px; }
  .mockup-grid { grid-template-columns: 1fr 1fr; }
  .remote-callouts { grid-template-columns: 1fr; gap: 1px; }
  .mockup-toolbar { flex-wrap: wrap; gap: 8px; }
  .producer-chat { max-width: 100%; flex: 1 1 100%; order: 3; }
}
@media (max-width: 600px) {
  .mockup-grid { grid-template-columns: 1fr; }
  .video-tile { aspect-ratio: 4/3; }
  .track-panel { display: none; }
  .chrome-spacer { display: none; }
}

/* ── Production kit line item in Accelerator plan ── */
.pkg-kit-item {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(196,98,45,0.08);
  border: 1px solid rgba(196,98,45,0.25);
  border-radius: 4px;
  font-size: 13.5px;
  color: var(--warm-white);
  line-height: 1.5;
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pkg-kit-item::before { display: none; }
.kit-badge {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}
.kit-value {
  display: block;
  font-size: 12px;
  color: var(--terra-lt);
  font-weight: 500;
  margin-top: 2px;
}

/* ── Bold stat block (replaces testimonial) ── */
.bold-stat-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}
.bold-stat-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bold-stat-rule {
  width: 60px;
  height: 3px;
  background: var(--terra);
  margin: 24px auto;
}
.bold-stat-result {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--terra-lt);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bold-stat-sub {
  margin-top: 28px;
  font-size: 1.05rem;
  color: var(--slate-lt);
  line-height: 1.7;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}


/* ── Who section inline CTA ── */
.who-cta-line {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: var(--slate-lt);
}
.who-cta-line a {
  color: var(--terra-lt);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,118,74,0.3);
}
.who-cta-line a:hover { border-color: var(--terra-lt); }

/* ── Bold stat CTA ── */
.bold-stat-cta {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--terra-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,118,74,0.35);
  padding-bottom: 2px;
}
.bold-stat-cta:hover { color: var(--warm-white); border-color: var(--warm-white); }

/* ── Piecemeal savings table ── */
.savings-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 10px;
}
.savings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.savings-table td {
  padding: 5px 0;
  color: var(--slate-lt);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.savings-table td:last-child {
  text-align: right;
  white-space: nowrap;
  padding-left: 12px;
}
.savings-table tr.savings-total td {
  color: var(--warm-white);
  font-weight: 700;
  border-bottom: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 8px;
}
.savings-close {
  font-size: 0.82rem;
  color: var(--slate-lt);
  margin-top: 10px;
  line-height: 1.5;
}
.savings-close strong { color: var(--terra-lt); }

/* ── Homepage FAQ (sand bg, inherits accordion mechanics) ── */
.hp-faq {
  background: var(--sand);
  max-width: none;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.hp-faq h2 {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 56px 40px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
}
.hp-faq h2 em { font-style: italic; color: var(--terra); font-weight: 400; }
.hp-faq .faq-list { max-width: 760px; margin: 0 auto; padding: 0 56px 80px; }
.hp-faq .faq-q { color: var(--slate); }

@media (max-width: 900px) {
  .hp-faq h2 { padding: 64px 40px 32px; }
  .hp-faq .faq-list { padding: 0 40px 64px; }
}
@media (max-width: 600px) {
  .hp-faq h2 { padding: 52px 20px 28px; }
  .hp-faq .faq-list { padding: 0 20px 52px; }
}

/* ── Footer tagline ── */
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--slate-lt);
  margin: 4px 0 0;
  letter-spacing: 0.01em;
}

/* ============================================================
   GUEST APPLICATION PAGE
   ============================================================ */
.guest-qualities {
  margin-top: 48px;
}
.guest-qualities h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--slate); margin-bottom: 20px;
}
.guest-qualities ul {
  list-style: none; padding: 0;
}
.guest-qualities li {
  position: relative;
  padding-left: 20px;
  font-size: 15px; line-height: 1.7;
  color: var(--slate-lt);
  margin-bottom: 10px;
}
.guest-qualities li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--terra);
}
.optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--slate-lt);
  font-size: 11px;
}
