/* Ruoliimbie Plant Room — rlim- · recipe L19 H15 Y15 C04 S18 F24 N16 T23 A15 M14 K24 CB08 */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;1,6..72,400&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --rlim-ink: #1a2420;
  --rlim-mute: #4a5750;
  --rlim-paper: #e8ebe4;
  --rlim-paper-2: #d5dbd2;
  --rlim-tint: #2f5a45;
  --rlim-tint-soft: rgba(47, 90, 69, 0.55);
  --rlim-accent: #3d6b52;
  --rlim-line: rgba(26, 36, 32, 0.18);
  --rlim-rail: 3.25rem;
  --rlim-font-news: "Newsreader", "Georgia", serif;
  --rlim-font-ui: "Public Sans", "Helvetica Neue", sans-serif;
  --rlim-ease: cubic-bezier(0.33, 1, 0.68, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--rlim-font-news);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--rlim-ink);
  background:
    linear-gradient(160deg, rgba(47, 90, 69, 0.08), transparent 42%),
    linear-gradient(0deg, var(--rlim-paper), var(--rlim-paper-2));
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rlim-accent); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--rlim-ink); }
h1, h2, h3, .rlim-ui { font-family: var(--rlim-font-ui); font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }

.rlim-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--rlim-ink); color: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.rlim-skip:focus { left: var(--rlim-rail); }

/* N16 — persistent left icon rail */
.rlim-rail {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--rlim-rail);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0;
  background: rgba(26, 36, 32, 0.92);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.rlim-rail a {
  width: 2.35rem; height: 2.35rem;
  display: grid; place-items: center;
  color: #d7e0d8;
  text-decoration: none;
  border-radius: 0.35rem;
  transition: background 0.2s var(--rlim-ease), color 0.2s;
}
.rlim-rail a:hover,
.rlim-rail a[aria-current="page"] {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.rlim-rail svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.7; }
.rlim-rail__spacer { flex: 1; }
.rlim-shell { margin-left: var(--rlim-rail); }

/* Y15 + H15 — magazine header over hero background */
.rlim-mast {
  position: relative;
  min-height: clamp(280px, 52vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f4f7f2;
  isolation: isolate;
  overflow: hidden;
}
.rlim-mast__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.rlim-mast__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 40, 32, 0.35) 0%, rgba(20, 40, 32, 0.72) 100%),
    linear-gradient(90deg, var(--rlim-tint-soft), transparent 55%);
  mix-blend-mode: multiply;
}
.rlim-mast__inner {
  padding: 1.25rem clamp(1rem, 3vw, 2.5rem) 1.5rem;
}
.rlim-mast__meta {
  font-family: var(--rlim-font-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}
.rlim-brand {
  font-family: var(--rlim-font-news);
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
}
.rlim-brand a { color: inherit; text-decoration: none; }
.rlim-brand__sub {
  font-family: var(--rlim-font-ui);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin: 0 0 1rem;
}
.rlim-lede {
  max-width: 36rem;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  opacity: 0.95;
}
.rlim-cta {
  display: inline-block;
  font-family: var(--rlim-font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f4f7f2;
  border-bottom: 2px solid #f4f7f2;
  padding-bottom: 0.15rem;
  text-decoration: none;
}
.rlim-cta:hover { color: #fff; border-color: #fff; }

/* H15 underline tabs */
.rlim-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(244, 247, 242, 0.35);
  margin-top: 0.75rem;
  font-family: var(--rlim-font-ui);
  font-size: 0.82rem;
  font-weight: 500;
}
.rlim-tabs a {
  color: rgba(244, 247, 242, 0.82);
  text-decoration: none;
  padding: 0.7rem 0.95rem 0.65rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.rlim-tabs a:hover,
.rlim-tabs a[aria-current="page"] {
  color: #fff;
  border-bottom-color: #fff;
}

/* Page chrome for inner pages (no tall hero) */
.rlim-mast--compact {
  min-height: 0;
}
.rlim-mast--compact .rlim-mast__bg { min-height: 220px; }
.rlim-mast--compact .rlim-brand { font-size: clamp(1.6rem, 4vw, 2.4rem); }

.rlim-main {
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem) 3rem;
  max-width: 1100px;
}

/* L19 price board */
.rlim-board {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--rlim-line);
  padding: 1.5rem clamp(1rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
}
.rlim-board h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}
.rlim-board__note {
  font-family: var(--rlim-font-ui);
  font-size: 0.85rem;
  color: var(--rlim-mute);
  margin-bottom: 1.25rem;
}
.rlim-menu {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.rlim-menu th {
  font-family: var(--rlim-font-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 0.4rem 0.5rem 0.6rem;
  border-bottom: 2px solid var(--rlim-ink);
  color: var(--rlim-mute);
}
.rlim-menu td {
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--rlim-line);
  vertical-align: top;
}
.rlim-menu tr:last-child td { border-bottom: none; }
.rlim-menu__price {
  font-family: var(--rlim-font-ui);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}
.rlim-menu__cat {
  font-family: var(--rlim-font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rlim-accent);
}

/* S18 empty framed pauses */
.rlim-pause {
  height: clamp(2.5rem, 6vw, 4.5rem);
  border: 1px solid var(--rlim-line);
  background: transparent;
  margin: 1.75rem 0;
  pointer-events: none;
}

/* C04 horizontal strip + M14 swap */
.rlim-strip-wrap {
  margin: 0 -0.25rem 1.5rem;
}
.rlim-strip-wrap h2 {
  padding: 0 0.25rem;
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}
.rlim-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.rlim-strip::-webkit-scrollbar { height: 6px; }
.rlim-strip::-webkit-scrollbar-thumb { background: var(--rlim-tint); border-radius: 3px; }
.rlim-shot {
  flex: 0 0 min(72vw, 280px);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--rlim-tint);
}
.rlim-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* A15 photographic duotone feel */
  filter: sepia(0.25) saturate(0.85) hue-rotate(55deg) contrast(1.05);
  transition: opacity 0.45s var(--rlim-ease);
}
.rlim-shot img.rlim-shot__b { opacity: 0; }
.rlim-shot:hover img.rlim-shot__a,
.rlim-shot:focus-within img.rlim-shot__a { opacity: 0; }
.rlim-shot:hover img.rlim-shot__b,
.rlim-shot:focus-within img.rlim-shot__b { opacity: 1; }
.rlim-shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.65rem 0.75rem;
  font-family: var(--rlim-font-ui);
  font-size: 0.75rem;
  color: #f4f7f2;
  background: linear-gradient(transparent, rgba(20, 40, 32, 0.85));
}

.rlim-prose {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}
.rlim-prose h2 { margin: 1.5rem 0 0.6rem; font-size: 1.25rem; }
.rlim-prose h3 { margin: 1.2rem 0 0.45rem; font-size: 1.05rem; }

/* K24 legal-adjacent form */
.rlim-visit {
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--rlim-line);
  padding: 1.5rem clamp(1rem, 2.5vw, 2rem);
  margin-top: 0.5rem;
}
.rlim-visit h2 { margin: 0 0 0.75rem; font-size: 1.25rem; }
.rlim-visit__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .rlim-visit__grid { grid-template-columns: 1fr 1.1fr; }
}
.rlim-contact-block {
  font-size: 0.98rem;
}
.rlim-contact-block p { margin: 0 0 0.4rem; }
.rlim-contact-block strong {
  font-family: var(--rlim-font-ui);
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}
.rlim-legal-note {
  font-family: var(--rlim-font-ui);
  font-size: 0.75rem;
  color: var(--rlim-mute);
  line-height: 1.45;
  margin: 0.75rem 0 1rem;
  max-width: 36rem;
}
.rlim-form label {
  display: block;
  font-family: var(--rlim-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0.65rem 0 0.25rem;
}
.rlim-form input,
.rlim-form textarea {
  width: 100%;
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--rlim-line);
  background: rgba(255,255,255,0.7);
  color: var(--rlim-ink);
}
.rlim-form textarea { min-height: 7rem; resize: vertical; }
.rlim-form button {
  margin-top: 1rem;
  font-family: var(--rlim-font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border: none;
  background: var(--rlim-tint);
  color: #f4f7f2;
  cursor: pointer;
}
.rlim-form button:hover { background: var(--rlim-ink); }
.rlim-form__ok {
  display: none;
  margin-top: 0.85rem;
  font-family: var(--rlim-font-ui);
  font-size: 0.9rem;
  color: var(--rlim-accent);
}
.rlim-form__ok.is-visible { display: block; }

.rlim-list-dense li { margin-bottom: 0.45rem; }

/* F24 minimal footer */
.rlim-foot {
  margin-left: var(--rlim-rail);
  padding: 1.25rem clamp(1rem, 3vw, 2.5rem) 2rem;
}
.rlim-foot__contact {
  font-size: 0.9rem;
  color: var(--rlim-mute);
  margin-bottom: 0.85rem;
  max-width: 40rem;
}
.rlim-foot__contact a { color: inherit; }
.rlim-foot__rule {
  border: 0;
  border-top: 1px solid var(--rlim-ink);
  margin: 0 0 0.65rem;
}
.rlim-foot__legal {
  display: flex;
  justify-content: flex-end;
  gap: 1.1rem;
  font-family: var(--rlim-font-ui);
  font-size: 0.78rem;
}
.rlim-foot__legal a {
  color: var(--rlim-mute);
  text-decoration: none;
}
.rlim-foot__legal a:hover { color: var(--rlim-ink); text-decoration: underline; }

/* Inner page header strip */
.rlim-pagehead {
  margin-bottom: 1.25rem;
}
.rlim-pagehead h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}
.rlim-pagehead p {
  color: var(--rlim-mute);
  max-width: 36rem;
}

.rlim-plant-grid {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .rlim-plant-grid { grid-template-columns: 1fr 1fr; }
}
.rlim-plant-grid article {
  border-top: 1px solid var(--rlim-line);
  padding-top: 0.85rem;
}
.rlim-plant-grid h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.rlim-plant-grid .rlim-menu__price { text-align: left; margin-bottom: 0.4rem; display: block; }

.rlim-duo {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}
@media (min-width: 700px) {
  .rlim-duo { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.rlim-duo img {
  width: 100%;
  filter: sepia(0.22) saturate(0.88) hue-rotate(55deg) contrast(1.04);
}

/* CB08 corner note stacked buttons */
.rlim-cookie {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: min(280px, calc(100vw - 2rem - var(--rlim-rail)));
  background: #f7f8f4;
  border: 1px solid var(--rlim-ink);
  padding: 1rem;
  box-shadow: 0 8px 28px rgba(26, 36, 32, 0.18);
  display: none;
}
.rlim-cookie.is-open { display: block; }
.rlim-cookie p {
  font-family: var(--rlim-font-ui);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0 0 0.85rem;
  color: var(--rlim-ink);
}
.rlim-cookie__stack {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.rlim-cookie__stack button {
  font-family: var(--rlim-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--rlim-ink);
  background: transparent;
  cursor: pointer;
  color: var(--rlim-ink);
}
.rlim-cookie__stack button.rlim-cookie__accept {
  background: var(--rlim-tint);
  color: #f4f7f2;
  border-color: var(--rlim-tint);
}
.rlim-cookie__panel {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rlim-line);
  font-family: var(--rlim-font-ui);
  font-size: 0.75rem;
}
.rlim-cookie__panel.is-open { display: block; }
.rlim-cookie__panel label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

@media (max-width: 640px) {
  :root { --rlim-rail: 2.75rem; }
  .rlim-tabs { font-size: 0.72rem; }
  .rlim-tabs a { padding: 0.55rem 0.55rem 0.5rem; }
  .rlim-cookie { right: 0.5rem; bottom: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rlim-shot img { transition: none; }
  .rlim-rail a { transition: none; }
}
