/* full-bleed scroll guard (v0.1.24) — keep 100vw without gutter scrollbar */
html, body {
  overflow-x: clip;
}

:root {
  --cream: #F7F3EE;
  --ink: #2C2416;
  --terracotta: #C4785A;
  --sage: #8B9A7D;
  --amber: #D4A574;
  --muted: #5a5248;
  --faint: #7a7166;
  --line: #e8e0d4;
  --card: #fffdf9;
  --sage-soft: color-mix(in srgb, var(--sage) 18%, var(--cream));
  --amber-soft: color-mix(in srgb, var(--amber) 16%, var(--cream));
  --max: 68rem;
  --content: 42rem;
  --header-h: 4.25rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  display: block;
  width: min(200px, 48vw);
  height: auto;
  flex-shrink: 0;
  background: transparent;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.85rem;
  justify-content: flex-end;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.25rem 0;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}
.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--terracotta);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 1rem; padding: 0.35rem 0; }
}

/* Layout */
.main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3.5rem;
}
.narrow { max-width: var(--content); }

.hero {
  padding: 1rem 0 2rem;
  max-width: 40rem;
}
.hero h1 {
  font-size: clamp(1.85rem, 4.8vw, 2.55rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 0.85rem;
}
.lede {
  font-size: 1.18rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.hero-body {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 38rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--terracotta);
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { color: #fff; filter: brightness(0.96); }
.btn-main { display: block; }
.btn .hint {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
}
.btn[aria-disabled="true"] {
  cursor: default;
  opacity: 0.92;
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-secondary:hover { color: var(--ink); border-color: var(--amber); background: var(--card); }
.btn-secondary .hint { color: var(--faint); }

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  margin-top: 0.5rem;
}
.link-row a { font-weight: 600; text-decoration: none; }
.link-row a:hover { text-decoration: underline; }

/* Sections */
.section {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.section:first-of-type { border-top: none; }
.section h2 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.7rem;
  letter-spacing: -0.01em;
}
.section p { margin: 0 0 1rem; color: var(--muted); max-width: 40rem; }
.section p:last-child { margin-bottom: 0; }
.section ul, .section ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
  max-width: 40rem;
}
.section li { margin: 0.35rem 0; }
.section li strong { color: var(--ink); }

.note {
  font-size: 0.98rem;
  color: var(--muted);
  background: var(--sage-soft);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin: 1rem 0 0;
  max-width: 40rem;
}
.note strong { color: var(--ink); }

.soft-note {
  font-size: 0.92rem;
  color: var(--faint);
  background: var(--amber-soft);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  max-width: 40rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  border-left: 3px solid var(--terracotta);
}
.card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.card p { margin: 0; font-size: 0.98rem; color: var(--muted); }
.card a { text-decoration: none; color: inherit; }
.card a:hover h3 { color: var(--terracotta); }

.steps {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1rem;
  align-items: start;
}
.step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--terracotta) 18%, var(--cream));
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin: 0 0 0.35rem; font-size: 1.08rem; }
.step p, .step ol, .step ul { margin: 0; color: var(--muted); font-size: 0.98rem; }
.step ol, .step ul { padding-left: 1.15rem; margin-top: 0.5rem; }

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
}
.panel h3 { margin: 0 0 0.6rem; font-size: 1.08rem; }
.panel.good { border-top: 3px solid var(--sage); }
.panel.never { border-top: 3px solid var(--terracotta); }
.panel ul { margin: 0; padding-left: 1.15rem; color: var(--muted); }
.panel li { margin: 0.3rem 0; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
}
.price-card.featured {
  border-color: color-mix(in srgb, var(--terracotta) 45%, var(--line));
  box-shadow: 0 8px 28px color-mix(in srgb, var(--ink) 6%, transparent);
}
.price-card h3 { margin: 0 0 0.35rem; font-size: 1.2rem; }
.price {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.15rem;
}
.price small { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.price-card .founders {
  color: var(--terracotta);
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.price-card ul { margin: 0.75rem 0 0; padding-left: 1.15rem; color: var(--muted); }
.price-card li { margin: 0.35rem 0; }

/* FAQ accordion */
.faq-list { margin: 1rem 0 0; max-width: 42rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--terracotta);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer {
  padding: 0 0 1.1rem;
  color: var(--muted);
  margin: 0;
}

.closing {
  margin-top: 1rem;
  padding: 1.75rem 1.4rem;
  background: var(--sage-soft);
  border-radius: 16px;
  max-width: 40rem;
}
.closing h2 { margin-top: 0; }
.closing p { color: var(--muted); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--sage) 8%, var(--cream));
  padding: 2rem 1.25rem 2.5rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  margin: 0 0 1.25rem;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--ink); }
.footer-meta {
  font-size: 0.82rem;
  color: var(--faint);
  margin: 0.25rem 0;
}
.footer-meta .build {
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .main { padding-top: 1.5rem; }
  .hero { padding-top: 0.25rem; }
}

/* Guides — Meet your guides (v0.1.3)
   i18n prep: EN `/` · DE `/de/` · ES `/es/`
   Keys: guides.featured.*, guides.grid.intro, guides.cast.{id}.*, guides.custom.*, guides.ai.*
*/
.guides-section { padding-top: 2.25rem; }
.guides-section > .eyebrow,
.guides-featured .eyebrow {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 0.5rem;
}
.guides-featured {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
  margin: 1.25rem 0 1.75rem;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--ink) 5%, transparent);
}
.guides-featured-portrait {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: color-mix(in srgb, var(--terracotta) 10%, var(--cream));
  aspect-ratio: 1;
}
.guides-featured-portrait img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guides-featured-copy h2,
.guides-featured-copy .guides-headline,
.guides-featured-copy p.guides-headline {
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--ink);
  max-width: none;
}
.guides-featured-copy p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: 36rem;
}
.guides-featured-copy .actions { margin-top: 1rem; }

.guides-grid-intro {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 40rem;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.25rem;
  list-style: none;
  padding: 0;
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.guide-card:hover {
  border-color: color-mix(in srgb, var(--terracotta) 40%, var(--line));
  box-shadow: 0 6px 20px color-mix(in srgb, var(--ink) 5%, transparent);
}
.guide-card.extra {
  border-style: dashed;
  background: color-mix(in srgb, var(--sage) 8%, var(--card));
}
.guide-card-portrait {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}
.guide-card-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-card-body { display: flex; flex-direction: column; gap: 0.2rem; }
.guide-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.guide-card-archetype {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0;
}
.guide-card-line {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
  line-height: 1.45;
}
.guides-soft-note {
  font-size: 0.9rem;
  color: var(--faint);
  margin: 0.5rem 0 0;
  max-width: 40rem;
}

@media (max-width: 720px) {
  .guides-featured {
    grid-template-columns: 1fr;
    padding: 1.1rem;
  }
  .guides-featured-portrait {
    max-width: 240px;
    margin-inline: auto;
  }
}

/* Newsletter strip (v0.1.13) */
.newsletter-section {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.newsletter-section h2 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.newsletter-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  max-width: 40rem;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--ink) 4%, transparent);
}
.newsletter-card .lede,
.newsletter-card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: none;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
  margin: 0.75rem 0 0.5rem;
}
.newsletter-form input[type="email"] {
  flex: 1 1 14rem;
  min-width: 12rem;
  font: inherit;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
}
.newsletter-form input[type="email"]:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
  border-color: var(--terracotta);
}
.newsletter-form input[type="email"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.newsletter-form .btn {
  flex: 0 0 auto;
  cursor: pointer;
  font-family: inherit;
}
.newsletter-form .btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.newsletter-micro {
  font-size: 0.88rem;
  color: var(--faint);
  margin: 0.35rem 0 0;
}
.newsletter-status {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  max-width: 40rem;
}
.newsletter-status[hidden] { display: none !important; }
.newsletter-status.is-success {
  background: var(--sage-soft);
  color: var(--ink);
}
.newsletter-status.is-error,
.newsletter-status.is-gated {
  background: var(--amber-soft);
  color: var(--muted);
}
.newsletter-footer-strip {
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 40rem;
}
.newsletter-footer-strip h2 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.newsletter-footer-strip p {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.newsletter-footer-strip .newsletter-form {
  margin-top: 0.35rem;
}

/* Blog */
.blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 1.25rem;
  list-style: none;
  padding: 0;
}
.blog-chips li {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--terracotta);
  background: color-mix(in srgb, var(--terracotta) 12%, var(--cream));
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.blog-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--terracotta);
}
.blog-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}
.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h2 a:hover { color: var(--terracotta); }
.blog-card .abstract {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 1rem;
}
.blog-card .read-more {
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.post-meta {
  font-size: 0.88rem;
  color: var(--faint);
  margin: 0 0 1rem;
}
.post-body {
  max-width: 40rem;
  color: var(--muted);
}
.post-body p { margin: 0 0 1rem; }
.post-body h2 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--ink);
}
.post-body ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.post-body li { margin: 0.35rem 0; }
.post-disclaimer {
  font-size: 0.9rem;
  color: var(--faint);
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  max-width: 40rem;
}
.back-link {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

/* Guest / try sandbox */
.guest-banner {
  background: var(--sage-soft);
  border: 1px solid color-mix(in srgb, var(--sage) 35%, var(--line));
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  margin: 0 0 1.25rem;
  max-width: 40rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}
.guest-sandbox {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 1.25rem 1.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  margin: 1.25rem 0;
  max-width: 40rem;
}
.guest-sandbox-portrait {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--terracotta) 10%, var(--cream));
}
.guest-sandbox-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guest-completeness {
  margin: 0.5rem 0 0;
}
.guest-completeness-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.guest-progress {
  height: 0.65rem;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.guest-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--terracotta);
  border-radius: 999px;
  transition: width 0.4s ease;
}
.guest-limits {
  margin: 1rem 0;
  max-width: 40rem;
}
@media (max-width: 560px) {
  .guest-sandbox { grid-template-columns: 1fr; }
  .guest-sandbox-portrait { max-width: 140px; }
}


/* Thematic photos (Deisy pack 2026-09-04) */
.photo-frame {
  margin: 1.5rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  background: #e8e0d6;
  box-shadow: 0 8px 28px rgba(61, 45, 32, 0.12);
}
.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.hero .photo-frame { margin-top: 1.75rem; }
.blog-card-thumb {
  display: block;
  margin: 0 0 0.85rem;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e0d6;
}
.blog-card-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.post-feature {
  margin: 1.25rem 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  background: #e8e0d6;
}
.post-feature img {
  display: block;
  width: 100%;
  height: auto;
}

/* Final wordmark v4 (Deisy/Marcel 2026-09-04): transparent, terracotta on 2nd i */

.path-quote p {
  margin: 0;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}
.path-quote footer {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--muted);
}

/* Home flyover full-bleed (v0.1.22 — Marcel/Camillo) */
.main--home {
  /* no overflow clip — full-bleed flyover must escape max-width */
}
.hero-flyover--bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -2.25rem;
  margin-bottom: 1.75rem;
  border-radius: 0;
  box-shadow: none;
  background: #2C2416;
}
.hero-flyover--bleed picture {
  display: block;
  width: 100%;
}
.hero-flyover--bleed img {
  width: 100%;
  height: clamp(22rem, 68vh, 44rem);
  object-fit: cover;
  object-position: center 40%;
}
.hero-flyover--bleed .hero-flyover-quote {
  left: max(1.25rem, calc(50% - 20rem));
  right: max(1.25rem, calc(50% - 20rem));
  max-width: 42rem;
}
@media (max-width: 640px) {
  .hero-flyover--bleed {
    margin-top: -2.25rem;
  }
  .hero-flyover--bleed img {
    height: clamp(18rem, 58vh, 28rem);
  }
  .hero-flyover--bleed .hero-flyover-scrim {
    background: linear-gradient(
      to bottom,
      rgba(44, 36, 22, 0.32) 0%,
      rgba(44, 36, 22, 0) 16%,
      rgba(44, 36, 22, 0) 28%,
      rgba(44, 36, 22, 0.82) 100%
    );
  }
  .hero-flyover--bleed .hero-flyover-quote {
    bottom: 10%;
  }
}

/* Home flyover quote overlay (Deisy spec 2026-09-04) */
.hero-flyover {
  position: relative;
  overflow: hidden;
}
.hero-flyover-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(44, 36, 22, 0.28) 0%,
    rgba(44, 36, 22, 0) 18%,
    rgba(44, 36, 22, 0) 35%,
    rgba(44, 36, 22, 0.62) 100%
  );
}
.hero-flyover-quote {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 14%;
  margin: 0 auto;
  max-width: 40ch;
  text-align: center;
  z-index: 1;
}
.hero-flyover-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: #C4785A;
}
.hero-flyover-quote p {
  margin: 0;
  color: #F7F3EE;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 2.1rem);
  line-height: 1.35;
  text-shadow: 0 1px 2px rgba(44, 36, 22, 0.45);
}
.hero-flyover-quote footer {
  margin-top: 0.75rem;
  color: #D4A574;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-style: normal;
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .hero-flyover-scrim {
    background: linear-gradient(
      to bottom,
      rgba(44, 36, 22, 0.28) 0%,
      rgba(44, 36, 22, 0) 18%,
      rgba(44, 36, 22, 0) 30%,
      rgba(44, 36, 22, 0.7) 100%
    );
  }
  .hero-flyover-quote p { font-size: 1.2rem; }
  .hero-flyover-quote { bottom: 12%; }
}

/* Guest try step input */
.guest-step {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(61, 45, 32, 0.08);
}
.guest-step-label {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.guest-step-q {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--ink);
}
.guest-step-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  resize: vertical;
  min-height: 7rem;
}
.guest-step-field textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}
.guest-step-field textarea[aria-invalid="true"] {
  border-color: var(--terracotta);
}
.guest-feedback {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
button.btn {
  font: inherit;
  cursor: pointer;
}

/* Home Karmann second image (Marcel photo) — Deisy sync */
.home-karmann {
  margin: 1.75rem 0 2.5rem;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.home-karmann picture,
.home-karmann > img {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(61, 45, 32, 0.12);
  background: #e8e0d6;
}
.home-karmann img {
  border-radius: 14px;
}
.home-karmann figcaption {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 1rem;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: #2C2416;
  letter-spacing: 0.04em;
}

/* Top loading bar (v0.1.26) — thin progress strip at page top */
#top-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--terracotta), var(--amber));
  box-shadow: 0 0 8px color-mix(in srgb, var(--terracotta) 45%, transparent);
  transition: width 0.35s ease, opacity 0.25s ease;
  pointer-events: none;
}
#top-loading-bar.is-done {
  opacity: 0;
}
