/* ============================================================
   A&R Design Build — site styles
   Headings: Oswald · Body: Inter · Primary: Brand Maroon #6F1200
   ============================================================ */

:root {
  color-scheme: light;
  --maroon: #6F1200;
  --maroon-dark: #571000;
  --maroon-tint: #FBF3F1;
  --green: #00511C;
  --gold: #CC9900;
  --ink: #1C1917;
  --ink-soft: #44403C;
  --ink-mute: #6B6560;
  --paper: #FFFFFF;
  --stone: #F6F4F1;
  --stone-dark: #ECE8E3;
  --line: #E2DDD6;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, .08);
  --shadow-md: 0 6px 24px rgba(28, 25, 23, .10);
  --shadow-lg: 0 16px 48px rgba(28, 25, 23, .16);
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;           /* 17px base — generous for an older audience */
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.9rem); letter-spacing: .01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }

p { max-width: 68ch; }

a { color: var(--maroon); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--maroon-dark); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--stone { background: var(--stone); }
.section--tight { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }

.kicker {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--maroon);
  display: block;
  margin-bottom: .75rem;
}

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { margin-top: 1rem; font-size: 1.1rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn--primary { background: var(--maroon); color: #fff; }
.btn--primary:hover { background: var(--maroon-dark); color: #fff; transform: translateY(-1px); }
.btn--ghost { border-color: var(--maroon); color: var(--maroon); background: transparent; }
.btn--ghost:hover { background: var(--maroon); color: #fff; }
.btn--light { border-color: #fff; color: #fff; background: transparent; }
.btn--light:hover { background: #fff; color: var(--maroon); }
.btn--lg { font-size: 1.1rem; padding: 1rem 2.2rem; }

/* ---------- Header ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--maroon); color: #fff; padding: .6rem 1rem; z-index: 200;
}
.skip-link:focus { left: 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 76px;
}
.logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; color: var(--ink);
}
.logo__mark {
  width: 44px; height: 44px; flex: none;
  background: var(--maroon); color: #fff; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; letter-spacing: .02em;
}
.logo__text { line-height: 1.15; }
.logo__name { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .06em; display: block; }
.logo__tag { font-size: .68rem; color: var(--ink-mute); letter-spacing: .04em; display: block; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-family: var(--font-head); font-size: .92rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--ink); text-decoration: none; padding: .4rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--maroon); border-bottom-color: var(--maroon); }
.nav .btn { border-bottom: 2px solid transparent; }
.nav .btn:hover { border-bottom-color: transparent; }
/* Keep the primary CTA text white — `.nav a` (dark) would otherwise win on specificity */
.nav a.btn--primary, .nav a.btn--primary:hover, .nav a.btn--primary[aria-current="page"] { color: #fff; }

.site-header__cta { display: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--ink);
  margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-header__cta {
    display: inline-flex; margin-left: auto;
    font-size: .82rem; padding: .55rem .9rem;
  }
  .site-header__inner { gap: .75rem; min-height: 64px; }
  .logo__tag { display: none; }
  .logo__name { font-size: 1rem; white-space: nowrap; }
  .logo__mark { width: 38px; height: 38px; font-size: .9rem; }
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav .btn { margin-top: 1rem; justify-content: center; border: 2px solid transparent; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background: linear-gradient(160deg, #2A1008 0%, #4A1505 55%, var(--maroon) 100%);
  overflow: hidden;
}
.hero__art { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.hero__art svg { width: 100%; height: 100%; object-fit: cover; }
.hero__inner {
  position: relative;
  padding: clamp(4.5rem, 11vw, 8.5rem) 0 clamp(4rem, 9vw, 7rem);
  max-width: 44rem;
}
.hero h1 { color: #fff; margin: 1rem 0 1.25rem; }
.hero p { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: rgba(255,255,255,.88); }
.hero .kicker { color: var(--gold); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

.hero--page { text-align: left; }
.hero--page .hero__inner { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }

.breadcrumbs { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: .25rem; }
.breadcrumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); color: #fff; }
.trust-strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; padding-top: 1.4rem; padding-bottom: 1.4rem; text-align: center;
}
.trust-strip__item strong {
  font-family: var(--font-head); font-size: 1.45rem; font-weight: 600;
  display: block; color: var(--gold); letter-spacing: .02em;
}
.trust-strip__item span { font-size: .82rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 760px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 1.75rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card__body h3 a { color: var(--ink); text-decoration: none; }
.card__body h3 a:hover { color: var(--maroon); }
.card__body h3 a::after { content: ""; position: absolute; inset: 0; }
.card { position: relative; }
.card p { font-size: .96rem; }
.card__link {
  margin-top: auto; font-family: var(--font-head); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--maroon);
  text-decoration: none; font-weight: 500;
}

.ph {
  aspect-ratio: 16 / 10; width: 100%;
  background: linear-gradient(150deg, var(--stone-dark), var(--stone));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ph > img { width: 100%; height: 100%; object-fit: cover; }
.ph > iframe { width: 100%; height: 100%; border: 0; display: block; }
.hero__art img { width: 100%; height: 100%; object-fit: cover; }
.ph--dark { background: linear-gradient(150deg, #3B2A22, #241812); }
.ph svg { width: 100%; height: 100%; }

/* ---------- Icon feature blocks ---------- */
.feature { display: flex; flex-direction: column; gap: .8rem; }
.feature__icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  background: var(--maroon-tint); color: var(--maroon);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.25rem; }
.feature p { font-size: .98rem; }
.feature a { font-weight: 500; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 0; counter-reset: step; position: relative; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step__num {
  counter-increment: step;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--maroon); color: #fff;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: .35rem; }
@media (max-width: 560px) { .step { grid-template-columns: 48px 1fr; gap: 1rem; } .step__num { width: 44px; height: 44px; font-size: 1.15rem; } }

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
}
.quote-card__stars { color: var(--gold); letter-spacing: .2em; font-size: 1rem; }
.quote-card blockquote { font-size: 1.02rem; font-style: italic; color: var(--ink-soft); }
.quote-card figcaption { font-family: var(--font-head); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); }
.quote-card figcaption span { display: block; color: var(--ink-mute); font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: .85rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(145deg, var(--maroon-dark), var(--maroon));
  color: #fff; text-align: center;
}
.cta-band .wrap { padding-top: clamp(3.5rem, 7vw, 5.5rem); padding-bottom: clamp(3.5rem, 7vw, 5.5rem); }
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band p { margin: 0 auto 2rem; color: rgba(255,255,255,.85); font-size: 1.15rem; }
.cta-band .btn--primary { background: #fff; color: var(--maroon); }
.cta-band .btn--primary:hover { background: var(--stone); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); font-size: .95rem; }
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 2.5rem;
}
.site-footer h4 {
  color: #fff; font-size: .9rem; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 1rem; font-weight: 500;
}
.site-footer ul { list-style: none; display: grid; gap: .5rem; }
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem; padding-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.55);
}
.site-footer__trust { font-size: .85rem; color: var(--gold); font-family: var(--font-head); letter-spacing: .06em; text-transform: uppercase; margin-top: 1rem; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Plan catalogue ---------- */
.filter-bar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; margin-bottom: 2.25rem;
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 1rem; align-items: end;
  box-shadow: var(--shadow-sm);
}
.filter-bar label {
  display: block; font-family: var(--font-head); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink); margin-bottom: .35rem;
}
.filter-bar select {
  width: 100%; padding: .65rem .75rem; font-family: var(--font-body); font-size: .95rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
}
.filter-bar__reset {
  font-size: .85rem; background: none; border: 0; color: var(--maroon);
  cursor: pointer; text-decoration: underline; padding: .65rem 0; font-family: var(--font-body);
}
@media (max-width: 900px) { .filter-bar { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .filter-bar { grid-template-columns: 1fr; } }

.plan-count { font-size: .95rem; color: var(--ink-mute); margin-bottom: 1.5rem; }

.plan-card .card__body h3 { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.plan-card__line {
  font-family: var(--font-head); font-size: .72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em; color: var(--maroon);
}
.plan-card__specs {
  display: flex; flex-wrap: wrap; gap: .4rem 1.1rem;
  font-size: .88rem; color: var(--ink-mute); list-style: none;
}
.plan-card__specs strong { color: var(--ink); font-weight: 600; }
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--gold); color: #3A2B00;
  font-family: var(--font-head); font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .22rem .6rem; border-radius: 999px;
}
.badge--maroon { background: var(--maroon); color: #fff; }

/* ---------- Plan detail ---------- */
.plan-detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .plan-detail { grid-template-columns: 1fr; } }
.spec-table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.spec-table th, .spec-table td { text-align: left; padding: .8rem .25rem; border-bottom: 1px solid var(--line); }
.spec-table th { font-family: var(--font-head); font-weight: 500; text-transform: uppercase; font-size: .78rem; letter-spacing: .1em; color: var(--ink-mute); width: 45%; }
.spec-table td { color: var(--ink); font-weight: 500; }

.note-box {
  background: var(--maroon-tint); border-left: 4px solid var(--maroon);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem; font-size: .95rem; margin: 1.5rem 0;
}
.note-box strong { color: var(--maroon); }

/* ---------- Promotion cards ---------- */
.promo-card { border-top: 3px solid var(--maroon); }
.promo-card .card__body { display: flex; flex-direction: column; align-items: flex-start; }
.promo-card__list { margin: .4rem 0 1rem; padding-left: 1.1rem; font-size: .95rem; }
.promo-card__list li { margin-bottom: .3rem; }
.promo-card__valid {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--maroon); font-weight: 600; margin: 0 0 1.1rem;
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.5rem); box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-grid .form-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-field label {
  display: block; font-family: var(--font-head); font-size: .8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .09em; color: var(--ink); margin-bottom: .4rem;
}
.form-field label .req { color: var(--maroon); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .8rem .9rem; font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--maroon); outline-offset: 1px; border-color: var(--maroon);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field .field-error { display: none; color: #A11500; font-size: .85rem; margin-top: .3rem; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #A11500; }
.form-field.has-error .field-error { display: block; }
.form-footnote { font-size: .85rem; color: var(--ink-mute); margin-top: 1rem; }
.form-error {
  background: #FCEBE8; border-left: 4px solid #A11500; color: #7A1000;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .8rem 1.1rem; font-size: .9rem; margin: 0 0 1rem;
}
.form-error:empty { display: none; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success {
  display: none; text-align: center; padding: 3rem 1.5rem;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--maroon-tint); color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
}
.form-success p { margin: .75rem auto 0; }

/* ---------- Contact info ---------- */
.contact-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.info-list { list-style: none; display: grid; gap: 1.4rem; }
.info-list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.info-list .feature__icon { width: 44px; height: 44px; }
.info-list .feature__icon svg { width: 22px; height: 22px; }
.info-list strong { display: block; font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); }
.info-list span, .info-list a { font-size: .98rem; }

/* ---------- Prose / article ---------- */
.prose { max-width: 46rem; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { margin-top: 2.6rem; font-size: 1.7rem; }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.4rem; display: grid; gap: .5rem; }
.prose li::marker { color: var(--maroon); }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--wide-text { grid-template-columns: 1.2fr 1fr; }
@media (max-width: 860px) { .split, .split--wide-text { grid-template-columns: 1fr; } }
.split .ph { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split h2 { margin-bottom: 1rem; }
.split p + p { margin-top: 1rem; }
.split .btn { margin-top: 1.75rem; }

.checklist { list-style: none; display: grid; gap: .7rem; margin-top: 1.25rem; }
.checklist li { display: flex; gap: .7rem; align-items: baseline; font-size: 1rem; }
.checklist li::before {
  content: "✓"; color: var(--maroon); font-weight: 700; flex: none;
  font-family: var(--font-head);
}

/* ---------- Blog ---------- */
.post-meta { font-size: .88rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-head); }

/* ---------- Misc ---------- */
.placeholder-tag {
  position: absolute; bottom: .6rem; left: .6rem;
  background: rgba(28,25,23,.75); color: rgba(255,255,255,.9);
  font-size: .62rem; font-family: var(--font-head); letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 4px; z-index: 2;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.back-link { font-family: var(--font-head); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; text-decoration: none; }

/* ---------- Header dropdowns (About Us / Services) ---------- */
.nav-item { position: relative; display: flex; align-items: center; gap: .25rem; }

.dropdown-caret {
  background: none; border: 0; cursor: pointer; padding: .3rem .15rem;
  color: var(--ink); display: inline-flex; align-items: center;
  transition: transform .18s ease, color .18s ease;
}
.nav-item:hover > .dropdown-caret,
.nav-item:focus-within > .dropdown-caret { color: var(--maroon); transform: rotate(180deg); }

.dropdown {
  list-style: none;
  position: absolute; top: 100%; left: -.75rem; z-index: 120;
  min-width: 300px; padding: .5rem 0; margin: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown,
.nav-item.is-open > .dropdown { opacity: 1; visibility: visible; transform: none; }

.nav .dropdown a {
  display: block; padding: .55rem 1.25rem;
  font-size: .82rem; letter-spacing: .07em;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav .dropdown a:hover { background: var(--stone); color: var(--maroon); border-bottom-color: transparent; }

@media (max-width: 960px) {
  .nav-item { flex-wrap: wrap; align-items: stretch; gap: 0; }
  .nav-item > a { flex: 1; }
  .dropdown-caret {
    display: inline-flex; justify-content: center; align-items: center;
    width: 48px; border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line); border-radius: 0;
  }
  .dropdown-caret svg { width: 14px; height: 14px; }
  .nav-item:hover > .dropdown-caret,
  .nav-item:focus-within > .dropdown-caret { transform: none; }
  .nav-item.is-open > .dropdown-caret { transform: rotate(180deg); color: var(--maroon); }
  .dropdown {
    position: static; min-width: 0; width: 100%;
    border: 0; border-radius: 0; box-shadow: none; padding: 0;
    background: var(--stone);
    display: none; opacity: 1; visibility: visible; transform: none; transition: none;
  }
  /* On mobile the submenu opens via the caret button only (tap on the
     parent label navigates), so hover/focus must not force it open. */
  .nav-item:hover > .dropdown,
  .nav-item:focus-within > .dropdown { display: none; }
  .nav-item.is-open > .dropdown { display: block; }
  .nav .dropdown a {
    padding: .8rem 1.25rem; font-size: .95rem; white-space: normal;
    border-bottom: 1px solid var(--line);
  }
  .nav .dropdown li:last-child a { border-bottom: 0; }
}

/* ---------- Free plan-catalogue download band (lead magnet) ---------- */
.download-band {
  background: var(--maroon-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.download-band__inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
}
.download-band__icon {
  flex: none; width: 60px; height: 60px; border-radius: 50%;
  background: var(--maroon); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.download-band__icon svg { width: 30px; height: 30px; }
.download-band__text { flex: 1; min-width: 0; }
.download-band__text h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: .35rem; }
.download-band__text p { margin: 0; font-size: 1rem; }
.download-band .btn { flex: none; }
@media (max-width: 760px) {
  .download-band__inner { flex-direction: column; align-items: flex-start; text-align: left; gap: 1.1rem; }
  .download-band .btn { width: 100%; justify-content: center; }
}

/* Free-plans download page: the "what's inside" grid + gated form */
.download-hero-form { max-width: 34rem; }
.download-inside { list-style: none; display: grid; gap: .8rem; }
.download-inside li { display: flex; gap: .7rem; align-items: baseline; font-size: 1.02rem; }
.download-inside li::before {
  content: "✓"; color: var(--maroon); font-weight: 700; flex: none; font-family: var(--font-head);
}

/* ---------- Build packages comparison (Bronze / Silver / Gold / Platinum) ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: start; }
@media (max-width: 1000px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.pkg-card--feature { border-color: var(--maroon); box-shadow: var(--shadow-md); }
.pkg-head { padding: 1.25rem 1.25rem 1rem; border-bottom: 1px solid var(--line); position: relative; }
.pkg-head__tier {
  font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--maroon); display: block; margin-bottom: .3rem;
}
.pkg-head h3 { font-size: 1.4rem; margin: 0; }
.pkg-head p { font-size: .85rem; color: var(--ink-mute); margin: .35rem 0 0; }
.pkg-head .badge { position: absolute; top: 1rem; right: 1rem; }
.pkg-body { padding: .5rem 1.25rem 1.25rem; display: grid; gap: 0; }
.pkg-cat { padding: .8rem 0; border-bottom: 1px solid var(--line); }
.pkg-cat:last-child { border-bottom: 0; }
.pkg-cat__label {
  font-family: var(--font-head); font-size: .72rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink); display: block; margin-bottom: .25rem;
}
.pkg-cat__val { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.pkg-cat__val.is-none { color: var(--ink-mute); font-style: italic; }
/* tier accent stripe on the card top */
.pkg-card .pkg-head::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.pkg-card--bronze .pkg-head::before { background: #A6712E; }
.pkg-card--silver .pkg-head::before { background: #9AA0A6; }
.pkg-card--gold .pkg-head::before { background: var(--gold); }
.pkg-card--platinum .pkg-head::before { background: linear-gradient(90deg, var(--maroon), var(--gold)); }

/* ---------- Top utility bar (Contact Us · Our Blog, above the logo, left) ---------- */
.topbar { background: #fff; border-bottom: 1px solid var(--line); font-size: .8rem; }
.topbar__inner {
  display: flex; justify-content: flex-start; align-items: center; gap: 1.5rem;
  min-height: 38px;
}
.topbar a {
  color: var(--ink-mute); text-decoration: none;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em;
  font-size: .74rem; padding: .2rem 0;
}
.topbar a:hover, .topbar a[aria-current="page"] { color: var(--maroon); }
@media (max-width: 960px) { .topbar__inner { gap: 1.75rem; min-height: 34px; } }
