/* ============================================================
   Ecosystem Landscaping & Design — Coronado coastal-rustic
   ============================================================ */

:root {
  /* palette — existing greens punched up */
  --forest:     #1F3A28;
  --forest-2:   #14271B;          /* darker, for deep sections */
  --moss:       #4A6B3A;
  --leaf:       #7CA85C;
  --leaf-hi:    #92BE70;          /* hover state */
  --sand:       #E8DCC4;
  --sand-2:     #F1E9D6;          /* lighter sand for surfaces */
  --cream:      #FBF8F1;
  --ink:        #1A1A1A;
  --stone:      #5C5C5C;
  --stone-2:    #8A8A8A;
  --terracotta: #C8704F;
  --line:       #E5DFCD;
  --shadow:     0 1px 2px rgba(20,39,27,0.04), 0 8px 24px rgba(20,39,27,0.06);
  --shadow-lg:  0 4px 12px rgba(20,39,27,0.08), 0 24px 64px rgba(20,39,27,0.10);

  /* type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 12px;
  --ease: cubic-bezier(.4,0,.2,1);
  --t: 0.25s var(--ease);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--moss); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding-left: 1.25rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--cream); padding: 12px 20px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--moss); }
p { margin: 0 0 1.1em; }
.lead { font-size: 1.18rem; color: var(--stone); max-width: 60ch; }
.eyebrow {
  display: inline-block;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 1em;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--moss); vertical-align: middle; margin-right: 12px;
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 9vw, 120px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--dark { background: var(--forest-2); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .eyebrow, .section--dark .eyebrow::before { color: var(--leaf); background: var(--leaf); }
.section--dark .eyebrow::before { background: var(--leaf); }
.section--sand { background: var(--sand-2); }

.grid { display: grid; gap: clamp(20px, 3vw, 40px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-3.keep-2-md, .grid-4.keep-2-md { grid-template-columns: repeat(2, 1fr); }
}

/* asymmetric split */
.split {
  display: grid; gap: clamp(28px, 5vw, 80px); align-items: center;
  grid-template-columns: 5fr 7fr;
}
.split--reverse { grid-template-columns: 7fr 5fr; }
@media (max-width: 900px) { .split, .split--reverse { grid-template-columns: 1fr; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--t);
  white-space: nowrap;
}
.btn--primary { background: var(--leaf); color: var(--forest-2); }
.btn--primary:hover { background: var(--leaf-hi); color: var(--forest-2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--forest); }
.btn--light:hover { background: var(--sand); color: var(--forest); }
.btn--lg { padding: 18px 32px; font-size: 1rem; }

.arrow::after { content: "→"; transition: transform var(--t); }
.arrow:hover::after { transform: translateX(4px); }

/* ---------- topbar (above header) ---------- */
.topbar {
  background: var(--forest-2);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px clamp(16px, 3vw, 32px);
  gap: 16px;
}
.topbar__phone {
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.topbar__phone:hover { color: var(--leaf-hi); }
.topbar__creds {
  color: rgba(251,248,241,0.85);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .topbar__inner { flex-direction: column; gap: 2px; padding: 6px 0; text-align: center; }
  .topbar__creds { font-size: 0.68rem; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.nav__brand {
  display: flex; align-items: center;
  line-height: 0;
}
.nav__brand img {
  display: block;
  height: clamp(40px, 5vw, 56px);
  width: auto;
}
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a, .nav__dropdown-trigger { font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--forest); }
.nav__cta { margin-left: 18px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--forest); }

/* dropdown */
.nav__item { position: relative; }
.nav__item--has-dropdown > a,
.nav__dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit;
}
.nav__caret { font-size: 0.7em; line-height: 1; transition: transform var(--t); color: var(--moss); }
.nav__item--has-dropdown:hover .nav__caret,
.nav__item--has-dropdown.is-open .nav__caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: 100%; left: -16px;
  min-width: 280px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(20,39,27,0.08);
  list-style: none; margin: 0; padding: 8px 0;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  z-index: 110;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown,
.nav__item--has-dropdown.is-open .nav__dropdown {
  opacity: 1; transform: none; pointer-events: auto;
}
.nav__dropdown li { padding: 0; }
.nav__dropdown a {
  display: block; padding: 10px 18px;
  border-bottom: 0;
  white-space: nowrap;
  font-size: 0.92rem;
}
.nav__dropdown a:hover { background: var(--sand); color: var(--forest); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--forest); position: relative; transition: all var(--t); }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--forest); transition: all var(--t);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top:  7px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: all var(--t);
  }
  .nav.is-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links li { padding: 0 var(--gutter); }
  .nav__links > li > a,
  .nav__links > li > .nav__dropdown-trigger {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%;
    padding: 14px 0; border-bottom: 1px solid var(--line);
  }
  .nav__links li:last-child a { border-bottom: 0; }
  .nav__cta { margin: 12px var(--gutter); }

  /* mobile dropdowns: inline expanded list */
  .nav__item--has-dropdown { position: static; }
  .nav__dropdown {
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 8px 0;
    opacity: 1; transform: none; pointer-events: auto;
    max-height: 0; overflow: hidden;
    transition: max-height var(--t);
  }
  .nav__item--has-dropdown.is-open .nav__dropdown { max-height: 800px; }
  .nav__dropdown a {
    padding: 10px 0 10px 16px;
    font-size: 0.9rem;
    color: var(--moss);
    border-bottom: 1px solid var(--line);
  }
  .nav__dropdown li:last-child a { border-bottom: 0; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  display: flex; align-items: flex-end;
  padding-bottom: clamp(56px, 9vw, 110px);
  color: var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,39,27,0.05) 0%, rgba(20,39,27,0.30) 50%, rgba(20,39,27,0.92) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 880px; }
.hero h1 {
  color: var(--cream);
  margin-bottom: 0.4em;
  text-shadow: 0 2px 24px rgba(20,39,27,0.55), 0 1px 2px rgba(20,39,27,0.4);
}
.hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(251,248,241,0.95);
  max-width: 56ch;
  text-shadow: 0 1px 12px rgba(20,39,27,0.5);
}
.hero .eyebrow { text-shadow: 0 1px 8px rgba(20,39,27,0.5); }
.hero p.hero__locations {
  position: absolute;
  top: clamp(16px, 2.5vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  color: var(--cream);
  letter-spacing: 0.18em;
  text-shadow: 0 1px 2px rgba(20,39,27,0.55), 0 2px 16px rgba(20,39,27,0.7);
}
@media (max-width: 640px) {
  .hero p.hero__locations {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    white-space: normal;
    max-width: 90vw;
  }
}
.hero__locations::before { display: none; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.25rem; }
.hero__creds {
  margin: 1.75rem 0 0;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(20,39,27,0.55), 0 2px 14px rgba(20,39,27,0.6);
}
.hero .eyebrow { color: var(--leaf); }
.hero .eyebrow::before { background: var(--leaf); }

/* compact hero for inner pages */
.hero--inner { min-height: clamp(360px, 48vh, 480px); padding-bottom: clamp(40px, 6vw, 72px); }
.hero--inner h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }

/* ---------- card ---------- */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card__cat { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); margin-bottom: 6px; }
.card__title { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--forest); margin: 0 0 10px; }
.card__desc { color: var(--stone); font-size: 0.95rem; flex: 1; margin-bottom: 16px; }
.card__link { font-weight: 600; font-size: 0.92rem; color: var(--forest); }

/* service card variant — hexagon-free, image-led */
.service-card { background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; height: 100%; }
.service-card__media { aspect-ratio: 5/4; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.03); }
.service-card__body { padding: 24px 26px 28px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.service-card p { color: var(--stone); margin-bottom: 14px; font-size: 0.95rem; }
.service-card a { font-weight: 600; font-size: 0.92rem; }

/* feature row */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
.feature__num { font-family: var(--serif); font-size: 2.2rem; color: var(--leaf); display: block; margin-bottom: 6px; }
.feature h4 { color: var(--forest); margin-bottom: 6px; }
.feature p { color: var(--stone); font-size: 0.95rem; }

/* ---------- gallery / lightbox ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__item { position: relative; overflow: hidden; aspect-ratio: 1/1; cursor: zoom-in; background: var(--sand); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: 1/2; }
@media (max-width: 760px) { .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; aspect-ratio: 1/1; } }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,39,27,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 88vh; border-radius: 4px; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; color: var(--cream); background: rgba(0,0,0,0.3);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- form ---------- */
.form { display: grid; gap: 18px; max-width: 640px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; letter-spacing: 0.02em; }
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(74,107,58,0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .hp { position: absolute; left: -9999px; }

/* ---------- list with icon ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { padding-left: 30px; position: relative; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 10px;
  border-left: 2px solid var(--leaf); border-bottom: 2px solid var(--leaf);
  transform: rotate(-45deg);
}

/* ---------- breadcrumb ---------- */
.breadcrumb { font-size: 0.85rem; color: var(--stone); margin: 0 0 12px; }
.breadcrumb a { color: var(--stone); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ---------- pull quote ---------- */
.quote {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.4; color: var(--forest);
  border-left: 3px solid var(--leaf); padding: 6px 0 6px 28px;
  max-width: 60ch;
}
.quote cite { display: block; margin-top: 14px; font-family: var(--sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); font-style: normal; }

/* ---------- footer ---------- */
.site-footer { background: var(--forest-2); color: rgba(251,248,241,0.85); padding: 72px 0 32px; margin-top: 80px; }
.site-footer h4 { color: var(--cream); font-family: var(--sans); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: rgba(251,248,241,0.78); }
.site-footer a:hover { color: var(--leaf); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand { font-family: var(--serif); font-size: 1.6rem; color: var(--cream); margin-bottom: 12px; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 0.95rem; }
.footer__bottom { border-top: 1px solid rgba(251,248,241,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: rgba(251,248,241,0.55); }

/* ---------- utilities ---------- */
.center { text-align: center; }
.muted { color: var(--stone); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.maxw-prose { max-width: 65ch; }

/* reveal: content always visible. Animation removed. */
.reveal { opacity: 1; }

/* image with subtle frame */
.framed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ============================================================
   Full-bleed image sections — used heavily on the home page
   ============================================================ */

/* image-bg: section with a photo behind the content */
.image-bg {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 12vw, 160px) 0;
}
.image-bg__img {
  position: absolute; inset: 0; z-index: -2;
}
.image-bg__img img { width: 100%; height: 100%; object-fit: cover; }
.image-bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,39,27,0.55) 0%, rgba(20,39,27,0.65) 100%);
}
.image-bg--top::after  { background: linear-gradient(180deg, rgba(20,39,27,0.20) 0%, rgba(20,39,27,0.85) 100%); }
.image-bg--side::after { background: linear-gradient(90deg, rgba(20,39,27,0.85) 0%, rgba(20,39,27,0.60) 50%, rgba(20,39,27,0.20) 100%); }
.image-bg--vignette::after {
  background:
    radial-gradient(ellipse at center, rgba(20,39,27,0.10) 0%, rgba(20,39,27,0.65) 75%);
}
.image-bg h1, .image-bg h2, .image-bg h3 { color: var(--cream); }
.image-bg .eyebrow { color: var(--leaf); }
.image-bg .eyebrow::before { background: var(--leaf); }
.image-bg p { color: rgba(251,248,241,0.92); }
.image-bg .lead { color: rgba(251,248,241,0.95); }

/* photo-band: full-bleed image strip with no overlay, no text */
.photo-band {
  position: relative;
  width: 100%;
  height: clamp(360px, 50vw, 560px);
  overflow: hidden;
}
.photo-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-band--wide   { height: clamp(440px, 60vw, 720px); }
.photo-band--narrow { height: clamp(220px, 28vw, 340px); }

/* big serif display headline (bigger than h1) */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
}

/* magazine mosaic — varied tile sizes, photo-first */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 8px;
}
.mosaic__tile { position: relative; overflow: hidden; cursor: zoom-in; background: var(--sand); }
.mosaic__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mosaic__tile:hover img { transform: scale(1.04); }

.t-1 { grid-column: span 6; grid-row: span 3; }   /* big landscape */
.t-2 { grid-column: span 3; grid-row: span 3; }
.t-3 { grid-column: span 3; grid-row: span 3; }
.t-4 { grid-column: span 4; grid-row: span 2; }
.t-5 { grid-column: span 4; grid-row: span 2; }
.t-6 { grid-column: span 4; grid-row: span 2; }
.t-7 { grid-column: span 8; grid-row: span 3; }   /* second big */
.t-8 { grid-column: span 4; grid-row: span 3; }

@media (max-width: 1024px) {
  .mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 120px; }
  .t-1, .t-7 { grid-column: span 6; grid-row: span 3; }
  .t-2, .t-3 { grid-column: span 3; grid-row: span 2; }
  .t-4, .t-5, .t-6, .t-8 { grid-column: span 3; grid-row: span 2; }
}
@media (max-width: 600px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 100px; }
  .t-1, .t-7 { grid-column: span 2; grid-row: span 3; }
  .t-2, .t-3, .t-4, .t-5, .t-6, .t-8 { grid-column: span 1; grid-row: span 2; }
}

/* edge-to-edge panel (no container, photo full width) */
.bleed { width: 100%; }
.bleed img { width: 100%; height: auto; display: block; }

/* image with text-overlay corner caption */
.cap-tile { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.cap-tile img { width: 100%; height: 100%; object-fit: cover; }
.cap-tile__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 28px;
  color: var(--cream);
  background: linear-gradient(180deg, transparent 0%, rgba(20,39,27,0.85) 80%);
}
.cap-tile__cap h3 { color: var(--cream); margin: 0 0 4px; font-size: 1.3rem; }
.cap-tile__cap span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; }

/* trust strip on dark photo bg */
.image-bg .features .feature__num { color: var(--leaf); }
.image-bg .features h4 { color: var(--cream); }
.image-bg .features p { color: rgba(251,248,241,0.85); }

/* hero refinements */
.hero { min-height: clamp(640px, 92vh, 880px); }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); font-weight: 400; line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 0.5em; }
.hero p { font-size: clamp(1.1rem, 1.7vw, 1.35rem); }
.hero__bg::after {
  background:
    linear-gradient(180deg, rgba(20,39,27,0.20) 0%, rgba(20,39,27,0.10) 30%, rgba(20,39,27,0.40) 70%, rgba(20,39,27,0.85) 100%);
}
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(251,248,241,0.7);
  display: flex; align-items: center; gap: 10px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 36px; background: rgba(251,248,241,0.5); display: inline-block;
  animation: drop 2s var(--ease) infinite;
}
@keyframes drop {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}
