/* ================================================================
   ORNAPLANT — Global Stylesheet
   Fonts : Plus Jakarta Sans (heading) · Manrope (body)
   Icons : Material Symbols Outlined (CDN)
   Style : Organic Biophilic · Mobile-first · WCAG AA
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --green-950: #203b31;
  --green-800: #396452;
  --green-600: #56816d;
  --green-100: #eef4ec;
  --magenta-700: #b43c6d;
  --magenta-900: #8f2d55;
  --magenta-100: #f8eaf1;
  --earth-700: #7b674c;
  --earth-200: #ddd2bf;
  --white: #ffffff;
  --cream: #f8f7f1;
  --text: #223029;
  --muted: #69776d;
  --line: rgba(51, 92, 75, 0.16);
  --shadow: 0 18px 48px rgba(31, 53, 44, 0.12);
  --shadow-sm: 0 4px 16px rgba(31, 53, 44, 0.08);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --header-height: 64px;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease: 200ms ease;
}

/* ── RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100dvh;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
}

ul,
ol {
  list-style: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  max-width: 68ch;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

hr.divider {
  height: 1px;
  border: none;
  background: var(--line);
}

/* ── HEADER & NAV ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--green-800);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--ease), background var(--ease);
}

.site-header.scrolled {
  background: var(--green-800);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand img {
  height: 50px;
  width: auto;
}

.brand-symbol-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .nav-brand img {
    height: 28px;
  }

  .brand-symbol-img {
    width: 60px;
    height: 60px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: var(--green-800) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
}

.nav-cta:hover {
  background: var(--green-950) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  transition: background var(--ease);
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover {
  background: var(--green-100);
}

.nav-toggle .material-symbols-outlined {
  font-size: 1.5rem;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-950);
  box-shadow: 0 8px 24px rgba(32, 59, 49, 0.28);
}

.btn-accent {
  background: var(--magenta-700);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--magenta-900);
  box-shadow: 0 8px 24px rgba(143, 45, 85, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-800);
}

.btn-outline:hover {
  background: var(--green-100);
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
}

.btn-ghost:hover {
  background: var(--green-100);
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.btn .material-symbols-outlined {
  font-size: 1.1em;
}

/* ── BADGES ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
  text-transform: capitalize;
  white-space: nowrap;
}

.badge-green {
  background: var(--green-100);
  color: var(--green-800);
}

.badge-magenta {
  background: var(--magenta-100);
  color: var(--magenta-900);
}

.badge-earth {
  background: var(--earth-200);
  color: var(--earth-700);
}

.badge-available {
  background: #dcfce7;
  color: #166534;
}

.badge-order {
  background: #fef9c3;
  color: #854d0e;
}

.badge-sold {
  background: #fee2e2;
  color: #991b1b;
}

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 53, 44, 0.03);
  transition: box-shadow var(--ease), transform var(--ease);
}

.card:hover {
  box-shadow: 0 15px 35px rgba(31, 53, 44, 0.08);
  transform: translateY(-3px);
}

/* ── PLANT CARD ────────────────────────────────────────────── */
.plant-card {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  height: 100%;
}

.plant-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #fbfbfb;
}

.plant-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.plant-card:hover .plant-card-img img {
  transform: scale(1.04);
}

.plant-card-img .badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
}

.plant-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.plant-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}

.plant-card-tags .badge {
  background: #eef4ec;
  color: #396452;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  padding: 0.25rem 0.625rem;
}

.plant-card-name {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}

.plant-card-sci {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.plant-card-sku {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #a0b0a6;
  margin-top: auto;
  padding-top: 0.5rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.plant-card-meta {
  display: flex;
  gap: 0.875rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.plant-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.plant-card-meta-item .material-symbols-outlined {
  font-size: 1rem;
  color: #8da094;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
}

/* ── SECTION HEADING ───────────────────────────────────────── */
.section-heading {
  margin-bottom: 3rem;
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta-700);
  margin-bottom: 0.75rem;
}

.section-heading h2 {
  color: var(--text);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.0625rem;
  margin-top: 0.75rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ── EYEBROW (standalone) ──────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta-700);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--ease);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 36px;
  filter: none;
  mix-blend-mode: normal;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 28ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.9375rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.36);
}

/* ── BACK TO TOP ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(32, 59, 49, 0.3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--green-950);
}

.back-to-top .material-symbols-outlined {
  font-size: 1.25rem;
}

/* ── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── PAGE HERO (interior pages) ────────────────────────────── */
.page-hero {
  background: var(--green-950);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 80% at 80% 50%, rgba(86, 129, 109, 0.18) 0%, transparent 70%);
}

.page-hero .eyebrow {
  color: #c97ca3;
}

.page-hero h1 {
  color: var(--white);
  max-width: 20ch;
  margin-top: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
  margin-top: 0.875rem;
  max-width: 56ch;
}

/* ── HERO (homepage) ───────────────────────────────────────── */
.hero {
  background-image: url('assets/IMG_8504.jpg');
  background-size: cover;
  background-position: center;
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right,
      rgba(10, 30, 18, 0.82) 0%,
      rgba(10, 30, 18, 0.65) 45%,
      rgba(10, 30, 18, 0.15) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 680px;
  padding: 5rem 0;
}

.hero-content .eyebrow {
  color: #c97ca3;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--white);
  display: block;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.stats-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.5rem 2.5rem;
  border-right: 1px solid var(--line);
  flex: 1;
  min-width: 160px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .material-symbols-outlined {
  color: var(--green-600);
  font-size: 1.625rem;
  flex-shrink: 0;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ── SERVICE CARD ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-2px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--green-800);
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: none;
}

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(86, 129, 109, 0.25) 0%, transparent 60%);
}

.cta-band h2 {
  color: var(--white);
  position: relative;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  margin: 1rem auto 2.25rem;
  font-size: 1.0625rem;
}

.cta-band .btn-accent {
  position: relative;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
}

/* ── LOCATION CARD ─────────────────────────────────────────── */
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.location-map {
  width: 100%;
  height: 240px;
  border: none;
  background: var(--green-100);
  display: block;
}

.location-body {
  padding: 1.5rem;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta-700);
  margin-bottom: 0.75rem;
}

.location-body h3 {
  margin-bottom: 0.625rem;
}

.location-address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  line-height: 1.55;
}

.location-address .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── HOURS CARD ────────────────────────────────────────────── */
.hours-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hours-card-header {
  background: var(--green-100);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.hours-card-header h3 {
  font-size: 1.125rem;
}

.hours-card-header p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
  max-width: none;
}

table.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0.875rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.hours-table thead th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
}

.hours-table tbody tr:last-child td {
  border-bottom: none;
}

.hours-table td.day {
  font-weight: 600;
  color: var(--text);
}

.hours-table td.closed {
  color: var(--muted);
  font-style: italic;
}

.hours-table td.open {
  color: var(--green-800);
  font-weight: 600;
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--ease);
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  box-shadow: var(--shadow-sm);
}

a.contact-method:hover .contact-method-value {
  color: var(--green-800);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-green {
  background: var(--green-100);
}

.ci-green .material-symbols-outlined {
  color: var(--green-800);
}

.ci-magenta {
  background: var(--magenta-100);
}

.ci-magenta .material-symbols-outlined {
  color: var(--magenta-700);
}

.ci-earth {
  background: var(--earth-200);
}

.ci-earth .material-symbols-outlined {
  color: var(--earth-700);
}

.contact-icon .material-symbols-outlined {
  font-size: 1.375rem;
}

.contact-method-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.contact-method-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

/* ── CATALOG LAYOUT ────────────────────────────────────────── */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.filter-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
}

.filter-panel>h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.filter-group {
  margin-bottom: 1.375rem;
}

.filter-group-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: block;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.25rem 0;
  transition: color var(--ease);
}

.filter-option:hover {
  color: var(--text);
}

.filter-option input {
  accent-color: var(--green-800);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex-shrink: 0;
}

.filter-reset {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.625rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: border-color var(--ease), color var(--ease);
}

.filter-reset:hover {
  border-color: var(--green-800);
  color: var(--green-800);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.catalog-count {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

.catalog-search {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 320px;
}

.catalog-search input {
  width: 100%;
  padding: 0.625rem 0.875rem 0.625rem 2.375rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.875rem;
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.catalog-search input::placeholder {
  color: var(--muted);
}

.catalog-search input:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(86, 129, 109, 0.12);
}

.catalog-search .si {
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  display: flex;
}

.catalog-search .si .material-symbols-outlined {
  font-size: 1.125rem;
}

/* ── EMPTY STATE ───────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  grid-column: 1/-1;
}

.empty-state .material-symbols-outlined {
  font-size: 3rem;
  color: var(--earth-200);
  margin: 0 auto 1rem;
  display: block;
}

.empty-state h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* ── NOSOTROS ──────────────────────────────────────────────── */
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--magenta-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-icon .material-symbols-outlined {
  font-size: 1.375rem;
  color: var(--magenta-700);
}

.value-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: none;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/6;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }


  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-img {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--green-800);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.125rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
  }

  .nav-cta {
    background: var(--green-950) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .stats-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .grid-auto {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-search {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
  }

  .grid-auto {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }
}
