@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f7f1eb;
  --surface: #fffdfb;
  --surface-soft: #f4e6df;
  --surface-dark: #5a2032;
  --primary: #8c2f4b;
  --primary-dark: #6f2038;
  --primary-soft: #f6dce2;
  --text: #26181d;
  --text-muted: #6d5a62;
  --border: rgba(140, 47, 75, 0.12);
  --shadow-sm: 0 10px 24px rgba(61, 22, 35, 0.08);
  --shadow-md: 0 18px 48px rgba(61, 22, 35, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --content: 1180px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(16px, 1rem, 18px);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  z-index: 2000;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  width: min(92%, var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #5a2032;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.wordmark-kicker {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255, 241, 245, 0.9);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.wordmark-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 2.4vw, 2.5rem);
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7fa;
  box-shadow: none;
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.site-nav {
  display: none;
  grid-column: 1 / -1;
  background: #5a2032;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: none;
}

.site-nav.show { display: grid; gap: 6px; }

.site-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff5f8;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transform: translateX(2px);
}

.hero-section {
  padding: clamp(28px, 5vw, 80px) 0 clamp(40px, 6vw, 90px);
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow,
.section-tag,
.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow,
.section-tag { margin-bottom: 16px; }

.hero-copy h1,
.section-head h2,
.split-copy h2,
.intro-block h2,
.quote-panel h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  margin-bottom: 18px;
}

.hero-copy p,
.intro-block p,
.split-copy p,
.story-body p,
.site-footer p,
.quote-panel p {
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover { background: var(--primary-dark); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 300ms ease, filter 300ms ease;
}

.hero-visual:hover img {
  transform: scale(1.02);
  filter: saturate(1.03);
}

.trust-strip {
  margin-top: -8px;
  padding-bottom: 10px;
}

.trust-grid {
  display: grid;
  gap: 16px;
}

.trust-card,
.story-card,
.quote-panel,
.intro-block,
.split-copy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-card {
  padding: 22px;
}

.trust-card strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-card span { color: var(--text-muted); font-size: 0.95rem; }

.section {
  padding: clamp(42px, 6vw, 90px) 0;
}

.intro-block {
  padding: 28px;
}

.section-head {
  margin-bottom: 24px;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head h2,
.intro-block h2,
.split-copy h2 {
  font-size: clamp(1.95rem, 4.4vw, 3.4rem);
}

.text-link {
  color: var(--primary-dark);
  font-weight: 700;
  transition: color var(--transition), transform var(--transition);
}

.text-link:hover {
  color: var(--primary);
  transform: translateX(2px);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.story-card {
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.story-card:hover,
.quote-panel:hover,
.intro-block:hover,
.split-copy:hover,
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.story-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.03);
}

.story-body {
  padding: 22px;
}

.story-body h3 {
  font-size: 1.2rem;
  margin: 12px 0 8px;
}

.alt-section {
  background: linear-gradient(180deg, transparent 0%, rgba(140, 47, 75, 0.04) 100%);
}

.split-layout {
  display: grid;
  gap: 18px;
}

.split-copy,
.quote-panel {
  padding: 28px;
}

.point-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.point-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 600;
}

.quote-panel {
  background: var(--surface-dark);
  color: #fff;
  border: none;
}

.quote-panel p { color: #f1d8df; font-size: 1rem; }
.compact-actions { margin-top: 24px; }
.quote-panel .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}

.site-footer {
  padding: 48px 0 28px;
  background: #32131d;
  color: #f1dfe5;
  margin-top: 28px;
}

.footer-shell {
  display: grid;
  gap: 18px;
}

.footer-shell strong {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-links a {
  color: #e4cdd4;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

@media (min-width: 760px) {
  .hero-grid,
  .split-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .trust-grid,
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .header-shell {
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 22px 0;
  }

  .menu-toggle { display: none; }

  .site-nav {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    grid-column: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 14px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 4.5;
  }
}
