:root {
  --bg: #f6efe2;
  --surface: rgba(255, 251, 245, 0.86);
  --surface-strong: #fffaf1;
  --ink: #23160f;
  --muted: #65554a;
  --line: rgba(35, 22, 15, 0.12);
  --terracotta: #cb6b4f;
  --forest: #3f725d;
  --sun: #efbb57;
  --sky: #8db8d9;
  --plum: #8e5f7f;
  --shadow: 0 24px 60px rgba(74, 45, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 187, 87, 0.35), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(141, 184, 217, 0.4), transparent 25%),
    linear-gradient(180deg, #f3ead8 0%, #f8f3ea 36%, #fefcf8 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 48px;
}

.hero,
.story-band,
.feature-section,
.gallery-section,
.journey-section {
  backdrop-filter: blur(12px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  border-radius: 32px;
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(203, 107, 79, 0.16);
  filter: blur(4px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 54px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--terracotta), #f09f69);
  color: #fff9f2;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-name,
.eyebrow,
.card-label,
.feature-number,
.journey-step span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 800;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: end;
}

.eyebrow,
.card-label,
.feature-number {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--terracotta);
}

.hero h1,
.section-heading h2,
.journey-step h3,
.feature-card h3 {
  font-family: 'Fraunces', serif;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.93;
  margin: 14px 0 20px;
  max-width: 10ch;
}

.hero-text,
.story-band p,
.feature-card p,
.section-note,
.journey-step p,
.snapshot-list li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-primary,
.cta-secondary {
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.cta-primary {
  background: var(--ink);
  color: #fffaf1;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.cta-primary:hover,
.cta-secondary:hover,
.topbar-links a:hover {
  transform: translateY(-2px);
}

.hero-card {
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 233, 0.96));
  border: 1px solid rgba(35, 22, 15, 0.08);
}

.snapshot-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.snapshot-list li + li {
  margin-top: 10px;
}

.story-band,
.feature-section,
.gallery-section,
.journey-section {
  border-radius: 28px;
  margin-top: 22px;
  padding: 28px;
}

.story-band p {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  max-width: 58ch;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.02;
  max-width: 13ch;
}

.split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 18px;
}

.feature-grid,
.journey-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(35, 22, 15, 0.09);
}

.feature-card h3 {
  margin: 14px 0 10px;
  font-size: 1.7rem;
  line-height: 1.05;
}

.accent-sand {
  background: #fff4d8;
}

.accent-coral {
  background: #ffd8cc;
}

.accent-sky {
  background: #d8edfa;
}

.accent-leaf {
  background: #dff0e4;
}

.accent-plum {
  background: #eedced;
}

.accent-gold {
  background: #fff0c2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  background: var(--surface-strong);
  border: 1px solid rgba(35, 22, 15, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-copy {
  padding: 18px;
}

.gallery-copy h3 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
}

.gallery-copy p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(35, 22, 15, 0.06);
  font-size: 0.85rem;
  font-weight: 700;
}

.journey-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey-step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 241, 228, 0.86));
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(35, 22, 15, 0.08);
}

.journey-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.journey-step h3 {
  font-size: 1.45rem;
  margin: 14px 0 8px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-heading,
  .feature-grid,
  .gallery-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    margin: 12px auto 28px;
  }

  .hero,
  .story-band,
  .feature-section,
  .gallery-section,
  .journey-section {
    padding: 20px;
    border-radius: 22px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }

  .topbar-links {
    gap: 12px;
  }

  .hero-text,
  .story-band p,
  .section-note,
  .gallery-copy p,
  .feature-card p,
  .journey-step p {
    font-size: 0.98rem;
  }
}