/* Synerga Partners: branching vine + leaves */
:root {
  --blue:        #1860A8;
  --blue-mid:    #3A86C4;
  --blue-deep:   #124E8A;
  --ink:         #0A2F54;
  --night:       #071E36;
  --gold:        #FCCC24;
  --gold-deep:   #E8B40A;
  --cream:       #FCFCE4;
  --wash:        #FCF0C0;
  --paper:       #FFFEF8;
  --white:       #FFFFFF;
  --line:        #E4D9A8;
  --line-strong: #D4C47A;
  --text:        #0A2F54;
  --muted:       #3A5874;
  --on-dark:     #F7FBFF;
  --on-dark-soft:#E4F0FC;
  --line-inv:    rgba(252, 252, 228, .22);
  --radius:      18px;
  --maxw:        1120px;
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --display:     "Cardo", "Times New Roman", serif;
  --body:        "Epilogue", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name, .kicker, .eyebrow, .quote-attr, .leaf-tag, .vine-caption, .grove-heart {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
    background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-primary {
  background: var(--blue); color: var(--on-dark);
  box-shadow: 0 12px 28px -14px rgba(24, 96, 168, .7);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 254, 248, .92);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img {
  width: 44px; height: 44px; border-radius: 12px; object-fit: cover;
  background: #fff; border: 1px solid var(--line);
}
.brand-name {
  font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em;
}
.brand-name em { font-style: italic; font-weight: 400; color: var(--blue); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: color .2s var(--ease);
}
.nav .nav-cta {
  color: var(--ink); background: var(--gold);
  padding: 9px 18px; border-radius: 999px;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 56px;
}
.hero-wash {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 46% 55% at 86% 12%, rgba(252, 204, 36, .28), transparent 62%),
    radial-gradient(ellipse 42% 50% at 8% 88%, rgba(24, 96, 168, .14), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 48%, var(--paper) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--blue); margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.15rem);
  font-weight: 700; color: var(--ink); max-width: 16ch;
}
.hero-sub {
  margin: 22px 0 0; max-width: 48ch; color: var(--muted); font-size: 1.06rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-vine-wrap { display: grid; place-items: center; }
.hero-vine {
  width: min(380px, 100%);
  height: auto;
  overflow: visible;
}

/* Vine draw */
.vine-draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawVine 2.1s var(--ease) forwards;
}
.trunk { animation-duration: 2.2s; }
.br-1 { animation-delay: .7s; }
.br-2 { animation-delay: .95s; }
.br-3 { animation-delay: 1.15s; }
.t1 { animation-delay: .85s; }
.t2 { animation-delay: 1s; }
.t3 { animation-delay: 1.2s; }
@keyframes drawVine { to { stroke-dashoffset: 0; } }

.leaf-group {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: leafIn .7s var(--ease) forwards;
}
.lg1 { animation-delay: 1.35s; }
.lg2 { animation-delay: 1.55s; }
.lg3 { animation-delay: 1.75s; }
.lg4 { animation-delay: 1.45s; }
@keyframes leafIn {
  from { opacity: 0; transform: scale(.35) rotate(-14deg); }
  to   { opacity: 1; transform: none; }
}

.leaf-sway {
  transform-box: fill-box;
  transform-origin: 70% 90%;
  animation: sway 5.2s ease-in-out 2s infinite;
}
@keyframes sway {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2.6deg); }
}

.sap {
  offset-path: path("M86 472 C 64 404, 78 348, 132 312 C 198 270, 268 246, 278 186 C 288 126, 236 78, 176 86 C 128 92, 104 128, 118 164");
  offset-rotate: 0deg;
  animation: sapRun 5.4s ease-in-out 2.3s infinite;
  filter: drop-shadow(0 0 6px rgba(252, 204, 36, .7));
}
@keyframes sapRun {
  0%   { offset-distance: 0%; opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.vine-caption {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
}

@media (prefers-reduced-motion: reduce) {
  .vine-draw, .grove-draw { stroke-dashoffset: 0; animation: none; }
  .leaf-group, .svg-leaf, .heart-node { opacity: 1; animation: none; }
  .leaf-sway, .sap { animation: none; }
  .sap { opacity: 0; }
}

/* Sections */
.section { padding: 88px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.kicker {
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--blue); margin-bottom: 12px;
}
.kicker-light { color: var(--gold); }
.section-head h2, .faq-intro h2, .contact-copy h2, .about-copy h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 700; color: var(--ink);
}
.lead { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }

/* Grove: branching diagram */
.grove { background: var(--cream); }
.grove-stage {
  position: relative;
  min-height: 640px;
}
.grove-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.grove-draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.grove-stage.in .grove-draw {
  animation: drawVine 2s var(--ease) forwards;
}
.grove-stage.in .g-root  { animation-delay: .05s; }
.grove-stage.in .g-root2 { animation-delay: .12s; }
.grove-stage.in .g-trunk { animation-delay: .2s; animation-duration: 2.3s; }
.grove-stage.in .g-teams { animation-delay: .85s; }
.grove-stage.in .g-frame { animation-delay: 1.05s; }
.grove-stage.in .g-res   { animation-delay: 1.15s; }
.grove-stage.in .g-t1,
.grove-stage.in .g-t2,
.grove-stage.in .g-t3    { animation-delay: 1.4s; }

.svg-leaf, .heart-node {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.grove-stage.in .svg-leaf {
  animation: leafIn .65s var(--ease) forwards;
}
.grove-stage.in .sl-teams { animation-delay: 1.55s; }
.grove-stage.in .sl-frame { animation-delay: 1.7s; }
.grove-stage.in .sl-res   { animation-delay: 1.85s; }
.grove-stage.in .heart-node {
  animation: leafIn .5s var(--ease) 1.2s forwards;
}

.leaf-card {
  position: absolute;
  width: min(300px, 86%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px 52px 22px 52px;
  padding: 26px 24px 22px;
  box-shadow: 0 18px 40px -28px rgba(10, 47, 84, .4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
    border-color .25s var(--ease), background .25s var(--ease);
  z-index: 2;
}
.leaf-teams { top: 14%; left: 0; }
.leaf-frame { top: 0; right: 0; }
.leaf-res   { bottom: 4%; right: 2%; }

.leaf-ico {
  display: block; width: 28px; height: 28px; margin-bottom: 10px;
}
.leaf-ico svg { width: 28px; height: 28px; }
.leaf-tag {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--blue); margin-bottom: 8px;
}
.leaf-frame .leaf-tag { color: var(--gold-deep); }
.leaf-card h3 {
  font-size: 1.55rem; font-weight: 700; color: var(--ink); margin-bottom: 10px;
}
.leaf-card p { color: var(--muted); font-size: .98rem; }

.grove-heart {
  position: absolute;
  left: 50%;
  top: 61%;
  transform: translate(-50%, -120%);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
  white-space: nowrap;
}

/* About */
.about { background: var(--paper); }
.about-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: start;
}
.about-copy h2 { margin-bottom: 18px; max-width: 16ch; }
.about-copy p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-buds {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}
.about-buds li {
  display: grid;
  grid-template-columns: 14px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 2px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px 36px 16px 36px;
  padding: 16px 18px 16px 16px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.bud-dot {
  grid-row: 1 / span 2;
  align-self: center;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(24, 96, 168, .12);
}
.bud-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(252, 204, 36, .28);
}
.about-buds strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
}
.about-buds span { color: var(--muted); font-size: .92rem; }

/* Quote band: dark, near-white type */
.quote-band {
  background: var(--night);
  color: var(--on-dark);
  padding: 96px 0;
}
.quote-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.quote-band blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: var(--on-dark);
}
.quote-attr {
  margin-top: 26px;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

/* Horizontal tendril / how we grow */
.grow { background: var(--paper); }
.tendril {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.tendril::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 28px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 52%, var(--blue) 100%);
  z-index: 0;
}
.tendril li {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px 48px 22px 48px;
  padding: 22px 20px 20px;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.tendril .bud {
  display: grid; place-items: center;
  width: 48px; height: 48px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--blue); color: var(--on-dark);
  font-family: var(--display); font-weight: 700; font-size: 14px;
  box-shadow: 0 0 0 6px var(--paper), 0 0 0 8px var(--blue);
}
.tendril .bud.gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 0 0 6px var(--paper), 0 0 0 8px var(--gold);
}
.tendril h3 {
  font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; color: var(--ink);
}
.tendril p { color: var(--muted); font-size: .95rem; }

/* FAQ */
.faq-sec { background: var(--cream); }
.faq-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.faq-intro h2 { margin-bottom: 14px; }
.faq-intro p:last-child { color: var(--muted); }
.faq { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px;
  font-family: var(--display); font-size: 1.15rem; font-weight: 700;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-ico { position: relative; flex: 0 0 16px; width: 16px; height: 16px; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; background: var(--blue); border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ico::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-ico::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a p { color: var(--muted); margin: 0 0 22px; padding-right: 28px; }

/* Contact */
.contact { background: var(--paper); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy h2 { margin-bottom: 16px; }
.contact-copy p { color: var(--muted); margin-bottom: 22px; }
.contact-email {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: border-color .2s, color .2s, transform .25s var(--ease);
}
.contact-addr {
  margin-top: 16px; font-size: 14px; color: var(--muted); letter-spacing: .04em;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 22px 48px 22px 48px;
  padding: 28px;
  display: grid;
  gap: 16px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); font-family: var(--display);
}
.field input, .field textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  width: 100%;
  resize: vertical;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24, 96, 168, .16);
}

/* Footer: dark, near-white */
.site-footer {
  background: var(--night);
  color: var(--on-dark);
  padding: 56px 0 36px;
  border-top: 1px solid rgba(252, 204, 36, .2);
}
.site-footer .brand img { border-color: rgba(255, 255, 255, .14); }
.site-footer .brand-name { color: var(--on-dark); }
.site-footer .brand-name em { color: var(--gold); }
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 18px;
}
.footer-tag {
  color: var(--on-dark-soft);
  font-family: var(--display);
  font-size: 1.08rem;
}
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  color: var(--on-dark-soft);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-bottom {
  display: flex; flex-direction: column; gap: 6px;
  color: var(--on-dark-soft);
  font-size: 13px; margin-top: 8px; padding-top: 22px;
  border-top: 1px solid var(--line-inv);
  width: 100%; max-width: 520px;
}

/* Reveal: hover rules MUST come after this */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--blue-deep);
    box-shadow: 0 18px 36px -12px rgba(24, 96, 168, .65);
  }
  .btn-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    color: var(--blue);
  }
  .nav a:hover { color: var(--ink); }
  .nav .nav-cta:hover { color: var(--ink); background: var(--gold-deep); }
  .leaf-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    border-color: var(--gold);
    box-shadow: 0 24px 44px -20px rgba(24, 96, 168, .42);
    background: #fff;
  }
  .about-buds li:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 16px 32px -22px rgba(24, 96, 168, .4);
  }
  .tendril li:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 36px -22px rgba(24, 96, 168, .38);
  }
  .faq-q:hover { color: var(--blue); }
  .faq-item:hover { background: rgba(24, 96, 168, .04); }
  .contact-email:hover {
    border-bottom-color: var(--gold);
    color: var(--blue-deep);
  }
  .footer-nav a:hover { color: var(--gold); }
}

@media (hover: none) {
  .leaf-card:active,
  .tendril li:active,
  .about-buds li:active {
    background: var(--cream);
    border-color: var(--blue);
  }
  .btn-primary:active { background: var(--blue-deep); }
  .nav a:active, .faq-q:active { color: var(--blue); }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-vine { width: min(280px, 72vw); }
  .hero h1 { max-width: none; }
  .faq-wrap, .contact-inner, .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .tendril { grid-template-columns: 1fr 1fr; }
  .tendril::before { display: none; }
  .grove-stage { min-height: 0; }
  .grove-svg { position: relative; height: 280px; inset: auto; }
  .leaf-card {
    position: relative;
    top: auto; left: auto; right: auto; bottom: auto;
    width: 100%;
    margin: 14px 0 0;
  }
  .grove-heart { display: none; }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    inset: 74px 0 auto;
    background: rgba(255, 254, 248, .98);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 22px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px -24px rgba(10, 47, 84, .4);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
  }
  .nav .nav-cta { text-align: center; margin-top: 10px; border: 0; }
  .nav-toggle { display: flex; }
  .header-inner { height: 68px; }
  .nav { inset: 68px 0 auto; }
  .hero { padding: 96px 0 36px; }
  .section { padding: 68px 0; }
  .quote-band { padding: 72px 0; }
  .grove-svg { height: 220px; }
}

@media (max-width: 430px) {
  .container { padding: 0 16px; }
  .hero { padding: 92px 0 32px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .quote-band { padding: 64px 0; }
  .leaf-card { padding: 20px 16px 18px; border-radius: 18px 36px 18px 36px; }
  .leaf-card h3 { font-size: 1.3rem; }
  .contact-form { padding: 20px 16px; }
  .tendril { grid-template-columns: 1fr; gap: 14px; }
  .tendril li { text-align: left; display: grid; grid-template-columns: 48px 1fr; column-gap: 14px; border-radius: 18px 36px 18px 36px; }
  .tendril .bud { margin: 0; grid-row: 1 / span 2; align-self: start; }
  .tendril h3 { grid-column: 2; }
  .tendril p { grid-column: 2; }
  .hero-vine { width: min(220px, 70vw); }
  .footer-nav { gap: 14px 18px; }
  .brand-name { font-size: 18px; }
}

@media (max-width: 390px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.95rem; }
  .hero-sub { font-size: .98rem; }
  .grove-svg { height: 180px; }
  .about-buds li { padding: 14px 14px 14px 12px; }
}
