/* ---------- Variables ---------- */
:root {
  --cream: #fbf3e8;
  --cream-soft: #fffdf9;
  --blush: #f3e2d3;
  --terracotta: #c9754f;
  --terracotta-dark: #a85e3c;
  --sage: #94a88a;
  --sage-dark: #718067;
  --sage-deep: #4f5c48;
  --brown: #4a372c;
  --body-text: #5c4a3d;
  --white: #ffffff;
  --shadow: 0 20px 45px -18px rgba(74, 55, 44, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--brown);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }

.script-heading {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: var(--terracotta-dark);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a { color: var(--terracotta-dark); text-decoration: none; }

section[id] { scroll-margin-top: 90px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brown);
  color: var(--cream-soft);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section-pad { padding: 5.5rem 0; }

.narrow { max-width: 760px; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

.alt-bg { background: var(--blush); }

.alt-bg-sage {
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--cream-soft);
}
.alt-bg-sage h2, .alt-bg-sage strong { color: var(--white); }
.alt-bg-sage p { color: rgba(255, 255, 255, 0.92); }
.alt-bg-sage .eyebrow { color: var(--cream); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--terracotta-dark);
  margin-bottom: 0.6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.7rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(201, 117, 79, 0.6);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-ghost:hover { background: var(--brown); color: var(--cream-soft); }

.btn-nav { padding: 0.6rem 1.3rem; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 232, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 55, 44, 0.08);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.9rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brown);
}
.brand-icon { width: 30px; height: 30px; color: var(--terracotta); flex-shrink: 0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 600;
  font-size: 0.97rem;
}
.site-nav a:not(.btn) { color: var(--brown); }
.site-nav a:not(.btn):hover { color: var(--terracotta-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--brown);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero { padding: 3.5rem 0 4.5rem; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-sub {
  font-size: 1.2rem;
  max-width: 480px;
  margin-bottom: 1.8rem;
}

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

.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--white);
  color: var(--brown);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px -8px rgba(74, 55, 44, 0.3);
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: 0 14px 30px -18px rgba(74, 55, 44, 0.25);
}
.card-icon { font-size: 2.2rem; display: inline-block; margin-bottom: 0.8rem; }
.card p { margin-bottom: 0; font-size: 0.97rem; }

/* ---------- Disclaimer box ---------- */
.disclaimer-box {
  display: flex;
  gap: 1.1rem;
  background: var(--blush);
  border: 1px dashed var(--terracotta);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.7rem;
  margin: 2.2rem 0 2.4rem;
}
.disclaimer-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.disclaimer-box h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.disclaimer-box p { font-size: 0.95rem; margin-bottom: 0.6rem; }
.disclaimer-box p:last-child { margin-bottom: 0; }

/* ---------- Form ---------- */
.story-form {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.4rem; }
.story-form label {
  display: block;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}
.optional { font-weight: 500; color: var(--body-text); font-size: 0.85rem; }
.required { color: var(--terracotta-dark); }

.story-form input[type="text"],
.story-form input[type="email"],
.story-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(74, 55, 44, 0.2);
  border-radius: 12px;
  background: var(--white);
  color: var(--body-text);
  resize: vertical;
}
.story-form input:focus, .story-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201, 117, 79, 0.18);
}
.field-hint { font-size: 0.85rem; color: var(--body-text); opacity: 0.8; margin-top: 0.35rem; margin-bottom: 0; }

.form-row-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.form-row-checkbox input {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  accent-color: var(--terracotta);
  flex-shrink: 0;
}
.form-row-checkbox label {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--body-text);
}

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.btn-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1rem; }

.form-sent {
  display: none;
  background: rgba(148, 168, 138, 0.18);
  border: 1px solid var(--sage);
  border-radius: var(--radius-md);
  color: var(--sage-deep);
  font-weight: 700;
  text-align: center;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}

/* ---------- Adventure / funnel ---------- */
.adventure-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.adventure-text .btn-primary { margin-top: 0.4rem; }
.adventure-text .field-hint { color: rgba(255,255,255,0.85); }

.adventure-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mail-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(4px);
}
.mail-card span { font-size: 1.8rem; }
.mail-card p { margin: 0; font-weight: 700; color: var(--white); }

/* ---------- Connect ---------- */
/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-deep);
  color: var(--cream-soft);
  padding: 3rem 0 2rem;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.brand-footer { color: var(--cream-soft); }
.brand-footer .brand-icon { color: var(--cream); }
.footer-tagline { font-style: italic; opacity: 0.85; margin-bottom: 0; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; font-weight: 600; margin: 0.4rem 0; }
.footer-nav a { color: var(--cream-soft); opacity: 0.9; }
.footer-nav a:hover { opacity: 1; text-decoration: underline; }
.footer-copy { font-size: 0.85rem; opacity: 0.7; margin-bottom: 0; margin-top: 0.6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .adventure-grid { grid-template-columns: 1fr; }
  .adventure-visual { flex-direction: row; flex-wrap: wrap; }
  .mail-card { flex: 1 1 calc(50% - 0.5rem); flex-direction: column; text-align: center; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-soft);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.9rem;
    border-bottom: 1px solid rgba(74, 55, 44, 0.1);
    display: none;
  }
  .site-nav.open { display: flex; }
  .btn-nav { align-self: center; margin-top: 0.4rem; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-sub { max-width: 100%; }
}

@media (max-width: 600px) {
  .section-pad { padding: 3.5rem 0; }
  .card-grid { grid-template-columns: 1fr; }
  .story-form { padding: 1.6rem; }
  .disclaimer-box { flex-direction: column; }
  .mail-card { flex: 1 1 100%; flex-direction: row; text-align: left; }
}
