/* ============================================================
   DA NANG RIVER RETREAT — Stylesheet
   Aesthetic: coastal editorial, warm sand + deep teal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Color palette */
  --sand-50: #faf7f2;
  --sand-100: #f3ede3;
  --sand-200: #e8ddc9;
  --sand-300: #d4c2a3;
  --sand-700: #6b5a3f;
  --ink-900: #1a1f24;
  --ink-700: #3a4148;
  --ink-500: #6b7480;
  --teal-900: #0f3b3a;
  --teal-700: #1a5957;
  --teal-500: #2d8682;
  --accent: #c8956d;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Misc */
  --border: 1px solid rgba(26, 31, 36, 0.08);
  --shadow-sm: 0 2px 8px rgba(15, 59, 58, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 59, 58, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 59, 58, 0.12);
  --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ============== Typography ============== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 1.25rem;
}

.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-700);
  font-weight: 300;
}

/* ============== Layout ============== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.section--sand { background: var(--sand-100); }
.section--ink { background: var(--ink-900); color: var(--sand-100); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--sand-50); }

/* ============== Header ============== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border);
  transition: padding var(--transition);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-top: 0.35rem;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-700);
  position: relative;
}

.nav a:hover { color: var(--teal-700); }

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--teal-700);
  transition: width var(--transition);
}

.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px; height: 22px;
  position: relative;
}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: var(--ink-900);
  left: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 16px; }

.nav-toggle.is-open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--sand-50);
    flex-direction: column;
    padding: 2.5rem var(--gutter);
    gap: 1.5rem;
    border-bottom: var(--border);
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { font-size: 1.1rem; }
}

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem var(--gutter) clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--ink-900);
}

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

.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 59, 58, 0.15) 0%,
    rgba(15, 59, 58, 0.25) 50%,
    rgba(26, 31, 36, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--sand-50);
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sand-200);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero__title {
  color: var(--sand-50);
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--sand-200);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 560px;
  color: var(--sand-100);
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero__cta-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--teal-900);
  border-color: var(--teal-900);
  color: var(--white);
}

.btn--light {
  background: var(--sand-50);
  border-color: var(--sand-50);
  color: var(--ink-900);
}

.btn--light:hover {
  background: var(--white);
  border-color: var(--white);
}

.btn--outline-light {
  color: var(--sand-50);
  border-color: var(--sand-50);
}

.btn--outline-light:hover {
  background: var(--sand-50);
  color: var(--ink-900);
}

.btn--ghost {
  border-color: var(--ink-900);
  color: var(--ink-900);
}

.btn--ghost:hover {
  background: var(--ink-900);
  color: var(--sand-50);
}

.btn .arrow {
  font-size: 1.2em;
  transition: transform var(--transition);
}

.btn:hover .arrow { transform: translateX(4px); }

/* ============== Stats Strip ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand-300);
  border-top: var(--border);
  border-bottom: var(--border);
}

.stat {
  background: var(--sand-50);
  padding: clamp(2rem, 4vw, 3.5rem) 1.5rem;
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--teal-700);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============== Section Header ============== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-header h2 {
  margin-bottom: 1.25rem;
}

.section-header p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-700);
}

/* ============== Collection Cards ============== */
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.collection-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-900);
  cursor: pointer;
}

.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.collection-card:hover img { transform: scale(1.06); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(15, 59, 58, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--sand-50);
}

.collection-card__count {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.collection-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--sand-50);
  margin-bottom: 0.5rem;
}

.collection-card__subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 300;
  margin-bottom: 1rem;
}

.collection-card__cta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 880px) {
  .collections { grid-template-columns: 1fr; }
  .collection-card { aspect-ratio: 4/3; max-height: 480px; }
}

/* ============== Property Cards (Listing) ============== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

@media (max-width: 720px) {
  .property-grid { grid-template-columns: 1fr; }
}

.property-card {
  display: block;
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: var(--border);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.property-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.property-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.property-card:hover .property-card__media img { transform: scale(1.05); }

.property-card__body {
  padding: 1.75rem;
}

.property-card__type {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.property-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
  color: var(--ink-900);
}

.property-card__area {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.4rem;
}

.property-card__pitch {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--ink-700);
}

.property-card__meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: var(--border);
  font-size: 0.85rem;
  color: var(--ink-500);
}

.property-card__meta strong {
  color: var(--ink-900);
  font-weight: 600;
}

/* ============== Property Detail Page ============== */
.property-hero {
  padding-top: 100px;
}

.property-hero__media {
  position: relative;
  height: clamp(400px, 65vh, 700px);
  overflow: hidden;
}

.property-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.property-meta {
  background: var(--sand-100);
  padding: 2.5rem var(--gutter);
}

.property-meta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 880px) {
  .property-meta__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.property-meta__type {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.property-meta h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}

.property-specs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--ink-700);
}

.property-specs span strong {
  color: var(--ink-900);
  font-weight: 600;
  margin-right: 0.4rem;
}

.property-cta {
  text-align: right;
}

@media (max-width: 880px) {
  .property-cta { text-align: left; }
}

.property-cta__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--teal-700);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.property-cta__price small {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 1.25rem;
}

.booking-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 880px) {
  .booking-buttons { justify-content: flex-start; }
}

.property-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}

@media (max-width: 880px) {
  .property-body { grid-template-columns: 1fr; }
}

.property-body h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}

.property-body h3:first-child { margin-top: 0; }

.property-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.amenities-list,
.highlights-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.amenities-list li,
.highlights-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-700);
}

.amenities-list li::before,
.highlights-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--teal-500);
  border-radius: 50%;
}

@media (max-width: 600px) {
  .amenities-list, .highlights-list { grid-template-columns: 1fr; }
}

.property-sidebar {
  background: var(--sand-100);
  padding: 2rem;
  position: sticky;
  top: 100px;
  align-self: start;
}

.property-sidebar h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--ink-900);
}

.property-sidebar p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--ink-700);
}

.property-sidebar .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

/* ============== Gallery ============== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  transition: opacity var(--transition);
}

.gallery img:hover { opacity: 0.85; }

@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 24, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.is-open { display: flex; }

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--sand-50);
  font-size: 2rem;
  cursor: pointer;
  width: 44px; height: 44px;
}

/* ============== Contact Form ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h2 { margin-bottom: 1.25rem; }

.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--ink-700);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: var(--border);
}

.contact-detail:last-child { border-bottom: var(--border); }

.contact-detail__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 500;
  width: 120px;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--ink-900);
}

.contact-detail__value a:hover { color: var(--teal-700); }

.contact-form {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  border: var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-row--single { grid-template-columns: 1fr; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field { display: flex; flex-direction: column; }

.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand-300);
  background: var(--sand-50);
  color: var(--ink-900);
  transition: border-color var(--transition), background var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-700);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(45, 134, 130, 0.1);
  color: var(--teal-900);
  border-left: 3px solid var(--teal-500);
}

.form-status.is-error {
  display: block;
  background: rgba(200, 80, 80, 0.1);
  color: #8b2c2c;
  border-left: 3px solid #c85050;
}

/* ============== Footer ============== */
.footer {
  background: var(--ink-900);
  color: var(--sand-200);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 221, 201, 0.15);
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--sand-50);
  margin-bottom: 1rem;
}

.footer__about {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--sand-200);
  opacity: 0.85;
  max-width: 380px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand-50);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.6rem; }

.footer a {
  font-size: 0.9rem;
  color: var(--sand-200);
  opacity: 0.85;
}

.footer a:hover { opacity: 1; color: var(--sand-50); }

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--sand-300);
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============== Utility Sections ============== */
.cta-section {
  text-align: center;
  background: var(--teal-900);
  color: var(--sand-50);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
}

.cta-section h2 {
  color: var(--sand-50);
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-section p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--sand-200);
}

/* Reveal animation on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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