/* ═════════════════════════════════════════════
   PINKSTAR CLEANING — DESIGN SYSTEM v2
   Ported from the "extraordinary" reference build:
   Deeper dark palette · Glass morphism · Rose gradients
   Noise + grid textures · Sage accent · Rounded cards
   ═════════════════════════════════════════════ */

:root {
  /* ── Palette ── */
  --bg:          #0d1410;
  --bg-soft:     #111812;
  --forest:      #0d1410;      /* legacy alias */
  --forest-90:   #111a16;
  --forest-80:   #1c2820;
  --forest-70:   #2a3d35;

  --panel:       rgba(22, 32, 26, 0.88);
  --panel2:      rgba(30, 42, 35, 0.92);

  --text:        #f4eeeb;
  --cream:       #f4eeeb;      /* legacy alias */
  --cream-warm:  rgba(244, 238, 235, 0.75);
  --muted:       rgba(244, 238, 235, 0.60);

  --rose:        #d4a5a0;
  --rose-bright: #ecc4c0;
  --rose-light:  #ecc4c0;      /* legacy alias */
  --rose-deep:   #b88580;
  --rose-dim:    rgba(212, 165, 160, 0.12);

  --sage:        #7b9d8c;
  --sage-dim:    rgba(123, 157, 140, 0.14);
  --gold:        #c9a96e;

  --line:        rgba(232, 197, 192, 0.11);
  --line-strong: rgba(232, 197, 192, 0.26);
  --rule-dark:   rgba(232, 197, 192, 0.11);
  --rule-light:  rgba(232, 197, 192, 0.11);

  --shadow:      0 28px 70px rgba(0, 0, 0, 0.45);
  --shadow-lg:   0 32px 80px rgba(0, 0, 0, 0.55);

  /* ── Radii ── */
  --r:           24px;
  --r-lg:        36px;
  --r-sm:        14px;
  --r-pill:      999px;

  /* ── Type ── */
  --serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:   'Jost', 'Inter', -apple-system, sans-serif;
  --mono:   'JetBrains Mono', 'Courier New', monospace;

  --t-xs:   0.68rem;
  --t-sm:   0.85rem;
  --t-base: 1rem;
  --t-lg:   1.15rem;
  --t-xl:   1.4rem;
  --t-2xl:  1.8rem;
  --t-3xl:  2.5rem;
  --t-4xl:  3.5rem;
  --t-5xl:  5rem;
  --t-6xl:  7rem;

  /* ── Spacing ── */
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --max-w:  1240px;
  --s-1: 0.5rem; --s-2: 1rem; --s-3: 1.5rem;
  --s-4: 2rem;   --s-5: 3rem; --s-6: 4rem;
  --s-7: 5rem;   --s-8: 7rem; --s-9: 9rem;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: var(--t-base);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

/* ── NOISE GRAIN OVERLAY ── */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── SUBTLE GRID TEXTURE ── */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 100%);
}

/* Canvas particle field */
#particles {
  position: fixed; inset: 0;
  z-index: -1; pointer-events: none;
}

/* Floating stars container */
#float-stars {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}
.float-star {
  position: fixed;
  font-size: 0.7rem;
  color: var(--rose);
  opacity: 0;
  pointer-events: none;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-100vh) rotate(360deg); }
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--rose); color: var(--bg); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.italic { font-style: italic; color: var(--rose-bright); }

/* ── GLASS ── */
.glass {
  background: var(--panel);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-bright);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.eyebrow.dark { color: var(--rose-deep); }
.eyebrow.dark::before { background: linear-gradient(90deg, transparent, var(--rose-deep)); }

/* ── STATUS CHIP ── */
.chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 0.9rem; border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 10px rgba(123, 157, 140, 0.5);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ═══════════════════════════════════════
   RIBBON (top marquee — thin utility bar)
   ═══════════════════════════════════════ */
.ribbon {
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  overflow: hidden;
  position: relative; z-index: 5;
}
.ribbon-track {
  display: flex; gap: 3rem;
  animation: ribbonScroll 45s linear infinite;
  width: max-content;
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.ribbon-track span {
  display: flex; align-items: center; gap: 3rem;
  white-space: nowrap;
}
.ribbon-track span::after {
  content: '✦';
  color: var(--rose);
  opacity: 0.6;
}
@keyframes ribbonScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   NAV — glass pill
   ═══════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  padding: 0.85rem var(--gutter);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(13, 20, 16, 0.7);
  border-bottom: none;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--r-pill);
  background: var(--panel);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose-bright);
}
.nav-brand-star {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 40% 40%, rgba(212, 165, 160, 0.18), transparent 70%);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--rose-bright);
  box-shadow: 0 0 20px rgba(212, 165, 160, 0.12);
  animation: orbPulse 3s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 165, 160, 0.12); }
  50%      { box-shadow: 0 0 32px rgba(212, 165, 160, 0.28); }
}

.nav-links {
  display: flex; gap: 1.6rem; align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.25s;
  padding: 0.5rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-bright); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.72rem 1.3rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--rose-bright), var(--rose));
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(212, 165, 160, 0.22);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(212, 165, 160, 0.35);
}

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 0.5rem;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--rose-bright);
  transition: transform 0.3s;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
    position: absolute; top: calc(100% + 0.5rem); left: var(--gutter); right: var(--gutter);
    flex-direction: column;
    background: var(--panel);
    backdrop-filter: blur(22px);
    padding: 1.5rem;
    border-radius: var(--r);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; font-size: 1rem; }
  .nav-burger { display: flex; }
  .nav-cta { padding: 0.625rem 1.125rem; font-size: 0.8rem; }
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.6rem;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--rose-bright), var(--rose));
  color: var(--bg);
  box-shadow: 0 12px 30px rgba(212, 165, 160, 0.25);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(212, 165, 160, 0.38); }
.btn-ghost, .btn-outline {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.btn-ghost:hover, .btn-outline:hover { border-color: var(--rose); color: var(--rose-bright); }
.btn-forest {
  background: var(--panel2);
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section {
  padding: 7rem 0;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Any "light" section now becomes a darker glass panel — light-on-dark reversal
   isn't in the extraordinary aesthetic; keep it all-dark. */
.section-light, .section-warm {
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 165, 160, 0.04), transparent 30%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  color: var(--text);
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4, .section-light h5,
.section-warm  h1, .section-warm  h2, .section-warm  h3, .section-warm  h4, .section-warm  h5 {
  color: var(--text);
}
.section-light .italic, .section-warm .italic { color: var(--rose-bright); }

/* Section title used on all sub-pages */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.92; font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 1.1rem;
}
.section-title em, .section-title .italic {
  font-style: italic;
  color: var(--rose-bright);
}

.section-copy {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

/* ═══════════════════════════════════════
   PAGE HERO (all non-homepage pages)
   ═══════════════════════════════════════ */
.page-hero {
  padding: 3rem var(--gutter) 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212, 165, 160, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.page-hero h1 .italic {
  font-style: italic;
  color: var(--rose-bright);
}
.page-hero p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 640px;
}
.page-hero p strong { color: var(--text); font-weight: 500; }

/* ═══════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════ */
.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.breadcrumbs a { color: var(--muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--rose-bright); }
.breadcrumbs .separator { opacity: 0.4; color: var(--rose); }

/* ═══════════════════════════════════════
   PRINCIPLES MARQUEE (secondary ticker style)
   ═══════════════════════════════════════ */
.principles {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.principles-track {
  display: flex; gap: 3rem;
  width: max-content; white-space: nowrap;
  animation: marquee 50s linear infinite;
  padding: 0.9rem 0;
}
.principles-track .item {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text);
  white-space: nowrap;
}
.principles-track .item .accent { color: var(--rose-bright); }
.principles-track .divider {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 10px rgba(212, 165, 160, 0.5);
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   SERVICE TILES (glass cards, hover animation)
   ═══════════════════════════════════════ */
.service-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.service-tile {
  border-radius: var(--r);
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: block;
}
.service-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 165, 160, 0.28);
}
.service-tile::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-tile:hover::before { transform: scaleX(1); }
.service-tile::after {
  content: "";
  position: absolute; bottom: -60px; right: -60px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 160, 0.06), transparent 70%);
  pointer-events: none;
}

.service-tile-num {
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
}
.service-tile h3 {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--rose-bright);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.service-tile p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.service-tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.service-tile:hover .service-tile-arrow {
  color: var(--rose-bright);
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .service-tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .service-tiles { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testimonial {
  border-radius: var(--r);
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.testimonial:hover {
  border-color: rgba(212, 165, 160, 0.28);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose);
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.testimonial-author .name { color: var(--rose-bright); display: block; margin-bottom: 0.25rem; }

@media (max-width: 1100px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 0.75rem;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item.open { border-color: rgba(212, 165, 160, 0.28); }

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--rose-bright);
  font-weight: 400;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--rose); }
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--rose-bright);
  transition: transform 0.4s var(--ease-out), background 0.3s, border-color 0.3s;
  font-size: 0.875rem;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--rose-bright), var(--rose));
  color: var(--bg);
  border-color: var(--rose);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-in-out);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.75rem 1.75rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 780px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 3rem var(--gutter) 3rem;
  position: relative;
  z-index: 5;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  border-radius: var(--r);
  background: var(--panel);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.footer-brand {
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
.footer-brand .nav-brand {
  font-size: 1rem;
  color: var(--rose-bright);
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 340px;
}
.footer-badges {
  display: flex; gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-badges span {
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose);
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-bright);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-col a {
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose-bright); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 920px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible, .reveal.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   FORM STYLES
   ═══════════════════════════════════════ */
.form-field {
  display: flex; flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-field label {
  font-family: var(--sans);
  font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.form-field label .required { color: var(--rose); margin-left: 4px; }
.form-input, .form-select, .form-textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none; appearance: none;
}
.form-select option { background: var(--forest-80); color: var(--text); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(236, 196, 192, 0.5);
  box-shadow: 0 0 0 4px rgba(236, 196, 192, 0.07);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4a5a0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-textarea {
  min-height: 130px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
