:root {
  --bg: #f4ede4;
  --bg-soft: #f8f2ea;
  --surface: rgba(255, 250, 244, 0.72);
  --surface-strong: rgba(255, 252, 248, 0.86);
  --ink: #1a1512;
  --muted: #6b615a;
  --line: rgba(73, 56, 44, 0.12);
  --accent: #8e6f60;
  --shadow: 0 26px 80px rgba(34, 24, 18, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(193, 169, 156, 0.24), transparent 24%),
    radial-gradient(circle at 85% 14%, rgba(133, 147, 166, 0.12), transparent 18%),
    linear-gradient(180deg, #f8f3ec 0%, #f0e7dd 46%, #f7f2eb 100%);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 88%);
}

.frame,
.section,
.footer-inner {
  width: min(var(--content-width), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  padding-top: 18px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand,
.site-nav a,
.button {
  text-decoration: none;
}

.brand {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-main {
  padding-bottom: 34px;
}

.section {
  margin-top: 44px;
}

.hero {
  margin-top: 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: stretch;
}

.hero-grid > *,
.journey-grid > *,
.moments-grid > *,
.thoughts-grid > *,
.about-grid > *,
.future-panel > *,
.contact-card > * {
  min-width: 0;
}

.hero-panel,
.intro-card,
.story-card,
.thought-card,
.about-panel,
.future-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel-primary {
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  background:
    linear-gradient(180deg, rgba(18, 18, 20, 0.08), rgba(18, 18, 20, 0.78)),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

.hero-panel-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 12, 12, 0.08), rgba(14, 12, 12, 0.72)),
    linear-gradient(90deg, rgba(14, 12, 12, 0.34), transparent 48%);
}

.hero-panel-copy,
.hero-video-copy,
.intro-card,
.future-panel,
.contact-card,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero-panel-copy {
  max-width: 760px;
  color: #fffaf5;
}

.eyebrow,
.card-kicker,
.form-note {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.eyebrow,
.card-kicker {
  color: rgba(255, 244, 237, 0.8);
}

.hero-panel-copy h1,
.hero-video-copy h2,
.intro-heading h2,
.section-heading h2,
.about-copy h2,
.future-copy h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.9;
  margin: 0;
}

.hero-panel-copy h1 {
  font-size: clamp(4rem, 8vw, 7.2rem);
}

.hero-text,
.story-card p,
.intro-body p,
.about-panel p,
.future-copy p,
.future-list p,
.contact-copy p,
.thought-card p {
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  max-width: 560px;
  color: rgba(255, 246, 240, 0.88);
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.site-nav a:hover,
.story-card:hover,
.thought-card:hover,
.moment-tile:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: rgba(255, 248, 242, 0.94);
}

.button-secondary {
  color: #fffaf5;
  border-color: rgba(255, 245, 239, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel-video {
  min-height: 720px;
  background: #13100f;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 10, 0.08), rgba(11, 10, 10, 0.26) 44%, rgba(11, 10, 10, 0.82)),
    linear-gradient(90deg, rgba(11, 10, 10, 0.3), transparent 50%);
}

.hero-video-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 26px 30px;
  color: #fffaf5;
}

.hero-video-copy h2 {
  max-width: 4.8ch;
  font-size: clamp(3.8rem, 7vw, 5.3rem);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.intro {
  margin-top: -22px;
}

.intro-card,
.future-panel,
.contact-card,
.about-panel,
.story-card,
.thought-card {
  background: var(--surface);
}

.intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 30px;
}

.intro-heading h2,
.section-heading h2,
.about-copy h2,
.future-copy h2,
.contact-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.intro-body {
  color: var(--muted);
}

.section-stack {
  margin-top: 54px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading .eyebrow,
.intro-heading .eyebrow,
.about-copy .eyebrow,
.future-copy .eyebrow,
.contact-copy .eyebrow {
  color: var(--accent);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.story-card {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.story-card-feature {
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(13, 13, 14, 0.14), rgba(13, 13, 14, 0.72)),
    url("https://images.unsplash.com/photo-1517479149777-5f3b1511d5ad?auto=format&fit=crop&w=1400&q=80")
      center/cover;
  color: #fffaf5;
}

.story-card h3 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.05;
  font-weight: 600;
}

.story-card:not(.story-card-feature) .card-kicker {
  color: var(--accent);
}

.moments-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  gap: 16px;
  grid-auto-rows: 250px;
}

.moment-tile {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: end;
  padding: 20px;
  color: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.moment-tile:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.12), rgba(12, 12, 12, 0.66)),
    url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.moment-tile:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.1), rgba(12, 12, 12, 0.62)),
    url("https://images.unsplash.com/photo-1474302770737-173ee21bab63?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.moment-tile:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.14), rgba(12, 12, 12, 0.68)),
    url("https://images.unsplash.com/photo-1499856871958-5b9627545d1a?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.moment-tile:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.14), rgba(12, 12, 12, 0.72)),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1400&q=80")
      center/cover;
}

.moment-tile-tall {
  grid-row: span 2;
}

.moment-tile-wide {
  grid-column: span 2;
}

.moment-tile span {
  max-width: 280px;
  line-height: 1.45;
}

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

.thought-card {
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.thought-card span,
.future-list span {
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.2em;
}

.about-grid,
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.about-panel,
.future-panel,
.contact-card {
  padding: 30px;
}

.about-panel {
  color: var(--muted);
}

.future-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.future-list {
  display: grid;
  gap: 14px;
}

.future-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: rgba(255, 255, 255, 0.46);
}

.contact-copy {
  align-self: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  width: min(100%, 500px);
  max-width: 100%;
  margin-left: auto;
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  font-size: 0.94rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(53, 43, 38, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.contact-form textarea {
  min-height: 176px;
  resize: none;
}

.contact-form .button {
  justify-self: start;
}

.form-note {
  min-height: 1em;
  margin: 2px 0 0;
  color: var(--accent);
}

.site-footer {
  padding: 26px 0 34px;
  color: var(--muted);
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 6px 0;
}

.footer-note {
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .intro-card,
  .about-grid,
  .future-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 18px;
  }

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

  .story-card-feature {
    grid-column: span 2;
  }

  .hero-panel-primary,
  .hero-panel-video {
    min-height: 640px;
  }

  .section {
    margin-top: 38px;
  }

  .intro {
    margin-top: -12px;
  }

  .moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .moment-tile-tall,
  .moment-tile-wide {
    grid-row: span 1;
  }

  .moment-tile-wide {
    grid-column: span 2;
  }

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

  .thought-card:last-child {
    grid-column: span 2;
  }

  .contact-form {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    padding-top: 10px;
  }

  .frame,
  .section,
  .footer-inner {
    width: min(var(--content-width), calc(100% - 18px));
  }

  .header-inner {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 14px;
  }

  .hero-panel-primary,
  .hero-panel-video {
    min-height: 560px;
    padding: 24px;
    border-radius: 28px;
  }

  .hero-grid,
  .journey-grid,
  .thoughts-grid,
  .about-grid,
  .future-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-panel-copy h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .hero-video-copy {
    padding: 18px 18px 20px;
  }

  .hero-video-copy h2 {
    font-size: clamp(2.8rem, 12vw, 4.1rem);
  }

  .intro {
    margin-top: 8px;
  }

  .intro-card,
  .about-panel,
  .future-panel,
  .contact-card {
    padding: 22px;
    border-radius: 26px;
  }

  .intro-heading h2,
  .section-heading h2,
  .about-copy h2,
  .future-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .story-card {
    min-height: 260px;
  }

  .story-card-feature,
  .thought-card:last-child {
    grid-column: span 1;
  }

  .moments-grid {
    grid-template-columns: 1fr;
  }

  .moment-tile-wide {
    grid-column: span 1;
  }
}
