:root {
  color-scheme: dark;
  --olive-mid: #222b17;
  --olive-lift: #46532d;
  --ink: #12160d;
  --panel: rgb(34 43 23 / 90%);
  --panel-soft: rgb(70 83 45 / 58%);
  --rose: #ff3d9b;
  --rose-light: #ff9dca;
  --cream: #fff3e8;
  --muted: #c9aeba;
  --gold: #d29b48;
  --line: rgb(255 175 211 / 20%);
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #12160d;
}

button,
input,
select,
textarea { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.editorial-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 3rem), 1240px);
  min-height: 210px;
  margin: 0 auto;
}

.editorial-brand img {
  width: 270px;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 0 1rem rgb(255 0 128 / 24%));
}

.editorial-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.9rem, 2vw, 1.8rem);
}

.editorial-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 0.55rem;
  color: #ead0dc;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: clamp(0.8rem, 0.25vw + 0.72rem, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.editorial-nav a:hover,
.editorial-nav a:focus-visible,
.editorial-nav .is-current { color: var(--rose-light); }

.editorial-nav .nav-home { color: var(--rose-light); }

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 3rem), 1240px);
  margin: 0 auto;
  padding-bottom: clamp(4rem, 10vw, 8rem);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.page-hero--single { grid-template-columns: minmax(0, 820px); }
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--rose-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-wrap: balance;
}

h3 { font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.05; }

.hero-lead {
  max-width: 38rem;
  margin: 0;
  color: #e5ccd8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.hero-aside {
  padding: 1.35rem 0 0 1.35rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.section-block {
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.cultivar-card,
.info-card,
.journal-card,
.empty-state {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: linear-gradient(150deg, var(--panel), rgb(15 19 11 / 94%));
  box-shadow: 0 1.8rem 4rem rgb(0 0 0 / 28%);
}

.cultivar-card { display: flex; min-height: 100%; flex-direction: column; }
.cultivar-card__image { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.cultivar-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.cultivar-card:hover .cultivar-card__image img { transform: scale(1.035); }

.status-pill {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.48rem 0.66rem;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(15 19 11 / 86%);
  color: #fff4f8;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-pill--available { border-color: rgb(255 79 164 / 66%); color: #ffaad1; }
.status-pill--sleeping { color: #cdb5c1; }

.cultivar-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.3rem; }
.cultivar-card__body p { margin: 0.65rem 0 1.2rem; color: var(--muted); line-height: 1.6; }
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  color: #eacbdd;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.card-meta span + span::before { content: "·"; margin-right: 0.45rem; color: var(--rose); }

.card-link,
.pill-link,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  margin-top: 1.15rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgb(255 126 187 / 54%);
  border-radius: 999px;
  background: rgb(69 7 35 / 54%);
  color: #fff0f7;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.card-link:hover,
.card-link:focus-visible,
.pill-link:hover,
.pill-link:focus-visible,
.form-button:hover,
.form-button:focus-visible {
  border-color: #ff9dca;
  box-shadow: 0 0 2rem rgb(255 0 128 / 18%);
  transform: translateY(-2px);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.filter-button {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(27 34 18 / 82%);
  color: #d8bdca;
  cursor: pointer;
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active { border-color: var(--rose-light); color: #fff; }
.is-filtered-out { display: none !important; }

.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.info-card { padding: clamp(1.4rem, 3vw, 2.2rem); }
.info-card p,
.info-card li { color: var(--muted); line-height: 1.7; }
.info-card ul { margin: 1rem 0 0; padding-left: 1.2rem; }
.info-card a { color: var(--rose-light); text-underline-offset: 0.25rem; }
.info-card--wide { grid-column: 1 / -1; }

.story-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.story-panel img { width: 100%; border-radius: 7rem 1.5rem 1.5rem; }
.story-copy p { color: #d4bac7; font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; line-height: 1.75; }

.site-form {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid rgb(255 126 187 / 28%);
  border-radius: 2rem 2rem 5rem 2rem;
  background: linear-gradient(145deg, rgb(34 43 23 / 94%), rgb(18 22 13 / 94%));
}
.site-form label { display: grid; gap: 0.5rem; }
.site-form label span { color: #efcedd; font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; }
.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgb(255 157 202 / 24%);
  border-radius: 0.85rem;
  outline: 0;
  background: rgb(14 18 10 / 82%);
  color: var(--cream);
}
.site-form textarea { min-height: 8rem; resize: vertical; }
.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus { border-color: var(--rose-light); box-shadow: 0 0 0 3px rgb(255 61 155 / 13%); }
.form-button { cursor: pointer; background: linear-gradient(135deg, #9e124f, #4c0829); }
.form-note { margin: 0; color: #a88b99; font-size: 0.75rem; line-height: 1.55; }
.honeypot { position: absolute; left: -10000px; }

.faq-list { display: grid; gap: 0.8rem; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--panel);
}
.faq-list summary {
  padding: 1.25rem 3.2rem 1.25rem 1.3rem;
  color: #fff0f7;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.faq-list details p { margin: 0; padding: 0 1.3rem 1.3rem; color: var(--muted); line-height: 1.7; }

.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.journal-card { padding: 1.6rem; }
.journal-card p { color: var(--muted); line-height: 1.7; }
.journal-card time { display: block; margin-bottom: 0.8rem; color: var(--rose-light); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; }

.empty-state { padding: clamp(2rem, 6vw, 5rem); text-align: center; }
.empty-state h2 { max-width: 13ch; margin-inline: auto; }
.empty-state p { max-width: 40rem; margin: 1.25rem auto 0; color: var(--muted); line-height: 1.7; }

.editorial-footer {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--line);
  background: #12160d;
  text-align: center;
}
.editorial-footer img { width: 150px; height: 110px; margin: 0 auto; object-fit: contain; }
.editorial-footer > p { margin: 0; color: #b597a5; font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 1.5rem; max-width: 900px; margin: 1.6rem auto 0; }
.footer-links a { color: #dfc3d1; font-size: 0.62rem; letter-spacing: 0.13em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover,
.footer-links a:focus-visible { color: #fff; }

@media (max-width: 980px) {
  .editorial-header { align-items: flex-start; flex-direction: column; gap: 0; padding-bottom: 1.3rem; }
  .editorial-nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding: 0.65rem 0; scrollbar-width: thin; }
  .page-hero,
  .section-heading { grid-template-columns: 1fr; }
  .card-grid,
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .editorial-header,
  .page-shell { width: min(calc(100% - 2rem), 1240px); }
  .editorial-header { min-height: 150px; }
  .editorial-brand img { width: 195px; height: 138px; }
  .editorial-nav { gap: 1rem; }
  .editorial-nav a { font-size: 0.76rem; letter-spacing: 0.08em; }
  .page-hero { padding-top: 2.2rem; }
  h1 { font-size: clamp(3.2rem, 18vw, 5.2rem); }
  .card-grid,
  .info-grid,
  .journal-grid,
  .story-panel { grid-template-columns: 1fr; }
  .info-card--wide { grid-column: auto; }
  .story-panel img { max-height: 520px; object-fit: cover; border-radius: 4rem 1.2rem 1.2rem; }
  .site-form { border-radius: 1.4rem 1.4rem 3.5rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
