:root {
  --bg: #0e0f10;
  --fg: #e7e7e7;
  --muted: #a5a7ab;
  --ink: #111;
  --line: #1a1b1d;
  --line-2: #2a2c2f;
  --acc: #9ce60f;
  --acc-2: #77c40c;
  --card: #131416;
  --ghost: #0b0c0d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafafa;
    --fg: #101213;
    --muted: #656a6f;
    --ink: #fff;
    --line: #dfe1e4;
    --line-2: #cfd3d8;
    --card: #ffffff;
    --ghost: #f5f6f7;
    --shadow: 0 24px 70px rgba(14, 16, 18, 0.08);
  }
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: radial-gradient(
      1200px 700px at 10% -10%,
      #111 10%,
      transparent 60%
    ),
    radial-gradient(900px 600px at 110% 10%, #141516 10%, transparent 60%),
    var(--bg);
  color: var(--fg);
  font: 16px/1.55 Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.grid {
  display: grid;
  gap: 16px;
}

/* Buttons (brutalist) */
.btn {
  --br: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7ch;
  border: 2px solid var(--fg);
  background: transparent;
  color: var(--fg);
  padding: 0.8rem 1.1rem;
  border-radius: var(--br);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 6px 6px 0 0 var(--ink);
  transition: transform 0.06s ease, box-shadow 0.06s ease;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--ink);
}
.btn--acc {
  background: linear-gradient(180deg, var(--acc), var(--acc-2));
  border-color: var(--ink);
  color: #0b0c0d;
}
.btn--ghost {
  border-color: var(--line-2);
  color: var(--fg);
}
.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(12, 13, 14, 0.85),
    rgba(12, 13, 14, 0.65)
  );
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 2px solid var(--line);
}
@media (prefers-color-scheme: light) {
  .header {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7)
    );
  }
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: conic-gradient(from 0deg, var(--acc), #1f1, var(--acc));
  color: #111;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.logo__text {
  font: 800 1.05rem/1 JetBrains Mono, monospace;
  letter-spacing: 0.04em;
}
.nav {
  display: none;
}
.nav__list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  border: 2px solid transparent;
}
.nav__link:hover {
  border-color: var(--line-2);
  background: var(--ghost);
}
.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--fg);
  border-radius: 10px;
  background: transparent;
}
.burger span {
  width: 20px;
  height: 2px;
  background: var(--fg);
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--fg);
}
.burger span::before {
  top: -6px;
}
.burger span::after {
  bottom: -6px;
}
@media (min-width: 980px) {
  .nav {
    display: block;
  }
  .burger {
    display: none;
  }
}

/* Mobile menu (slide-in) */
.mobile {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.mobile.is-open {
  display: block;
}
.mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86%, 420px);
  background: var(--card);
  border-left: 2px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.mobile.is-open .mobile__panel {
  transform: translateX(0);
}
.mobile__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.mobile__link {
  display: block;
  padding: 0.9rem 1rem;
  border: 2px solid var(--line-2);
  border-radius: 12px;
  background: var(--ghost);
  font-weight: 800;
}

/* Hero */
.hero {
  position: relative;
  border-bottom: 2px solid var(--line);
  overflow: hidden;
}
.hero__wrap {
  display: grid;
  gap: 18px;
  padding: 36px 0;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero__wrap {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 54px 0;
  }
}
.hero__title {
  font: 800 clamp(2rem, 4.8vw, 3.6rem) / 1.05 JetBrains Mono, monospace;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero__subtitle {
  max-width: 66ch;
  color: var(--muted);
}
.hero__media {
  background-image: url("images/hero.webp");
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  border: 2px solid var(--line-2);
  background: linear-gradient(135deg, #1b1d1f, #151618);
  box-shadow: 12px 12px 0 0 var(--ink);
}
.hero__media::after {
  content: "Urban bed • Hydro • Balcony";
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--ink);
  color: #bfe87a;
  border: 2px solid #bfe87a;
  border-radius: 10px;
  padding: 0.35rem 0.6rem;
  font: 700 0.8rem/1 JetBrains Mono, monospace;
}

/* Sections */
.section {
  padding: 48px 0;
  border-bottom: 2px solid var(--line);
}
.s-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.s-title {
  font: 800 1.4rem/1 JetBrains Mono, monospace;
  margin: 0;
  text-transform: uppercase;
}
.s-sub {
  margin: 0;
  color: var(--muted);
}

/* Cards */
.card {
  background: var(--card);
  border: 2px solid var(--line-2);
  border-radius: 18px;
  box-shadow: 12px 12px 0 0 var(--ink);
  padding: 14px;
}

/* Plants */
.plants {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.plant {
  display: grid;
  gap: 10px;
}
.plant__media {
  aspect-ratio: 4/3;
  border: 2px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  background: var(--ghost);
}
.pill {
  display: inline-block;
  border: 2px solid var(--line-2);
  background: var(--ghost);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font: 700 0.75rem/1 JetBrains Mono, monospace;
}

/* Plans (pricing) */
.pricing {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.price {
  display: grid;
  gap: 12px;
}
.price__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price__num {
  font: 800 1.6rem/1 JetBrains Mono, monospace;
  color: var(--acc);
}
.price ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.price li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acc);
}

/* Events */
.events {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.event {
  display: grid;
  gap: 8px;
}
.event__date {
  display: inline-block;
  border: 2px solid var(--line-2);
  border-radius: 10px;
  background: var(--ghost);
  padding: 0.25rem 0.6rem;
  font-weight: 800;
}
.event__meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
  flex-wrap: wrap;
}

/* FAQ */
.faq details {
  border: 2px solid var(--line-2);
  border-radius: 14px;
  background: var(--ghost);
  padding: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}

/* Testimonials */
.t-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.t-stars {
  color: #c8ff6b;
  letter-spacing: 2px;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, transparent, #0c0d0e);
}
@media (prefers-color-scheme: light) {
  .footer {
    background: linear-gradient(180deg, transparent, #f3f5f6);
  }
}
.footer__grid {
  display: grid;
  gap: 18px;
  padding: 28px 0;
}
@media (min-width: 980px) {
  .footer__grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }
}
@media (max-width: 700px) {
  #ctaDesk {
    display: none !important;
  }
}
.footer__title {
  font: 800 0.95rem/1 JetBrains Mono, monospace;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--line-2);
  background: var(--ghost);
  border-radius: 12px;
  color: inherit;
}

/* Utilities */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.no-scroll {
  overflow: hidden;
}

/* Cookie banner — UrbanGardena (brutalist) */
:root {
  --ug-bg: #0e0f10;
  --ug-fg: #e7e7e7;
  --ug-muted: #a5a7ab;
  --ug-ink: #111;
  --ug-line: #1a1b1d;
  --ug-line2: #2a2c2f;
  --ug-card: #131416;
  --ug-ghost: #0b0c0d;
  --ug-acc: #9ce60f;
  --ug-acc2: #77c40c;
  --ug-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
@media (prefers-color-scheme: light) {
  :root {
    --ug-bg: #fafafa;
    --ug-fg: #101213;
    --ug-muted: #656a6f;
    --ug-ink: #fff;
    --ug-line: #dfe1e4;
    --ug-line2: #cfd3d8;
    --ug-card: #fff;
    --ug-ghost: #f5f6f7;
    --ug-shadow: 0 24px 70px rgba(14, 16, 18, 0.08);
  }
}

.ug-ck {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  display: none;
  padding: 14px;
  background: transparent;
}
.ug-ck.is-open {
  display: block;
}
.ug-ck__panel {
  margin: 0 auto;
  width: min(1100px, 100%);
  background: var(--ug-card);
  border: 2px solid var(--ug-line2);
  border-radius: 18px;
  box-shadow: 12px 12px 0 0 var(--ug-ink);
  padding: 16px;
  color: var(--ug-fg);
}
.ug-ck__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.ug-ck__title {
  margin: 0;
  font: 800 1.05rem/1 JetBrains Mono, monospace;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.ug-ck__x {
  border: 2px solid var(--ug-line2);
  background: var(--ug-ghost);
  color: inherit;
  border-radius: 12px;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}
.ug-ck__text {
  margin: 0 0 6px;
  color: var(--ug-muted);
}
.ug-ck__text a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px dashed var(--ug-line2);
}

.ug-ck__btn,
.ug-ck__btn--ghost,
.ug-ck__btn--acc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7ch;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 2px solid var(--ug-fg);
  background: transparent;
  color: var(--ug-fg);
  box-shadow: 6px 6px 0 0 var(--ug-ink);
  transition: transform 0.06s, box-shadow 0.06s;
  cursor: pointer;
}
.ug-ck__btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--ug-ink);
}
.ug-ck__btn--ghost {
  border-color: var(--ug-line2);
}
.ug-ck__btn--acc {
  background: linear-gradient(180deg, var(--ug-acc), var(--ug-acc2));
  border-color: var(--ug-ink);
  color: #0b0c0d;
}

.ug-ck__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 10px;
}
.ug-ck__toggle,
.ug-ck__form {
  margin-top: 6px;
}
.ug-ck__form {
  display: grid;
  gap: 8px;
}
.ug-ck__opt {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}
.ug-ck__btn--full {
  width: 100%;
}
