/* =================================================================
   Lamm's Nursery (Lammscape) — styles.css
   Mossy green on warm stone neutrals, DM Sans + Inter
   ================================================================= */

/* ----------------------------------------------------------------
   1. Custom Properties (Light)
   ---------------------------------------------------------------- */
:root {
  --bg: #FAFAF5;
  --bg-alt: #F0EDE5;
  --bg-card: #FFFFFF;
  --bg-dark: #2A3525;
  --text: #2A2820;
  --text-muted: #5A5548;
  --text-faint: #8A8578;
  --primary: #3A6A30;
  --primary-rgb: 58, 106, 48;
  --primary-light: #E5F0E2;
  --accent: #8A6A40;
  --accent-light: #F2EAD8;
  --border: #D8D2C5;
  --border-light: #F0EDE5;
  --nav-height: 4rem;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------------
   2. Dark Mode
   ---------------------------------------------------------------- */
html.dark {
  --bg: #1A1D18;
  --bg-alt: #222518;
  --bg-card: #2A2D25;
  --bg-dark: #0F120A;
  --text: #E5E2D8;
  --text-muted: #A8A298;
  --text-faint: #686258;
  --primary: #5A9A48;
  --primary-rgb: 90, 154, 72;
  --primary-light: #1A2A15;
  --accent: #B08A58;
  --accent-light: #2A2215;
  --border: #353025;
  --border-light: #222518;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.3);
}

/* ----------------------------------------------------------------
   3. Reset & Base
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 2.25rem;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1.125rem, 1.5vw, 1.375rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------
   4. Container
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

/* ----------------------------------------------------------------
   5. Navigation
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background-color: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background-color var(--transition), border-color var(--transition);
}

html.dark .nav {
  background-color: rgba(26, 29, 24, 0.92);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.nav__logo:hover { color: var(--primary); }

.nav__logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.nav__links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.125rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: var(--radius);
  transition: background-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.nav__cta:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
}

@media (min-width: 768px) {
  .nav__hamburger { display: none; }
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition);
}

.theme-toggle:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.theme-toggle svg { width: 1rem; height: 1rem; }
.theme-toggle .icon-moon { display: none; }
html.dark .theme-toggle .icon-sun { display: none; }
html.dark .theme-toggle .icon-moon { display: block; }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  z-index: 99;
  padding: 2rem 1.25rem;
}

.nav__mobile.active { display: flex; flex-direction: column; gap: 0.25rem; }

.nav__mobile a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--primary); }

.nav__mobile .nav__cta {
  margin-top: 1.5rem;
  text-align: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

/* ----------------------------------------------------------------
   6. Section base
   ---------------------------------------------------------------- */
.section {
  padding: 4rem 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--dark {
  background-color: var(--bg-dark);
  color: #E5E2D8;
}

.section--dark h2,
.section--dark h3 {
  color: #FAFAF5;
}

.section__eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 38rem;
  line-height: 1.6;
}

.section--dark .section__subtitle {
  color: #A8A298;
}

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

/* ----------------------------------------------------------------
   7. Hero
   ---------------------------------------------------------------- */
.hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 55% 45%; gap: 3rem; }
  .hero { padding-top: calc(var(--nav-height) + 4rem); padding-bottom: 4rem; }
}

.hero__content { order: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--primary-light);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero__desc {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 30rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero__media {
  order: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (min-width: 768px) {
  .hero__media img { aspect-ratio: 3/4; min-height: 28rem; }
}

/* ----------------------------------------------------------------
   8. Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  color: #fff;
  background-color: var(--primary);
  box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.25);
}

.btn--primary:hover {
  background-color: #2E5426;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

html.dark .btn--primary:hover { background-color: #4A8A3A; }

.btn--outline {
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--white {
  color: var(--bg-dark);
  background-color: #fff;
}

.btn--white:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   9. Cards
   ---------------------------------------------------------------- */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.card__icon svg { width: 1.25rem; height: 1.25rem; }

.card h3 { margin-bottom: 0.625rem; }

.card p { color: var(--text-muted); font-size: 0.9375rem; }

/* ----------------------------------------------------------------
   10. Grid layouts
   ---------------------------------------------------------------- */
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split__media img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ----------------------------------------------------------------
   11. Why / Differentiator
   ---------------------------------------------------------------- */
.why__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); }
}

.why__item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why__number {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why__label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.why__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   12. CTA Banner
   ---------------------------------------------------------------- */
.cta-banner {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.25rem;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

/* ----------------------------------------------------------------
   13. Values
   ---------------------------------------------------------------- */
.values { display: grid; gap: 1.5rem; }

@media (min-width: 768px) {
  .values { grid-template-columns: repeat(3, 1fr); }
}

.value {
  padding: 1.75rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-align: center;
}

.value__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.value__icon svg { width: 1.25rem; height: 1.25rem; }

.value h3 { margin-bottom: 0.5rem; }
.value p { color: var(--text-muted); font-size: 0.9375rem; }

/* ----------------------------------------------------------------
   14. FAQ / Accordion
   ---------------------------------------------------------------- */
.faq__list {
  max-width: 44rem;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-light);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--primary); }

.faq__chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--text-faint);
  transition: transform var(--transition);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer-inner {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   15. Contact Form
   ---------------------------------------------------------------- */
.contact__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact__grid { grid-template-columns: 1fr 1.25fr; gap: 4rem; }
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact__info-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact__info-icon svg { width: 1rem; height: 1rem; }

.contact__info-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}

.contact__info-value {
  color: var(--text);
  font-size: 0.9375rem;
}

.contact__info-value a {
  color: var(--text);
}

.contact__info-value a:hover {
  color: var(--primary);
}

.form { display: flex; flex-direction: column; gap: 1rem; }

.form__group { display: flex; flex-direction: column; gap: 0.375rem; }

.form__row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.form__label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text);
}

.form__input,
.form__select,
.form__textarea {
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-faint);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.form__textarea { resize: vertical; min-height: 7rem; }

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A5548' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.form__consent input[type="checkbox"] {
  margin-top: 0.125rem;
  accent-color: var(--primary);
}

.form__honeypot { position: absolute; left: -9999px; }

.form__feedback {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

.form__feedback--success {
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.form__feedback--error {
  background-color: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

html.dark .form__feedback--error {
  background-color: #2A1515;
  color: #FCA5A5;
  border-color: #5A2020;
}

/* ----------------------------------------------------------------
   16. Service Detail
   ---------------------------------------------------------------- */
.service-detail {
  padding: 2.5rem 0;
}

.service-detail + .service-detail {
  border-top: 1px solid var(--border-light);
}

.service-detail__content h3 {
  margin-bottom: 0.75rem;
}

.service-detail__content p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.service-detail__list {
  list-style: none;
  margin-top: 1rem;
}

.service-detail__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
}

/* ----------------------------------------------------------------
   17. Footer
   ---------------------------------------------------------------- */
.footer {
  background-color: var(--bg-dark);
  color: #A8A298;
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__brand h3 {
  color: #FAFAF5;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}

.footer h4 {
  color: #FAFAF5;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 0.5rem; }

.footer__links a {
  color: #A8A298;
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: #FAFAF5; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.footer__bottom a {
  color: #A8A298;
}

.footer__bottom a:hover { color: #FAFAF5; }

/* ----------------------------------------------------------------
   18. 404 Page
   ---------------------------------------------------------------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
  padding-top: calc(var(--nav-height) + 3rem);
}

.page-404__code {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--primary);
  line-height: 1;
  opacity: 0.2;
}

.page-404 h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.page-404 p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 28rem;
}

/* ----------------------------------------------------------------
   19. Disclaimer Banner
   ---------------------------------------------------------------- */
.disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background-color: var(--bg-dark);
  color: #A8A298;
  font-size: 0.75rem;
  text-align: center;
  padding: 0.625rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

html.dark .disclaimer {
  background-color: #0F120A;
}

.disclaimer a {
  color: rgba(229, 226, 216, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclaimer a:hover {
  color: #FAFAF5;
}

/* ----------------------------------------------------------------
   20. Page Header (inner pages)
   ---------------------------------------------------------------- */
.page-header {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 2rem;
  background-color: var(--bg-alt);
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header .section__subtitle {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .page-header {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 3rem;
  }
}

/* ----------------------------------------------------------------
   21. Utility Classes
   ---------------------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.gap-1 { gap: 0.5rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ----------------------------------------------------------------
   22. Animations
   ---------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------------------------------------------------
   23. Print
   ---------------------------------------------------------------- */
@media print {
  .nav,
  .disclaimer,
  .nav__mobile,
  .cta-banner,
  .theme-toggle,
  .nav__hamburger {
    display: none !important;
  }
  body { padding-bottom: 0; }
  .section { padding: 1.5rem 0; }
}
