/* =================================================================
   ALUNA PROPERTIES — Site Stylesheet
   Boutique hospitality, quietly built in Toronto.
   ================================================================= */

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

:root {
  --aluna-ochre:       #946800;
  --aluna-ochre-deep:  #6E4D00;
  --aluna-ochre-warm:  #B48433;
  --aluna-forest:      #475F48;
  --aluna-forest-deep: #2F4331;
  --aluna-sage:        #758A6B;
  --aluna-sage-soft:   #8D9D83;
  --aluna-sage-pale:   #C9D1BF;
  --aluna-bone:        #FFFDF8;
  --aluna-cream:       #F6F1E6;
  --aluna-cream-deep:  #EDE5D2;
  --aluna-stone-100:   #E8E3D6;
  --aluna-stone-200:   #C9C2B0;
  --aluna-stone-400:   #6C675B;
  --aluna-stone-500:   #3D3A33;
  --aluna-ink:         #1F1D18;
  --aluna-linen:       #FAF7EF;
  --display: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  --sans: 'Outfit', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--aluna-stone-500);
  background: var(--aluna-bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--aluna-ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.6rem); line-height: 1.04; }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.15; }
p  { margin: 0 0 1.2em; }

a {
  color: var(--aluna-ochre);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color .18s ease;
}
a:hover { color: var(--aluna-ochre-deep); }

/* Layout helpers */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aluna-ochre);
  margin-bottom: 1.2em;
  font-weight: 500;
}
.lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--aluna-stone-500);
  max-width: 56ch;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--aluna-ochre);
  color: var(--aluna-bone);
  border-color: var(--aluna-ochre);
}
.btn--primary:hover {
  background: var(--aluna-ochre-deep);
  border-color: var(--aluna-ochre-deep);
  color: var(--aluna-bone);
}
.btn--ghost {
  background: transparent;
  color: var(--aluna-ochre);
  border-color: var(--aluna-ochre);
}
.btn--ghost:hover {
  background: var(--aluna-ochre);
  color: var(--aluna-bone);
}
.btn--ghost-light {
  background: transparent;
  color: var(--aluna-cream);
  border-color: var(--aluna-cream);
}
.btn--ghost-light:hover {
  background: var(--aluna-cream);
  color: var(--aluna-forest-deep);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--aluna-stone-100);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--aluna-ink);
  text-decoration: none;
  border: 0;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand img {
  width: 44px;
  height: 44px;
  display: block;
}
.brand:hover { color: var(--aluna-ochre); }
.brand--on-dark { color: var(--aluna-cream); }
.brand--on-dark:hover { color: var(--aluna-ochre-warm); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--aluna-ink);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
  border: 0;
  padding: 6px 0;
}
.nav a:hover, .nav a.active { color: var(--aluna-ochre); }
.nav .btn { padding: 10px 20px; font-size: 0.74rem; }

.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  background: var(--aluna-forest-deep);
  color: var(--aluna-cream);
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(180, 132, 51, 0.15), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 1080px; margin: 0 auto; padding: 0 32px; text-align: center; }
.hero h1 { color: var(--aluna-cream); margin-bottom: 0.6em; }
.hero__sub {
  font-size: 1.2rem;
  color: var(--aluna-sage-pale);
  max-width: 56ch;
  margin: 0 auto 2.4em;
}
.hero .btn { padding: 16px 36px; }

/* Section: Stays grid */
.stays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.stay-card {
  background: var(--aluna-cream);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--aluna-stone-100);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stay-card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -22px rgba(31, 29, 24, 0.25); }
.stay-card__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--aluna-sage), var(--aluna-forest));
  position: relative;
}
.stay-card__image::after {
  content: attr(data-label);
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--aluna-cream);
  font-style: italic;
}
.stay-card__body { padding: 24px 24px 28px; }
.stay-card h3 { color: var(--aluna-forest-deep); margin-bottom: 0.4em; }
.stay-card p { font-size: 0.97rem; margin-bottom: 0; }

/* Section: 3-up value props */
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 56px;
  margin-top: 56px;
}
.prop h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--aluna-forest-deep);
  margin-bottom: 0.5em;
}
.prop__num {
  font-family: var(--display);
  font-style: italic;
  color: var(--aluna-ochre);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 12px;
}

/* Section: Process */
.process-section { background: var(--aluna-cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 56px;
  counter-reset: step;
}
.process-step { counter-increment: step; }
.process-step::before {
  content: '0' counter(step);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--aluna-ochre);
  display: block;
  margin-bottom: 12px;
}
.process-step h3 { font-size: 1.35rem; color: var(--aluna-forest-deep); }

/* Section: Earnings teaser */
.earnings {
  background: var(--aluna-forest);
  color: var(--aluna-cream);
}
.earnings h2 { color: var(--aluna-cream); }
.earnings p { color: var(--aluna-sage-pale); }
.earnings-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.earnings-form {
  background: var(--aluna-bone);
  color: var(--aluna-stone-500);
  border-radius: 16px;
  padding: 36px;
}
.earnings-form h3 { color: var(--aluna-ink); font-size: 1.3rem; margin-bottom: 0.4em; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aluna-stone-400);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--aluna-stone-200);
  border-radius: 8px;
  background: var(--aluna-bone);
  color: var(--aluna-ink);
  font-family: var(--sans);
  font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--aluna-ochre);
}

/* Section: FAQ */
.faq-list { margin-top: 48px; max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--aluna-stone-100);
  padding: 24px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--aluna-ink);
  font-weight: 400;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--aluna-ochre);
  font-size: 1.6rem;
  font-family: var(--sans);
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-top: 16px; max-width: 60ch; }

/* CTA band */
.cta-band {
  background: var(--aluna-cream-deep);
  text-align: center;
  padding: 100px 0;
}
.cta-band h2 {
  color: var(--aluna-forest-deep);
  margin-bottom: 0.3em;
}
.cta-band p { max-width: 50ch; margin: 0 auto 32px; }

/* Footer */
.site-footer {
  background: var(--aluna-forest-deep);
  color: var(--aluna-sage-pale);
  padding: 72px 0 40px;
}
.site-footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.site-footer h4 {
  color: var(--aluna-cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a {
  color: var(--aluna-sage-pale);
  border: 0;
  font-size: 0.94rem;
}
.site-footer a:hover { color: var(--aluna-ochre-warm); }
.site-footer__brand {
  font-family: var(--display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--aluna-cream);
  margin-bottom: 12px;
}
.site-footer__legal {
  border-top: 1px solid rgba(201, 209, 191, 0.18);
  margin-top: 56px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--aluna-sage-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Page hero variant for inner pages */
.page-hero {
  background: var(--aluna-cream);
  padding: 120px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--aluna-forest-deep); }
.page-hero p { color: var(--aluna-stone-500); max-width: 56ch; margin: 0 auto; }

/* Responsive */
@media (max-width: 880px) {
  .nav { gap: 14px; }
  .nav > a:not(.btn) { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--aluna-stone-200);
    border-radius: 8px;
    background: transparent;
    color: var(--aluna-ink);
    padding: 8px 12px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .nav.is-open > a { display: block; }
  .nav.is-open {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--aluna-bone);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 32px 24px;
    border-bottom: 1px solid var(--aluna-stone-100);
  }
  .earnings-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 96px 0 80px; }
}
@media (max-width: 520px) {
  .site-footer .wrap { grid-template-columns: 1fr; }
}

/* ==================================================================
   EARNINGS CALCULATOR (interactive)
   ================================================================== */
.calculator {
  background: var(--aluna-bone);
  color: var(--aluna-stone-500);
  border-radius: 18px;
  padding: 44px;
  box-shadow: 0 30px 60px -32px rgba(31, 29, 24, 0.35);
  border: 1px solid var(--aluna-stone-100);
}
.calculator__title {
  color: var(--aluna-ink);
  font-size: 1.6rem;
  margin-bottom: 0.25em;
}
.calculator__intro {
  font-size: 0.95rem;
  color: var(--aluna-stone-400);
  margin-bottom: 28px;
  max-width: 42ch;
}

/* Segmented buttons for property type and neighbourhood */
.calc-group { margin-bottom: 26px; }
.calc-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--aluna-stone-400);
  margin-bottom: 10px;
  font-weight: 500;
}
.calc-segments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px;
}
.calc-segments button {
  appearance: none;
  border: 1px solid var(--aluna-stone-200);
  background: var(--aluna-bone);
  color: var(--aluna-stone-500);
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .18s ease;
}
.calc-segments button:hover {
  border-color: var(--aluna-ochre);
  color: var(--aluna-ochre);
}
.calc-segments button.is-active {
  background: var(--aluna-ochre);
  color: var(--aluna-bone);
  border-color: var(--aluna-ochre);
}

/* Result row */
.calc-result {
  margin-top: 14px;
  padding: 28px;
  background: var(--aluna-cream);
  border-radius: 14px;
}
.calc-result__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.calc-result__label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--aluna-stone-400);
  font-weight: 500;
}
.calc-result__amount {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--aluna-ochre);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calc-result__sub {
  font-size: 0.92rem;
  color: var(--aluna-stone-400);
  margin-top: 8px;
}

/* Comparison chart (horizontal bars) */
.calc-chart {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--aluna-stone-100);
}
.calc-chart__title {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--aluna-stone-400);
  font-weight: 500;
  margin-bottom: 14px;
}
.bar-row { margin-bottom: 14px; }
.bar-row:last-child { margin-bottom: 0; }
.bar-row__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.bar-row__name {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--aluna-stone-500);
  font-weight: 500;
}
.bar-row__val {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--aluna-ink);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.bar-row__track {
  width: 100%;
  height: 10px;
  background: var(--aluna-stone-100);
  border-radius: 6px;
  overflow: hidden;
}
.bar-row__fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.bar-row__fill--ochre { background: var(--aluna-ochre); }
.bar-row__fill--forest { background: var(--aluna-sage); }
.bar-row__caption {
  font-size: 0.82rem;
  color: var(--aluna-stone-400);
  margin-top: 4px;
}

/* Year-at-a-glance seasonal SVG chart */
.season-chart {
  background: var(--aluna-bone);
  border-radius: 18px;
  padding: 36px 32px 28px;
  border: 1px solid var(--aluna-stone-100);
}
.season-chart__title {
  font-size: 1.35rem;
  color: var(--aluna-ink);
  margin-bottom: 6px;
}
.season-chart__sub {
  font-size: 0.92rem;
  color: var(--aluna-stone-400);
  margin-bottom: 24px;
}
.season-chart svg { display: block; width: 100%; height: auto; }
.season-chart .axis-text {
  font-family: var(--sans);
  font-size: 11px;
  fill: var(--aluna-stone-400);
}
.season-chart .grid-line {
  stroke: var(--aluna-stone-100);
  stroke-width: 1;
}
.season-chart .area-fill { fill: var(--aluna-ochre); fill-opacity: 0.15; }
.season-chart .area-line { stroke: var(--aluna-ochre); stroke-width: 2.5; fill: none; }
.season-chart .area-dot { fill: var(--aluna-ochre); }

/* Override earnings-grid to fit calculator instead of plain form */
@media (max-width: 880px) {
  .calculator { padding: 28px; }
  .calc-result__amount { font-size: 2.1rem; }
}


/* ================================================================
   DESIGN A — EDITORIAL DIRECTION
   Magazine masthead + full-bleed sun-lit photo hero
   Photographic stay cards, editorial pacing
   ================================================================ */

/* --- Editorial header / Masthead ------------------------------- */
.masthead {
  background: var(--aluna-bone);
  border-bottom: 1px solid var(--aluna-stone-100);
  position: relative;
  z-index: 5;
}
.masthead__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px 14px;
}
.masthead__rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aluna-stone-400);
  font-weight: 500;
}
.masthead__rail a { color: inherit; border: 0; }
.masthead__rail a:hover { color: var(--aluna-ochre); }
.masthead__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 18px 0 8px;
}
.masthead__title img { width: 56px; height: 56px; display: block; }
.masthead__title h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: -0.015em;
  color: var(--aluna-ink);
  line-height: 0.95;
  margin: 0;
}
.masthead__rule {
  height: 1px;
  background: var(--aluna-stone-200);
  margin: 6px 0 10px;
}
.masthead__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 0 2px;
}
.masthead__nav a {
  color: var(--aluna-stone-500);
  border: 0;
  padding: 4px 0;
}
.masthead__nav a:hover,
.masthead__nav a.active { color: var(--aluna-ochre); }

@media (max-width: 720px) {
  .masthead__inner { padding: 14px 22px 10px; }
  .masthead__rail { font-size: 0.62rem; letter-spacing: 0.14em; }
  .masthead__title { gap: 14px; margin: 14px 0 6px; }
  .masthead__title img { width: 40px; height: 40px; }
  .masthead__nav { gap: 18px; font-size: 0.66rem; }
}

/* --- Editorial hero (full-bleed sun-lit photo) ----------------- */
.hero-editorial {
  position: relative;
  width: 100%;
  min-height: 78vh;
  background-color: var(--aluna-stone-200);
  background-size: cover;
  background-position: center 38%;
  overflow: hidden;
  isolation: isolate;
}
.hero-editorial::after {
  /* warm protection gradient at the bottom for legibility */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 29, 24, 0) 0%,
    rgba(31, 29, 24, 0) 40%,
    rgba(31, 29, 24, 0.55) 95%,
    rgba(31, 29, 24, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-editorial__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 32px 56px;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-editorial__kicker {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.84);
  font-weight: 500;
  margin-bottom: 14px;
}
.hero-editorial__h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1.0;
  color: var(--aluna-bone);
  letter-spacing: -0.015em;
  max-width: 16ch;
  margin: 0 0 18px;
  text-shadow: 0 2px 28px rgba(31, 29, 24, 0.35);
}
.hero-editorial__sub {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(255, 253, 248, 0.92);
  max-width: 50ch;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 26px;
}
.hero-editorial__cta { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.hero-editorial__cta .btn--primary { background: var(--aluna-ochre); }
.hero-editorial__cta .btn--ghost-light {
  background: transparent;
  color: var(--aluna-bone);
  border: 1px solid rgba(255, 253, 248, 0.6);
  padding: 13px 27px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
}
.hero-editorial__cta .btn--ghost-light:hover {
  background: rgba(255, 253, 248, 0.1);
  border-color: var(--aluna-bone);
}
/* Issue / dateline strip at the very top of the photo */
.hero-editorial__dateline {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 24px 32px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.82);
  font-weight: 500;
}

/* --- Editorial section pacing --------------------------------- */
.section--editorial { padding: 112px 32px; }
@media (max-width: 720px) { .section--editorial { padding: 72px 22px; } }

.section-header--editorial {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 56px;
}
.section-header--editorial .eyebrow { color: var(--aluna-ochre); }
.section-header--editorial h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 6px auto 14px;
}
.section-header--editorial .lead { margin: 0 auto; }
.section-rule {
  height: 1px;
  width: 100%;
  background: var(--aluna-stone-200);
  margin: 0;
}

/* --- Photographic stay cards ---------------------------------- */
.stay-card-photo {
  background: transparent;
  border: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.stay-card-photo__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--aluna-stone-200);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
}
.stay-card-photo__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 29, 24, 0.25) 100%);
}
.stay-card-photo__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(255, 253, 248, 0.94);
  color: var(--aluna-ink);
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
}
.stay-card-photo__num {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aluna-stone-400);
  font-weight: 500;
}
.stay-card-photo__name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--aluna-ink);
  margin: 4px 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.stay-card-photo__sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--aluna-stone-400);
  margin: 0;
  line-height: 1.5;
}

/* --- Editorial pull quote ------------------------------------- */
.pull-quote {
  background: var(--aluna-cream);
  padding: 96px 32px;
  text-align: center;
}
.pull-quote__inner { max-width: 60ch; margin: 0 auto; }
.pull-quote__mark {
  font-family: var(--display);
  color: var(--aluna-ochre);
  font-size: 4rem;
  line-height: 0.4;
  margin-bottom: 18px;
  font-style: italic;
}
.pull-quote__text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.3;
  color: var(--aluna-ink);
  margin: 0 0 18px;
}
.pull-quote__attribution {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aluna-stone-400);
  font-weight: 500;
}
@media (max-width: 720px) { .pull-quote { padding: 64px 22px; } }

/* --- Editorial numbered props (large display numbers) -------- */
.props-grid--editorial .prop {
  border-top: 1px solid var(--aluna-stone-200);
  padding-top: 28px;
}
.props-grid--editorial .prop__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 3.2rem;
  color: var(--aluna-ochre);
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}

/* --- Editorial inner-page hero (cream + masthead serif) ------ */
.page-hero--editorial {
  background: var(--aluna-cream);
  padding: 112px 32px 72px;
  text-align: center;
  border-bottom: 1px solid var(--aluna-stone-100);
}
.page-hero--editorial .eyebrow { color: var(--aluna-ochre); }
.page-hero--editorial h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.0;
  margin: 8px auto 18px;
  color: var(--aluna-ink);
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.page-hero--editorial p {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--aluna-stone-500);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.5;
}
@media (max-width: 720px) { .page-hero--editorial { padding: 72px 22px 56px; } }

