/* ---------- Tokens ---------- */
:root {
  --green-900: #093028;
  --green-800: #0f4d40;
  --green-700: #156a58;
  --green-100: #e6f1ed;
  --green-50:  #f3f8f6;

  --cream-100: #f4ecdf;
  --cream-200: #e9dcc6;

  --gold-500:  #e8b547;
  --gold-400:  #efc66c;

  --coral-500: #d8636a;
  --coral-400: #e08087;

  --ink-900:   #0c1f1b;
  --ink-700:   #2c3a36;
  --ink-500:   #5a6b66;
  --ink-300:   #97a4a0;
  --line:      #d8e2dd;
  --bg:        #fbfcfa;
  --white:     #ffffff;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(9,48,40,.06), 0 2px 6px rgba(9,48,40,.04);
  --shadow:    0 6px 18px rgba(9,48,40,.08), 0 2px 6px rgba(9,48,40,.05);
  --shadow-lg: 0 24px 60px -20px rgba(9,48,40,.25);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-script: 'Caveat', cursive;

  --container: 1180px;
  --gutter: clamp(1rem, 2.5vw, 2rem);

  --header-h: 72px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; color: var(--ink-900); letter-spacing: -.01em; }
h1 { font-size: clamp(2.25rem, 4.5vw + 1rem, 4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 1.5vw + 1.2rem, 2.5rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1em; }

a { color: var(--green-800); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { padding: 0; margin: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--green-800);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-800);
  margin: 0 0 .75rem;
}
.eyebrow-light { color: var(--gold-400); }

.accent { color: var(--coral-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-700); box-shadow: var(--shadow); }

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

.btn-sm { padding: .6rem 1.1rem; font-size: .92rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 250, .88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 252, 250, .96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink-900);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.brand-name {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.01em;
}
.brand-name-green { color: var(--green-800); }
.brand-name-vibe {
  font-family: var(--font-script);
  color: var(--gold-500);
  font-size: 1.55rem;
  margin-left: 2px;
}

/* ---------- Navigation ---------- */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list a {
  color: var(--ink-700);
  font-weight: 500;
  padding: .35rem 0;
  position: relative;
}
.nav-list a:not(.nav-cta):hover { color: var(--green-800); text-decoration: none; }
.nav-list a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--green-800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-list a:not(.nav-cta):hover::after,
.nav-list a:not(.nav-cta):focus-visible::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green-800);
  color: #fff !important;
  padding: .55rem 1.1rem !important;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--green-700); text-decoration: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: .5rem var(--gutter) 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    align-items: stretch;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-list[data-open="true"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: .9rem .25rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-list li:last-child a { border-bottom: 0; }
  .nav-list a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    margin-top: .75rem;
    text-align: center;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(232,181,71,.18), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(216,99,106,.10), transparent 60%),
    linear-gradient(180deg, var(--green-50), var(--bg));
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.leaf {
  position: absolute;
  display: block;
  width: 220px; height: 220px;
  border-radius: 50% 0 50% 0;
  background: radial-gradient(circle at 30% 30%, rgba(21,106,88,.18), rgba(21,106,88,.04) 70%);
  filter: blur(.5px);
}
.leaf-1 { top: -60px; right: -60px; transform: rotate(20deg); }
.leaf-2 { bottom: -80px; left: -40px; transform: rotate(-15deg); width: 280px; height: 280px; }
.leaf-3 { top: 40%; right: 8%; width: 120px; height: 120px; opacity: .6; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  position: relative;
}

.hero-content { max-width: 36rem; }

.hero-sub {
  font-size: clamp(1rem, .4vw + .95rem, 1.18rem);
  color: var(--ink-700);
  margin: 1rem 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-700);
  font-size: .95rem;
}
.hero-meta strong { color: var(--green-800); display: block; font-size: 1.05rem; }

.hero-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.25fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  aspect-ratio: 1 / 1.05;
}
.showcase-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--cream-200);
}
.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .85rem;
  display: block;
  transition: transform .8s ease;
}
.showcase-tile:hover img { transform: scale(1.04); }
.showcase-1 { grid-row: 1 / span 2; transform: translateY(0); }
.showcase-2 { grid-column: 2; grid-row: 1; transform: translateY(20px); }
.showcase-4 { grid-column: 2; grid-row: 2; transform: translateY(20px); }

.showcase-badge {
  position: absolute;
  left: -28px; bottom: 12%;
  width: 138px; height: 138px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}
.showcase-badge img {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-badge { animation: none; }
  .showcase-tile img { transition: none; }
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-showcase {
    order: -1;
    margin-bottom: .5rem;
    max-width: 460px;
  }
  .showcase-badge {
    width: 100px; height: 100px;
    left: -14px;
    border-width: 4px;
  }
  .showcase-badge img { width: 88px; height: 88px; }
}

@media (max-width: 480px) {
  .hero-showcase { gap: 10px; }
  .showcase-tile { border-radius: 14px; }
  .showcase-2, .showcase-4 { transform: none; }
}

/* ---------- Features ---------- */
.features {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-800);
  margin-bottom: .85rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: .25rem; font-size: 1.02rem; }
.feature p  { color: var(--ink-700); font-size: .92rem; margin: 0; }

/* ---------- Promise band ---------- */
.promise {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(232,181,71,.10), transparent 70%),
    linear-gradient(180deg, var(--cream-100), #f8f1e3);
  border-block: 1px solid rgba(15,77,64,.08);
  position: relative;
  overflow: hidden;
}

.promise-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  text-align: center;
}

.promise-leaf {
  display: inline-flex;
  width: clamp(28px, 4vw, 44px);
  height: clamp(28px, 4vw, 44px);
  color: var(--green-700);
  opacity: .55;
  flex-shrink: 0;
}
.promise-leaf.left  { transform: rotate(-18deg); }
.promise-leaf.right { transform: rotate(162deg); }
.promise-leaf svg { width: 100%; height: 100%; }

.promise-text {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(.5rem, 1.5vw, 1rem);
  line-height: 1.1;
}

.promise-prefix {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.4vw + .9rem, 1.9rem);
  color: var(--green-900);
  letter-spacing: -.01em;
}

.promise-divider {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral-500);
  align-self: center;
  margin-block: .35em;
}

.promise-script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.2vw + 1rem, 2.6rem);
  color: var(--gold-500);
  line-height: .9;
  letter-spacing: 0;
}

@media (max-width: 520px) {
  .promise-inner { gap: .75rem; }
  .promise-text  { flex-direction: column; gap: .15rem; }
  .promise-divider { display: none; }
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}
.section-alt { background: var(--green-50); }
.section-dark {
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: rgba(255,255,255,.92);
}
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head {
  max-width: 44rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.section-head-light p, .section-head-light h2 { color: rgba(255,255,255,.95); }
.section-sub {
  color: var(--ink-700);
  margin-top: .25rem;
  font-size: 1.05rem;
}
.section-head-light .section-sub { color: rgba(255,255,255,.78); }

/* ---------- Product cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--cream-200);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform .6s ease;
}
.card:hover .card-media img { transform: scale(1.04); }

.card-body {
  padding: 1.3rem 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  color: var(--green-800);
  margin-bottom: .9rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold-500);
  align-self: flex-start;
  font-size: 1.08rem;
}
.card ul { display: grid; gap: .35rem; color: var(--ink-700); font-size: .94rem; }
.card ul li { position: relative; padding-left: 1rem; }
.card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral-500);
}

.card-cta {
  background: linear-gradient(160deg, var(--green-800), var(--green-700));
  color: #fff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.card-cta::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232,181,71,.35), transparent 60%);
  pointer-events: none;
}
.card-cta .card-body { justify-content: space-between; min-height: 100%; }
.card-cta h3 { color: #fff; border-bottom-color: var(--coral-500); }
.card-cta p  { color: rgba(255,255,255,.88); }
.card-cta-line { font-family: var(--font-script); font-size: 1.5rem; color: var(--gold-400); margin-bottom: 1.1rem; }
.card-cta .btn { align-self: flex-start; background: var(--gold-500); color: var(--ink-900); }
.card-cta .btn:hover { background: var(--gold-400); }

@media (prefers-reduced-motion: reduce) {
  .card:hover .card-media img { transform: none; }
}

/* ---------- Chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem .65rem;
  justify-content: center;
}
.chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-weight: 500;
  color: var(--green-800);
  transition: background-color .2s, color .2s, border-color .2s, transform .15s;
}
.chip:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); transform: translateY(-2px); }

/* ---------- Industries ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .65rem;
  text-align: center;
}
.industries li {
  padding: 1rem .75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--ink-700);
  transition: background-color .2s, color .2s;
}
.industries li:hover { background: var(--green-50); color: var(--green-800); }

/* ---------- Why grid (dark) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.why-grid li {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  transition: background-color .2s, border-color .2s, transform .2s;
}
.why-grid li:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}
.why-grid h3 {
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: .35rem;
  font-size: 1.05rem;
}
.why-grid h3::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
.why-grid p { color: rgba(255,255,255,.78); margin: 0; font-size: .95rem; }

/* ---------- Contact ---------- */
.section-contact {
  background:
    radial-gradient(800px 320px at 90% 10%, rgba(232,181,71,.14), transparent 60%),
    var(--green-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.contact-info { padding-top: .5rem; }
.contact-lead {
  font-size: 1.05rem;
  color: var(--ink-700);
  margin-bottom: 1.5rem;
  max-width: 32rem;
}
.contact-list {
  display: grid;
  gap: 1rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: .75rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--ink-500);
  font-weight: 600;
}
.contact-value { color: var(--ink-900); font-weight: 500; }
a.contact-value { color: var(--green-800); }
a.contact-value:hover { color: var(--green-700); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}
.field { display: grid; gap: .35rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field-row > div { display: grid; gap: .35rem; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-700);
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink-900);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .75rem .85rem;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(15,77,64,.18);
}
.field input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: var(--coral-500);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-status {
  margin: 0;
  font-size: .92rem;
  color: var(--green-800);
  min-height: 1.4em;
}
.form-status[data-state="error"] { color: var(--coral-500); }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

button[disabled] { opacity: .7; cursor: not-allowed; }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: .15rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.78);
  padding: 2.25rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.footer-brand {
  display: flex; align-items: center; gap: .75rem;
}
.footer-brand img { border-radius: 50%; }
.footer-name { color: #fff; margin: 0; font-weight: 700; }
.footer-tag  { font-family: var(--font-script); color: var(--gold-400); margin: 0; font-size: 1.1rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold-400); text-decoration: none; }

.footer-copy { margin: 0; font-size: .85rem; color: rgba(255,255,255,.6); white-space: nowrap; }

@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-copy { white-space: normal; }
}

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}
