/* ==========================================================================
   Roo Management Inc. — Houston Property Management
   Design tokens, layout, and components
   ========================================================================== */

:root {
  /* Brand palette — deep Gulf teal + warm Texas gold on warm ivory */
  --teal-900: #0b2e2f;
  --teal-800: #0f3d3e;
  --teal-700: #14504f;
  --teal-600: #1c6a66;
  --teal-500: #2b8a83;
  --gold-500: #d9a441;
  --gold-400: #e6b95c;
  --gold-600: #bd8a2e;

  --ink: #14201f;
  --body: #40514f;
  --muted: #6b7c7a;
  --line: #e4e9e6;
  --ivory: #f7f5ef;
  --cream: #fbfaf6;
  --white: #ffffff;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(11,46,47,.06), 0 2px 8px rgba(11,46,47,.05);
  --shadow: 0 10px 30px -12px rgba(11,46,47,.22);
  --shadow-lg: 0 30px 60px -20px rgba(11,46,47,.35);

  --maxw: 1180px;
  --gutter: clamp(18px, 5vw, 40px);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-800); }
h1, h2, h3 { color: var(--ink); font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute; 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: 12px; top: -60px; z-index: 200;
  background: var(--teal-800); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal-800);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; }
.btn--primary { --btn-bg: var(--teal-800); --btn-fg:#fff; }
.btn--primary:hover { background: var(--teal-700); color:#fff; }
.btn--gold { --btn-bg: var(--gold-500); --btn-fg: #201803; }
.btn--gold:hover { background: var(--gold-400); color:#201803; }
.btn--outline { background: transparent; color: var(--teal-800); border-color: var(--teal-800); }
.btn--outline:hover { background: var(--teal-800); color:#fff; }
.btn--ghost { background: rgba(15,61,62,.06); color: var(--teal-800); }
.btn--ghost:hover { background: rgba(15,61,62,.12); color: var(--teal-800); }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }
.btn--sm { padding: 10px 16px; font-size: .9rem; }
.btn--block { display: flex; width: 100%; }

.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-600); margin: 0 0 .8em;
}
.eyebrow--light { color: var(--gold-400); }
.accent { color: var(--teal-600); }
.muted { color: var(--muted); font-weight: 400; }

/* ---------- Topbar ---------- */
.topbar { background: var(--teal-900); color: #cfe0dc; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 8px 0; flex-wrap: wrap; }
.topbar__item { color: #cfe0dc; }
a.topbar__item:hover { color: #fff; }
.topbar__sep { color: #3d5a57; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,246,.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(150deg, var(--teal-700), var(--teal-900)); box-shadow: var(--shadow-sm); flex: none; }
.brand__mark svg { color: var(--gold-400); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.22rem; color: var(--ink); }
.brand__sub { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------- Nav ---------- */
.nav__menu { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 26px); }
.nav__menu > li > a:not(.btn) { color: var(--ink); font-weight: 500; font-size: .96rem; position: relative; padding: 4px 0; }
.nav__menu > li > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--gold-500); transition: right .25s var(--ease);
}
.nav__menu > li > a:not(.btn):hover { color: var(--teal-800); }
.nav__menu > li > a:not(.btn):hover::after { right: 0; }
.nav__cta-group { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 11px; background: var(--white); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s 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; background: linear-gradient(170deg, var(--teal-900) 0%, var(--teal-800) 46%, var(--teal-700) 100%); color: #eaf3f0; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__glow {
  position: absolute; width: 700px; height: 700px; right: -180px; top: -260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,164,65,.28), transparent 62%); filter: blur(10px);
}
.hero__skyline { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; opacity: .5; }
.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
  padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(96px, 12vw, 150px);
}
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5.6vw, 4.15rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: .35em; }
.hero .accent { color: var(--gold-400); }
.hero__lead { font-size: clamp(1.06rem, 1.7vw, 1.24rem); color: #cfe0dc; max-width: 34ch; margin-bottom: 1.9em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2em; }
.hero .btn--outline { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn--outline:hover { background: #fff; color: var(--teal-800); border-color: #fff; }
.hero__badges { display: flex; flex-direction: column; gap: 8px; }
.hero__badges li { color: #bcd3ce; font-size: .95rem; font-weight: 500; }

.hero__card {
  background: var(--white); color: var(--body); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
}
.hero__card-title { font-size: 1.5rem; margin-bottom: .2em; }
.hero__card-sub { font-size: .95rem; color: var(--muted); margin-bottom: 1.4em; }
.mini-form { display: flex; flex-direction: column; gap: 12px; }
.mini-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-form input, .form input, .form select, .form textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.mini-form input::placeholder { color: #90a09d; }
.mini-form input:focus, .form :is(input,select,textarea):focus {
  outline: none; border-color: var(--teal-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(43,138,131,.14);
}
.mini-form__fineprint { font-size: .78rem; color: var(--muted); text-align: center; margin: 4px 0 0; }

/* ---------- Stats ---------- */
.stats { background: var(--teal-900); color: #eaf3f0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: clamp(28px, 4vw, 44px) var(--gutter); text-align: center; }
.stat { padding: 8px; }
.stat__num { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--gold-400); line-height: 1; }
.stat__label { display: block; margin-top: .55em; font-size: .9rem; color: #b7ccc7; letter-spacing: .02em; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tint { background: var(--ivory); }
.section--dark { background: linear-gradient(160deg, var(--teal-800), var(--teal-900)); color: #eaf3f0; }
.section--dark h2 { color: #fff; }
.section__head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 60px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
.section__intro { font-size: 1.1rem; color: var(--muted); }
.section--dark .section__intro { color: #b7ccc7; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d5e0dc; }
.card__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(150deg, rgba(43,138,131,.16), rgba(15,61,62,.1)); color: var(--teal-700); margin-bottom: 18px; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: .35em; }
.card p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px 26px; box-shadow: var(--shadow-sm); }
.step__num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-800); color: var(--gold-400); font-family: var(--serif); font-weight: 700; font-size: 1.25rem; margin-bottom: 16px; }
.step h3 { font-size: 1.14rem; margin-bottom: .3em; }
.step p { font-size: .94rem; color: var(--muted); margin: 0; }

/* ---------- Split sections ---------- */
.split { padding: clamp(64px, 9vw, 112px) 0; }
.split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__content h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.split__content > p { color: var(--body); font-size: 1.06rem; }
.split__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.checklist { display: grid; gap: 12px; margin: 22px 0 4px; }
.checklist li { position: relative; padding-left: 34px; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px;
  display: grid; place-items: center; border-radius: 50%; background: rgba(43,138,131,.16);
  color: var(--teal-700); font-size: .8rem; font-weight: 800;
}

/* media cards (portal mockups) */
.media-card { position: relative; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); overflow: hidden; }
.media-card--owners { background: linear-gradient(155deg, var(--teal-700), var(--teal-900)); color: #eaf3f0; }
.media-card--tenant { background: linear-gradient(155deg, #ffffff, var(--ivory)); color: var(--ink); border: 1px solid var(--line); }
.media-card__badge { display: inline-block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 20px; }
.media-card--owners .media-card__badge { background: rgba(217,164,65,.2); color: var(--gold-400); }
.media-card--tenant .media-card__badge { background: rgba(43,138,131,.14); color: var(--teal-700); }
.media-card__list { display: grid; gap: 14px; }
.media-card__list li { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; font-size: .96rem; }
.media-card--owners .media-card__list li { background: rgba(255,255,255,.08); }
.media-card--tenant .media-card__list li { background: #fff; box-shadow: var(--shadow-sm); }
.media-card__list li span { flex: 1; }
.media-card--owners .media-card__list strong { color: var(--gold-400); }
.media-card--tenant .media-card__list strong { color: var(--teal-700); }

/* ---------- Portals ---------- */
.portals { padding: clamp(56px, 8vw, 96px) 0; }
.portals__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portal-card {
  display: block; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); color: var(--body);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.portal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-500); color: var(--body); }
.portal-card__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px;
  background: linear-gradient(150deg, var(--teal-700), var(--teal-900)); color: var(--gold-400); margin-bottom: 18px; }
.portal-card__icon svg { width: 28px; height: 28px; }
.portal-card h3 { font-size: 1.3rem; margin-bottom: .3em; }
.portal-card p { font-size: .96rem; color: var(--muted); margin-bottom: 1em; }
.portal-card__link { font-weight: 600; color: var(--teal-700); }
.portals__note, .pricing__note { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 26px; }
code { background: rgba(15,61,62,.08); padding: .12em .45em; border-radius: 6px; font-size: .88em; }

/* ---------- Chips (areas) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips li {
  padding: 11px 20px; border-radius: 999px; background: var(--white); border: 1px solid var(--line);
  font-weight: 500; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.chips li:hover { transform: translateY(-3px); border-color: var(--teal-500); color: var(--teal-700); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { margin: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px 28px; backdrop-filter: blur(4px); }
.quote__stars { color: var(--gold-400); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.quote blockquote { margin: 0 0 20px; font-size: 1.04rem; color: #eaf3f0; line-height: 1.6; }
.quote figcaption { display: flex; flex-direction: column; }
.quote figcaption strong { color: #fff; }
.quote figcaption span { color: #9fbab5; font-size: .88rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan--featured { border-color: var(--teal-600); box-shadow: var(--shadow); transform: translateY(-6px); }
.plan__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-500); color: #201803;
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.plan__name { font-size: 1.35rem; margin-bottom: .1em; }
.plan__price { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--teal-800); line-height: 1; margin: .2em 0 .1em; }
.plan__price span { display: block; font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--muted); margin-top: 6px; }
.plan__desc { color: var(--muted); font-size: .96rem; }
.plan__list { display: grid; gap: 11px; margin: 20px 0 26px; }
.plan__list li { position: relative; padding-left: 26px; font-size: .96rem; color: var(--body); }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 800; }
.plan .btn { margin-top: auto; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.values li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.values li strong { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); margin-bottom: .25em; }
.values li span { font-size: .94rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--teal-800), var(--teal-700)); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding: clamp(44px, 6vw, 68px) 0; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: .2em; }
.cta-band p { color: #cfe0dc; margin: 0; font-size: 1.08rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.contact__list { display: grid; gap: 20px; margin-top: 30px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: linear-gradient(150deg, rgba(43,138,131,.16), rgba(15,61,62,.1)); color: var(--teal-700); }
.contact__ic svg { width: 22px; height: 22px; }
.contact__list strong { display: block; color: var(--ink); font-family: var(--serif); }
.contact__list a { color: var(--body); }
.contact__list a:hover { color: var(--teal-700); }

.contact__form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form textarea { resize: vertical; min-height: 110px; }
.form__fineprint { font-size: .8rem; color: var(--muted); margin: 14px 0 0; text-align: center; }
.form__status { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: .92rem; font-weight: 500; }
.form__status.is-success { background: rgba(43,138,131,.12); color: var(--teal-800); }
.form__status.is-error { background: #fdecec; color: #a5352f; }

/* ---------- Footer ---------- */
.footer { background: var(--teal-900); color: #b7ccc7; padding-top: clamp(52px, 7vw, 76px); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 44px; }
.brand--footer .brand__name, .footer .brand__mark svg { }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__sub { color: #7fa29c; }
.footer__blurb { margin-top: 16px; font-size: .92rem; color: #8daba5; max-width: 34ch; }
.footer__col h3 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: #b7ccc7; font-size: .95rem; }
.footer__col a:hover { color: #fff; }
.footer__contact li { font-size: .95rem; line-height: 1.5; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.09); }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 0; flex-wrap: wrap; }
.footer__bar p { margin: 0; font-size: .85rem; color: #7fa29c; }

/* ---------- Floating action button (mobile) ---------- */
.fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 90; display: none;
  background: var(--gold-500); color: #201803; font-weight: 700; font-size: .92rem;
  padding: 14px 20px; border-radius: 999px; box-shadow: var(--shadow-lg);
}
.fab:hover { color: #201803; background: var(--gold-400); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { max-width: 480px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .portals__grid { grid-template-columns: 1fr; }
  .split__inner, .contact { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}

/* Collapse to the slide-in menu before the horizontal nav gets crowded */
@media (max-width: 1080px) {
  .nav__toggle { display: flex; position: relative; z-index: 110; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    flex-direction: column; align-items: stretch; gap: 4px; justify-content: flex-start;
    background: var(--cream); padding: 92px 26px 40px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu > li > a:not(.btn) { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__menu > li > a:not(.btn)::after { display: none; }
  .nav__cta-group { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 18px; }
  .nav__cta-group .btn { width: 100%; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; z-index: 105; background: rgba(11,46,47,.4); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 760px) {
  .fab { display: inline-flex; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .mini-form__row, .form__row { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .topbar__inner { font-size: .76rem; gap: 8px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
