:root {
  --bg: #071427;
  --bg-2: #0d2342;
  --panel: rgba(10, 28, 52, 0.88);
  --panel-strong: rgba(8, 18, 34, 0.95);
  --surface: #f4f0e8;
  --surface-2: #e5dfd1;
  --text: #eef3fb;
  --text-muted: #b6c4d9;
  --text-dark: #102038;
  --line: rgba(197, 213, 233, 0.16);
  --accent: #ea5827;
  --accent-2: #f28a3a;
  --accent-soft: rgba(234, 88, 39, 0.12);
  --shadow: 0 24px 60px rgba(2, 10, 23, 0.28);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --heading: "Rajdhani", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(234, 88, 39, 0.2), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(44, 96, 173, 0.28), transparent 24%),
    linear-gradient(140deg, #071427 0%, #0c1d36 38%, #0a2f52 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 95%);
  opacity: 0.28;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(7, 20, 39, 0.92), rgba(7, 20, 39, 0.7));
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand__logo {
  width: 250px;
  height: 84px;
  flex-shrink: 0;
  background-image: url("logo-header.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  filter: drop-shadow(0 12px 18px rgba(1, 8, 19, 0.18));
}

.brand__copy {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-nav a {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav .site-nav__cta {
  color: var(--text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 28px rgba(234, 88, 39, 0.2);
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero__content,
.hero__art {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero__content::after,
.hero__art::after,
.callout::after,
.content-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 138, 58, 0.2), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #ffb18f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--heading);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

p {
  margin: 0;
  line-height: 1.7;
}

.hero__lede,
.section-copy p,
.content-panel p,
.faq-item p,
.rich-copy p,
.location-list li,
.feature-list li {
  color: var(--text-muted);
}

.hero__lede {
  max-width: 56ch;
  margin-top: 1rem;
  font-size: 1.04rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 30px rgba(234, 88, 39, 0.24);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.4rem;
  font-family: var(--heading);
}

.stat-card span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-card-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.hero-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.hero-card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.hero-card__body {
  padding: 1rem;
}

.hero-card__body strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.35rem;
}

.hero-card__body span {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.section {
  padding: 1.25rem 0 4rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading--inline {
  align-items: center;
}

.section-copy {
  max-width: 66ch;
}

.section-kicker {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.content-panel {
  position: relative;
  overflow: hidden;
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: var(--shadow);
}

.content-panel--light {
  color: var(--text-dark);
  border-color: rgba(16, 32, 56, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.72)),
    var(--surface);
}

.content-panel--light p,
.content-panel--light li,
.content-panel--light .section-kicker {
  color: rgba(16, 32, 56, 0.82);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-card,
.callout,
.faq-item,
.info-card,
.location-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.category-card strong,
.info-card strong,
.callout strong,
.faq-item strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--heading);
  font-size: 1.5rem;
}

.category-card p,
.info-card p,
.callout p {
  color: var(--text-muted);
}

.category-card__count {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.8rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffc6af;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.feature-photo img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.feature-photo figcaption {
  padding: 0.9rem 1rem 1rem;
  font-family: var(--heading);
  font-size: 1.3rem;
}

.feature-photo small {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-family: var(--body);
  font-size: 0.9rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.rich-copy {
  display: grid;
  gap: 1rem;
}

.feature-list,
.location-list,
.plant-card__facts,
.keyword-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list,
.location-list {
  display: grid;
  gap: 0.8rem;
}

.feature-list li,
.location-list li {
  padding-left: 1rem;
  border-left: 3px solid rgba(234, 88, 39, 0.4);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.keyword-list li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.catalogue-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
}

.search-input {
  width: 100%;
  min-height: 54px;
  padding: 0 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.results-copy {
  color: var(--text-muted);
  font-weight: 700;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.filter-button {
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--text);
  border-color: rgba(242, 138, 58, 0.5);
  background: rgba(234, 88, 39, 0.18);
  transform: translateY(-1px);
}

.catalogue-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.catalogue-index a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.catalogue-section {
  margin-bottom: 2rem;
}

.plant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plant-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.plant-card__media {
  min-height: 220px;
  background:
    linear-gradient(150deg, rgba(28, 60, 105, 0.85), rgba(7, 20, 39, 0.85)),
    #081b33;
}

.plant-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.plant-card__placeholder {
  display: grid;
  align-content: end;
  gap: 0.75rem;
  height: 220px;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(234, 88, 39, 0.16), transparent 52%),
    linear-gradient(160deg, rgba(38, 82, 144, 0.36), rgba(7, 20, 39, 0.96));
}

.plant-card__placeholder span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffcfbd;
}

.plant-card__placeholder strong {
  font-size: 1.45rem;
  font-family: var(--heading);
}

.plant-card__placeholder p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.plant-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
}

.plant-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.plant-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plant-card__facts {
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.plant-card__facts strong {
  color: var(--text);
}

.plant-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 0.4rem;
}

.plant-card__actions a {
  color: #ffc3a5;
  font-size: 0.92rem;
  font-weight: 700;
}

.plant-card__actions span {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.plant-card__actions a:hover,
.plant-card__actions a:focus-visible {
  color: #ffe2d3;
}

.faq-grid,
.info-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(242, 138, 58, 0.26);
  background:
    linear-gradient(135deg, rgba(234, 88, 39, 0.18), rgba(255, 255, 255, 0.04)),
    var(--panel);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 1rem 0 3rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 1rem;
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(6, 19, 37, 0.88);
}

.footer-brand .brand__logo {
  width: 230px;
  height: 76px;
}

.footer-title {
  margin-bottom: 0.85rem;
  color: var(--text);
  font-family: var(--heading);
  font-size: 1.5rem;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-list a,
.footer-copy,
.footer-note {
  color: var(--text-muted);
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero__grid,
  .two-column,
  .cta-banner,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .plant-grid,
  .feature-strip,
  .faq-grid,
  .info-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand__logo {
    width: 230px;
    height: 76px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(7, 20, 39, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .search-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 4rem;
  }

  .hero__content,
  .hero__art,
  .content-panel,
  .site-footer__inner,
  .cta-banner {
    padding: 1.3rem;
  }

  .card-grid,
  .plant-grid,
  .feature-strip,
  .faq-grid,
  .info-grid,
  .location-grid,
  .hero-card-stack,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .brand__logo {
    width: 200px;
    height: 64px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .container {
    width: min(calc(100% - 1.15rem), var(--max-width));
  }
}
