:root {
  --ink: #1a2e24;
  --ink-soft: #3d5348;
  --mist: #e8f0ea;
  --fog: #f4f7f4;
  --sage: #6b8f71;
  --sage-deep: #3f6b4a;
  --gold: #b08a4a;
  --cream-veil: rgba(244, 247, 244, 0.88);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 42rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(107, 143, 113, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(176, 138, 74, 0.08), transparent 50%),
    linear-gradient(180deg, var(--fog) 0%, var(--mist) 45%, #dfe9e2 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(244, 247, 244, 0.82);
  backdrop-filter: blur(12px);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--sage-deep);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: hero-drift 28s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(26, 46, 36, 0.35) 0%,
      rgba(26, 46, 36, 0.25) 35%,
      rgba(26, 46, 36, 0.72) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  padding: clamp(6rem, 18vh, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vh, 5rem);
  color: #f7faf7;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  max-width: 18ch;
  margin-bottom: 1rem;
  color: rgba(247, 250, 247, 0.95);
}

.hero-lede {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 400;
  max-width: 32ch;
  color: rgba(247, 250, 247, 0.78);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: #f7faf7;
  color: var(--ink);
  border: 1px solid #f7faf7;
}

.btn-primary:hover {
  background: transparent;
  color: #f7faf7;
}

.btn-ghost {
  background: transparent;
  color: rgba(247, 250, 247, 0.9);
  border: 1px solid rgba(247, 250, 247, 0.4);
}

.btn-ghost:hover {
  border-color: #f7faf7;
  color: #f7faf7;
}

/* Quotes */
.quotes {
  padding: clamp(4rem, 12vh, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.section-intro {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-intro p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.quote-list {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quote-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(63, 107, 74, 0.18);
}

.quote-item:last-child {
  border-bottom: 1px solid rgba(63, 107, 74, 0.18);
}

.quote-index {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding-top: 0.35rem;
}

.quote-item blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
}

/* Closing */
.closing {
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(4rem, 10vh, 6rem);
}

.closing-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 4.5rem) clamp(1.75rem, 5vw, 3rem);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(63, 107, 74, 0.08), rgba(176, 138, 74, 0.06)),
    var(--cream-veil);
  border-top: 1px solid rgba(63, 107, 74, 0.15);
  border-bottom: 1px solid rgba(63, 107, 74, 0.15);
}

.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.closing-inner p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 34ch;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  padding: 2rem clamp(1.5rem, 5vw, 4rem) 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

.hero-content [data-reveal]:nth-child(1) {
  transition-delay: 0.1s;
}
.hero-content [data-reveal]:nth-child(2) {
  transition-delay: 0.25s;
}
.hero-content [data-reveal]:nth-child(3) {
  transition-delay: 0.4s;
}
.hero-content [data-reveal]:nth-child(4) {
  transition-delay: 0.55s;
}

.quote-item[data-reveal]:nth-child(1) {
  transition-delay: 0.05s;
}
.quote-item[data-reveal]:nth-child(2) {
  transition-delay: 0.12s;
}
.quote-item[data-reveal]:nth-child(3) {
  transition-delay: 0.19s;
}
.quote-item[data-reveal]:nth-child(4) {
  transition-delay: 0.26s;
}

@keyframes hero-drift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(0, -2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image {
    animation: none;
    transform: scale(1.05);
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 600px) {
  .quote-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 2rem 0;
  }

  .quote-index {
    padding-top: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
