:root {
  --paper: #f7f1e7;
  --paper-soft: #fbf8f1;
  --ink: #1f2a20;
  --muted: #71766b;
  --green: #405e3c;
  --moss: #223522;
  --clay: #a36f55;
  --petal: #d48f93;
  --mist: #dce4d5;
  --white: #fffdf8;
  --line: rgba(31, 42, 32, .16);
  --shadow: 0 28px 80px rgba(30, 42, 28, .18);
  --display: Georgia, "Times New Roman", "Yu Mincho", "YuMincho", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(31, 42, 32, .07) 50%, transparent calc(50% + 1px)),
    var(--paper);
  line-height: 1.85;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 13px clamp(18px, 4vw, 58px);
  background: rgba(247, 241, 231, .78);
  border-bottom: 1px solid rgba(31, 42, 32, .1);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(31, 42, 32, .2);
  border-radius: 50%;
  background: var(--moss);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
}
.brand strong { display: block; font-size: 16px; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 10px; line-height: 1.1; }
.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  font-weight: 700;
}
.site-nav a { color: var(--moss); text-decoration: none; }
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.header-cta,
.button.primary { background: var(--moss); color: var(--white); }
.button.secondary {
  background: rgba(255, 253, 248, .72);
  border-color: var(--line);
  color: var(--moss);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, .8);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 92px clamp(16px, 3vw, 44px) 34px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 28, 21, .08), rgba(20, 28, 21, .18) 56%, rgba(247, 241, 231, .96));
}
.hero-frame {
  position: absolute;
  inset: 72px clamp(16px, 3vw, 44px) 118px;
  z-index: -2;
  overflow: hidden;
  background: var(--moss);
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}
.hero-edition {
  position: absolute;
  left: clamp(18px, 3vw, 42px);
  top: clamp(18px, 3vw, 40px);
  margin: 0;
  padding: 8px 12px;
  background: rgba(247, 241, 231, .82);
  color: var(--moss);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}
.hero-place {
  position: absolute;
  right: clamp(18px, 4vw, 62px);
  bottom: clamp(20px, 4vw, 58px);
  color: rgba(255, 253, 248, .7);
  font-family: var(--display);
  font-size: clamp(54px, 12vw, 170px);
  line-height: .82;
  text-align: right;
}
.hero-copy {
  max-width: 1040px;
  padding: 0 clamp(6px, 3vw, 42px);
}
.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 12em;
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(52px, 8.8vw, 128px);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 10px 48px rgba(0, 0, 0, .28);
}
h2 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 74px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.35; }
.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 248, .88);
  font-size: 17px;
  font-weight: 700;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}
.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 26px clamp(6px, 3vw, 42px) 0;
}
.hero-info span {
  padding: 8px 12px;
  background: rgba(255, 253, 248, .8);
  color: var(--moss);
  border: 1px solid rgba(255, 253, 248, .55);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.intro-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(280px, .82fr) minmax(300px, 1fr);
  gap: clamp(22px, 5vw, 78px);
  align-items: center;
  padding: clamp(72px, 10vw, 150px) clamp(18px, 6vw, 92px) clamp(38px, 6vw, 80px);
}
.vertical-note {
  writing-mode: vertical-rl;
  justify-self: center;
  margin: 0;
  color: rgba(31, 42, 32, .42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}
.intro-text { position: relative; z-index: 2; }
.intro-text p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}
.intro-photo {
  position: relative;
  margin: -40px 0 0;
  min-height: 520px;
  box-shadow: var(--shadow);
}
.intro-photo img,
.access-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
figcaption { font-size: 12px; font-weight: 900; color: var(--moss); }
.intro-photo figcaption,
.plant-shot figcaption,
.access-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  background: rgba(247, 241, 231, .84);
  border-radius: 999px;
}

.plants-editorial {
  position: relative;
  min-height: 1160px;
  padding: clamp(74px, 11vw, 160px) clamp(16px, 5vw, 82px);
  overflow: hidden;
}
.plants-editorial::before {
  content: "";
  position: absolute;
  inset: 14% 0 auto;
  height: 54%;
  background: var(--paper-soft);
  z-index: -2;
}
.display-word {
  position: absolute;
  left: clamp(14px, 2vw, 34px);
  top: clamp(34px, 6vw, 84px);
  z-index: -1;
  color: rgba(64, 94, 60, .13);
  font-family: var(--display);
  font-size: clamp(68px, 16vw, 220px);
  line-height: .8;
  white-space: nowrap;
}
.plants-lead {
  width: min(620px, 92vw);
  margin-left: auto;
  margin-bottom: -40px;
}
.plants-lead p:last-child {
  color: var(--muted);
  font-size: 17px;
}
.plant-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow);
}
.plant-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plant-shot-a {
  left: clamp(16px, 5vw, 82px);
  top: 350px;
  width: min(52vw, 720px);
  height: 560px;
}
.plant-shot-b {
  right: clamp(18px, 7vw, 112px);
  top: 560px;
  width: min(28vw, 390px);
  height: 520px;
}
.plant-shot-c {
  left: 18vw;
  bottom: 40px;
  width: min(34vw, 480px);
  height: 360px;
}
.plant-terms {
  position: absolute;
  right: clamp(20px, 5vw, 82px);
  bottom: 92px;
  width: min(410px, 38vw);
  margin: 0;
  border-top: 1px solid var(--line);
  background: rgba(247, 241, 231, .72);
  backdrop-filter: blur(12px);
}
.plant-terms div,
.visit-facts div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.plant-terms dt,
.visit-facts dt {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
}
.plant-terms dd,
.visit-facts dd {
  margin: 0;
  font-weight: 800;
}

.greenhouse-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  align-items: stretch;
  background: var(--moss);
  color: var(--white);
}
.story-image {
  min-height: 620px;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy {
  align-self: center;
  padding: clamp(48px, 7vw, 96px);
}
.story-copy p:last-child {
  color: rgba(255, 253, 248, .78);
  font-size: 17px;
}

.visit-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(82px, 12vw, 170px) clamp(18px, 6vw, 92px);
  background: linear-gradient(180deg, var(--paper), #ece1d2);
  overflow: hidden;
}
.visit-display {
  grid-row: span 2;
  align-self: start;
  display: grid;
  gap: 6px;
  font-family: var(--display);
  font-size: clamp(70px, 11vw, 176px);
  line-height: .78;
  color: rgba(31, 42, 32, .18);
}
.visit-copy { max-width: 690px; }
.visit-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}
.visit-facts {
  width: min(620px, 100%);
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
}

.access-editorial {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .74fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding: clamp(80px, 11vw, 158px) clamp(18px, 6vw, 92px);
  overflow: hidden;
}
.access-type {
  position: absolute;
  left: clamp(12px, 3vw, 50px);
  top: clamp(40px, 7vw, 96px);
  color: rgba(64, 94, 60, .12);
  font-family: var(--display);
  font-size: clamp(76px, 18vw, 230px);
  line-height: .8;
}
.access-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 620px;
}
.access-copy p { color: var(--muted); }
.access-photo {
  position: relative;
  margin: 0;
  min-height: 500px;
  box-shadow: var(--shadow);
}

.instagram-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(44px, 7vw, 82px) clamp(18px, 6vw, 92px);
  background: var(--green);
  color: var(--white);
}
.instagram-strip h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 56px);
}
.instagram-strip .section-kicker { color: var(--mist); }

.section.contact {
  padding: clamp(76px, 11vw, 150px) clamp(18px, 6vw, 92px);
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head p:last-child { color: var(--muted); }
.contact-form {
  display: grid;
  gap: 18px;
  max-width: 760px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--moss);
  font-weight: 800;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  background: rgba(255, 253, 248, .72);
  color: var(--ink);
  font: inherit;
}
textarea { resize: vertical; }
input:focus,
textarea:focus {
  outline: 3px solid rgba(212, 143, 147, .28);
  border-color: var(--petal);
}
.form-result {
  min-height: 28px;
  margin: 0;
  color: var(--moss);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 6vw, 92px) 88px;
  background: #18251a;
  color: var(--white);
}
.site-footer p {
  margin: 5px 0 0;
  color: rgba(255, 253, 248, .72);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}
.mobile-cta {
  display: none;
  position: fixed;
  z-index: 40;
  left: 14px;
  right: 14px;
  bottom: 12px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--moss);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.mobile-cta a + a { background: var(--clay); }

.subpage .site-header { position: static; }
.policy {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 20px;
}
.policy h1 {
  max-width: none;
  color: var(--ink);
  text-shadow: none;
  font-size: clamp(38px, 6vw, 70px);
}
.policy h2 {
  margin-top: 38px;
  font-family: var(--sans);
  font-size: 23px;
}
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-frame img {
    animation: heroBreath 16s ease-in-out infinite alternate;
  }
  @keyframes heroBreath {
    from { transform: scale(1.035); }
    to { transform: scale(1.08); }
  }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; gap: 12px; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 20px;
    background: rgba(247, 241, 231, .96);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .header-cta { display: none; }

  .hero {
    min-height: auto;
    padding: 82px 0 0;
    display: block;
  }
  .hero-frame {
    position: relative;
    inset: auto;
    height: 64svh;
  }
  .hero-place { font-size: clamp(46px, 17vw, 96px); }
  .hero-copy { padding: 32px 18px 24px; }
  h1 {
    color: var(--ink);
    font-size: clamp(42px, 12vw, 72px);
    text-shadow: none;
  }
  .hero-copy p:not(.eyebrow) {
    color: var(--muted);
    text-shadow: none;
    font-weight: 600;
  }
  .hero-info { padding: 0 18px 30px; }
  .intro-ribbon,
  .greenhouse-story,
  .visit-editorial,
  .access-editorial { grid-template-columns: 1fr; }
  .intro-ribbon { padding-top: 68px; }
  .vertical-note {
    writing-mode: horizontal-tb;
    justify-self: start;
  }
  .intro-photo,
  .story-image,
  .access-photo { min-height: 360px; }

  .plants-editorial {
    min-height: 0;
    padding: 74px 14px 64px;
  }
  .display-word {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 22px;
    font-size: clamp(54px, 19vw, 132px);
    white-space: nowrap;
    word-break: normal;
  }
  .plants-lead {
    width: auto;
    margin: 0 0 28px;
  }
  .plant-shot {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    margin: 12px 0;
  }
  .plant-shot img {
    height: auto;
    min-height: 0;
  }
  .plant-shot-a img { aspect-ratio: 1 / 1.14; object-fit: cover; }
  .plant-shot-b {
    width: 74%;
    margin-left: auto;
  }
  .plant-shot-c {
    width: 86%;
    margin-right: auto;
  }
  .plant-terms {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 28px;
  }
  .visit-display {
    grid-row: auto;
    grid-template-columns: 1fr;
    font-size: clamp(62px, 18vw, 96px);
  }
  body.cta-visible .mobile-cta { display: grid; }
  .instagram-strip,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  body { background: var(--paper); }
  .site-header {
    min-height: 66px;
    padding: 11px 13px;
  }
  .brand strong { font-size: 15px; }
  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .site-nav { top: 66px; }
  .hero { padding-top: 66px; }
  .hero-frame { height: 53svh; }
  .hero-edition {
    left: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
    font-size: 9px;
  }
  .hero-place {
    right: 12px;
    bottom: 16px;
    font-size: 52px;
  }
  .hero-actions,
  .inline-actions {
    flex-direction: column;
    align-items: stretch;
  }
  h2 { font-size: 34px; }
  .intro-ribbon,
  .visit-editorial,
  .access-editorial,
  .section.contact { padding-inline: 15px; }
  .intro-photo { margin-top: 0; }
  .story-copy { padding: 36px 16px; }
  .plant-terms div,
  .visit-facts div { grid-template-columns: 98px 1fr; }
  .access-type {
    position: relative;
    left: auto;
    top: auto;
    font-size: 66px;
    margin-bottom: 18px;
  }
  .access-photo { min-height: 300px; }
}

/* 2026-08 polish: keep the original editorial composition, reduce typographic pressure. */
@media (min-width: 981px) {
  .hero-copy {
    max-width: 860px;
  }
  h1 {
    max-width: 10.6em;
    margin-bottom: 18px;
    font-size: clamp(48px, 5.5vw, 84px);
    line-height: 1.03;
    letter-spacing: -.015em;
  }
  .hero-copy p:not(.eyebrow) {
    max-width: 600px;
    font-size: 15px;
    line-height: 1.8;
  }
  .hero-place {
    right: clamp(22px, 4vw, 58px);
    bottom: clamp(24px, 4vw, 52px);
    font-size: clamp(48px, 8vw, 112px);
    line-height: .84;
    color: rgba(255, 253, 248, .44);
  }
  h2 {
    font-size: clamp(30px, 3.5vw, 58px);
    line-height: 1.12;
  }
  .display-word {
    font-size: clamp(64px, 12vw, 170px);
  }
  .access-type {
    font-size: clamp(70px, 14vw, 180px);
  }
  .visit-display {
    font-size: clamp(66px, 8vw, 128px);
  }
}

/* A single quiet moving succulent accent; decorative only. */
.succulent-float {
  position: absolute;
  right: clamp(28px, 4vw, 72px);
  top: clamp(190px, 19vw, 270px);
  z-index: 1;
  width: clamp(86px, 9vw, 132px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(247, 241, 231, .82);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(30, 42, 28, .14);
  pointer-events: none;
}
.succulent-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

@media (prefers-reduced-motion: no-preference) {
  .succulent-float {
    animation: succulentDrift 7s ease-in-out infinite;
  }
  @keyframes succulentDrift {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-1.5deg); }
    50% { transform: translate3d(0, -12px, 0) rotate(1.5deg); }
  }
}

@media (max-width: 980px) {
  .succulent-float {
    right: 20px;
    top: 58px;
    width: 92px;
    border-width: 5px;
  }
  h1 {
    max-width: 11em;
    font-size: clamp(38px, 9.8vw, 60px);
    line-height: 1.08;
  }
  .hero-place {
    font-size: clamp(40px, 13vw, 76px);
    color: rgba(255, 253, 248, .48);
  }
  .display-word {
    font-size: clamp(48px, 16vw, 104px);
    color: rgba(64, 94, 60, .11);
  }
}

@media (max-width: 540px) {
  .hero-copy {
    padding-top: 28px;
  }
  h1 {
    margin-bottom: 16px;
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1.12;
  }
  .hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.8;
  }
  h2 {
    font-size: clamp(29px, 8.2vw, 36px);
    line-height: 1.16;
  }
  .hero-place {
    font-size: 42px;
    line-height: .88;
  }
  .display-word {
    font-size: clamp(46px, 15vw, 68px);
  }
  .succulent-float {
    top: 48px;
    right: 14px;
    width: 70px;
    border-width: 4px;
    opacity: .92;
  }
  .instagram-strip h2 {
    font-size: clamp(27px, 7vw, 34px);
  }
}


/* 2026-08-22 director polish
   Keep the original editorial composition. Refine hierarchy, rhythm and first-impression clarity. */
:root {
  --accent-rose: #a86672;
  --hero-veil: rgba(18, 28, 19, .44);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 28, 19, .42) 0%, rgba(18, 28, 19, .22) 38%, rgba(18, 28, 19, .03) 70%),
    linear-gradient(180deg, rgba(18, 28, 19, .02) 42%, rgba(18, 28, 19, .32) 100%);
}

.hero-copy { position: relative; z-index: 3; }
.hero-edition { z-index: 3; }
.hero-place { z-index: 2; pointer-events: none; }

.button,
.header-cta {
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}
.button:hover,
.header-cta:hover { transform: translateY(-1px); }
.button.primary:hover,
.header-cta:hover { background: #182c1b; }
.button.secondary:hover {
  border-color: rgba(168, 102, 114, .58);
  color: #6f3f49;
}

.section-kicker,
.eyebrow { color: var(--accent-rose); }

@media (min-width: 981px) {
  .hero {
    min-height: 96svh;
    padding-bottom: 30px;
  }
  .hero-frame {
    inset: 72px clamp(16px, 3vw, 44px) 112px;
  }
  .hero-copy {
    max-width: 760px;
    padding-left: clamp(8px, 3vw, 42px);
  }
  h1 {
    max-width: 9.6em;
    margin-bottom: 16px;
    font-size: clamp(44px, 4.15vw, 64px);
    line-height: 1.08;
    letter-spacing: -.025em;
  }
  .hero-copy p:not(.eyebrow) {
    max-width: 570px;
    margin-bottom: 0;
    font-size: 15.5px;
    line-height: 1.82;
    font-weight: 650;
  }
  .hero-actions { margin-top: 21px; }
  .hero-place {
    right: clamp(22px, 3.6vw, 54px);
    bottom: clamp(24px, 3.2vw, 46px);
    font-size: clamp(42px, 6.2vw, 88px);
    line-height: .86;
    color: rgba(255, 253, 248, .14);
  }
  .hero-edition {
    padding: 7px 10px;
    font-size: 9.5px;
    letter-spacing: .13em;
  }
  .hero-info { padding-top: 22px; }

  h2 {
    font-size: clamp(30px, 3.05vw, 52px);
    line-height: 1.14;
    letter-spacing: -.015em;
  }
  .intro-ribbon {
    padding-top: clamp(84px, 8vw, 118px);
    padding-bottom: clamp(54px, 6vw, 78px);
  }
  .intro-text p:last-child,
  .plants-lead p:last-child,
  .story-copy p:last-child,
  .visit-copy p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.9;
  }
  .intro-photo { min-height: 500px; }

  .plants-editorial {
    min-height: 1080px;
    padding-top: clamp(92px, 9vw, 128px);
    padding-bottom: clamp(80px, 8vw, 112px);
  }
  .display-word {
    top: clamp(42px, 5vw, 70px);
    font-size: clamp(58px, 9vw, 130px);
    color: rgba(64, 94, 60, .085);
  }
  .plants-lead { margin-bottom: -24px; }
  .plant-shot-a { top: 330px; }
  .plant-shot-b { top: 540px; }
  .plant-shot-c { bottom: 46px; }

  .greenhouse-story .story-image { min-height: 590px; }
  .story-copy { padding: clamp(54px, 6vw, 82px); }

  .visit-editorial {
    padding-top: clamp(92px, 9vw, 128px);
    padding-bottom: clamp(92px, 9vw, 128px);
  }
  .visit-display {
    font-size: clamp(60px, 7vw, 104px);
    color: rgba(31, 42, 32, .135);
  }

  .access-editorial {
    min-height: 700px;
    padding-top: clamp(90px, 9vw, 126px);
    padding-bottom: clamp(90px, 9vw, 126px);
  }
  .access-type {
    font-size: clamp(64px, 10vw, 150px);
    color: rgba(64, 94, 60, .075);
  }
  .access-photo { min-height: 470px; }

  .instagram-strip { padding-block: clamp(48px, 5vw, 68px); }
  .instagram-strip h2 { font-size: clamp(28px, 3vw, 44px); }
  .section.contact { padding-block: clamp(88px, 9vw, 126px); }
}

/* Preserve the preferred image-led hero on mobile instead of turning it into a detached image + text block. */
@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 66px 14px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    overflow: visible;
  }
  .hero::after { display: none; }
  .hero-frame {
    position: relative;
    inset: auto;
    grid-area: 1 / 1;
    z-index: 0;
    height: clamp(500px, 72svh, 690px);
  }
  .hero-frame img { transform: scale(1.035); }
  .hero-copy {
    grid-area: 1 / 1;
    align-self: end;
    z-index: 4;
    max-width: 620px;
    padding: 0 18px 30px;
  }
  .hero-copy .eyebrow { color: #f0b2b6; }
  h1 {
    max-width: 10.4em;
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(31px, 8.6vw, 43px);
    line-height: 1.11;
    letter-spacing: -.02em;
    text-shadow: 0 8px 28px rgba(0,0,0,.3);
  }
  .hero-copy p:not(.eyebrow) {
    max-width: 34em;
    margin-bottom: 0;
    color: rgba(255,253,248,.9);
    font-size: 14px;
    line-height: 1.72;
    font-weight: 650;
    text-shadow: 0 6px 22px rgba(0,0,0,.36);
  }
  .hero-actions {
    margin-top: 18px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero-actions .button {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 13px;
  }
  .hero-actions .button.secondary {
    background: rgba(255,253,248,.88);
  }
  .hero-edition {
    left: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 9px;
    font-size: 8.5px;
  }
  .hero-place {
    right: 14px;
    bottom: 18px;
    font-size: clamp(34px, 10.8vw, 54px);
    line-height: .88;
    color: rgba(255,253,248,.12);
  }
  .hero-info {
    grid-row: 2;
    padding: 18px 4px 30px;
  }

  h2 {
    font-size: clamp(29px, 7.8vw, 38px);
    line-height: 1.18;
  }
  .intro-ribbon { padding-top: 64px; }
  .plants-editorial { padding-top: 68px; }
  .display-word {
    margin-bottom: 16px;
    font-size: clamp(44px, 13.8vw, 84px);
    color: rgba(64, 94, 60, .075);
  }
  .visit-display {
    font-size: clamp(54px, 15vw, 82px);
    color: rgba(31,42,32,.13);
  }
  .access-type {
    font-size: clamp(52px, 16vw, 78px);
    color: rgba(64,94,60,.075);
  }
}

@media (max-width: 540px) {
  .hero { padding-top: 66px; }
  .hero-frame { height: clamp(520px, 74svh, 650px); }
  .hero-copy { padding: 0 16px 26px; }
  h1 {
    max-width: 10em;
    font-size: clamp(30px, 8.5vw, 36px);
    line-height: 1.13;
  }
  .hero-copy p:not(.eyebrow) { font-size: 13.5px; }
  .hero-place { font-size: clamp(32px, 10vw, 44px); }
  .hero-info { gap: 7px; }
  .hero-info span { padding: 7px 10px; font-size: 10.5px; }
  .intro-ribbon,
  .visit-editorial,
  .access-editorial,
  .section.contact { padding-inline: 16px; }
  .succulent-float {
    top: 54px;
    width: 66px;
    opacity: .78;
  }
  .instagram-strip { padding-block: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
