/* =============================================================
   Ann Street Limited — annstreetlimited.com
   Brand: Navy #2c4368 · Gold #d4a843 · Sky #a8c8e8 · Ink #414042
   Type:  Cormorant Garamond (display) · Montserrat (body)
          Sorts Mill Goudy (sub / eyebrow — Goudy Old Style web stand-in)
   ============================================================= */

:root {
  --navy: #2c4368;
  --navy-deep: #223554;
  --navy-ink: #1b2a44;
  --gold: #d4a843;
  --gold-soft: #e2bf6e;
  --sky: #a8c8e8;
  --sky-soft: #eaf1f9;
  --ink: #414042;
  --paper: #ffffff;
  --cream: #f7f5f0;
  --line: #e4e0d6;
  --line-navy: rgba(255, 255, 255, 0.14);
  --serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --sans: "Montserrat", "Segoe UI", Arial, sans-serif;
  --goudy: "Sorts Mill Goudy", "Goudy Old Style", Georgia, serif;
  --shadow: 0 18px 50px rgba(27, 42, 68, 0.14);
  --shadow-soft: 0 10px 30px rgba(27, 42, 68, 0.10);
}

/* ---------- Reset-lite ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--navy); margin: 0 0 0.4em; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-style: italic; font-weight: 400; line-height: 1.08; letter-spacing: 0.005em; }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); font-style: italic; font-weight: 500; line-height: 1.14; }
h3 { font-size: 1.45rem; line-height: 1.3; }

.eyebrow {
  font-family: var(--goudy);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin: 0 0 1.1rem;
}
.eyebrow--navy { color: var(--navy); opacity: 0.75; }

.lede { font-size: 1.13rem; line-height: 1.8; }
.small { font-size: 0.85rem; }

/* ---------- Layout ---------- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 880px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--sky { background: var(--sky-soft); }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, 0.88); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--gold-soft); }
.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--wide-text { grid-template-columns: 7fr 5fr; }

/* Gold-offset picture frame */
.img-frame { position: relative; }
.img-frame img { position: relative; z-index: 1; box-shadow: var(--shadow); }
.img-frame::after {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--gold);
  z-index: 0;
}
.img-frame--left::after { inset: 24px 24px -24px -24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  line-height: 1.2;
}
.btn--gold { background: var(--gold); color: var(--navy-ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-deep); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.65); }
.btn--outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

.text-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.text-link:hover { color: var(--gold); }

/* ---------- Top bar + Header ---------- */
.topbar {
  background: var(--navy-ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; gap: 16px; }
.topbar a { color: var(--gold-soft); }
.topbar a:hover { color: #fff; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 4px 24px rgba(27, 42, 68, 0.06);
}
.site-header::before { content: ""; display: block; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-soft) 55%, var(--gold)); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 18px; padding-bottom: 18px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 250px; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--gold); }
.nav a.is-active { border-bottom-color: var(--gold); }
.nav .btn { padding: 13px 24px; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.25s; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--navy-ink); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(78deg, rgba(27, 42, 68, 0.92) 0%, rgba(27, 42, 68, 0.72) 38%, rgba(27, 42, 68, 0.28) 72%, rgba(27, 42, 68, 0.45) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 150px 0 190px; max-width: 640px; }
.hero__inner h1 { color: #fff; margin-bottom: 0.5em; }
.hero__inner .lede { color: rgba(255, 255, 255, 0.9); margin-bottom: 2.2rem; max-width: 540px; }
.hero__inner .eyebrow { color: var(--gold-soft); }

/* Page hero (interior pages) */
.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: 40px;
  top: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(168, 200, 232, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero__inner { padding: 92px 0 84px; max-width: 760px; position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-bottom: 0.35em; }
.page-hero .lede { color: rgba(255, 255, 255, 0.85); margin: 0; }
.page-hero .eyebrow { color: var(--gold-soft); }

/* ---------- Stat strip ---------- */
.stat-strip { position: relative; z-index: 5; margin-top: -78px; }
.stat-strip__card {
  background: var(--paper);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--gold);
}
.stat {
  padding: 34px 20px 30px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat__num { font-family: var(--serif); font-style: italic; font-size: 2.5rem; line-height: 1; color: var(--navy); display: block; margin-bottom: 8px; }
.stat__num--sm { font-size: 2rem; padding-top: 0.35rem; }
.stat__label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); opacity: 0.8; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px 30px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.feature-card h3 { font-family: var(--sans); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin: 18px 0 10px; }
.feature-card p { font-size: 0.92rem; margin: 0; opacity: 0.9; }
.feature-card svg { width: 40px; height: 40px; stroke: var(--gold); }

/* ---------- Site plan + legend ---------- */
.siteplan-card { background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: 18px; }
.siteplan-card img { width: 100%; }
.siteplan-caption { font-size: 0.8rem; text-align: center; opacity: 0.75; margin: 14px 0 2px; }

.legend { display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center; margin-top: 26px; }
.legend a { display: inline-flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }
.legend a:hover { color: var(--gold); }
.legend i { width: 16px; height: 16px; display: inline-block; border: 1px solid rgba(27, 42, 68, 0.25); }
.k-harris { background: #e6c34c; }
.k-williamson { background: #5b8dd6; }
.k-tibbatts { background: #4ca858; }
.k-ringgold { background: #e8923c; }
.k-hub { background: var(--navy); }

/* ---------- Design (home style) sections ---------- */
.design { padding: 90px 0; border-top: 1px solid var(--line); }
.design:first-of-type { border-top: 0; }
.design--alt { background: var(--cream); }

.design__head { display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap; margin-bottom: 8px; }
.design__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 16px;
}
.design__badge i { width: 12px; height: 12px; display: inline-block; }
.design h2 { margin-bottom: 0; }

.spec-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 40px; }
.spec-chips li {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  background: rgba(212, 168, 67, 0.08);
}

.design__body { display: grid; grid-template-columns: 5fr 7fr; gap: 60px; align-items: start; }
.design__body .img-frame { margin-bottom: 10px; }

.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; margin: 20px 0 8px; }
.checklist li { position: relative; padding-left: 30px; font-size: 0.93rem; line-height: 1.55; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.checklist-title { font-family: var(--sans); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin: 26px 0 4px; }

.fp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 48px; }
.fp-card { background: var(--paper); border: 1px solid var(--line); padding: 14px; }
.fp-card figcaption { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); text-align: center; padding: 14px 6px 6px; }
.fp-card figcaption span { display: block; font-family: var(--goudy); font-weight: 400; letter-spacing: 0.04em; text-transform: none; font-size: 0.82rem; opacity: 0.75; margin-top: 3px; }
.fp-card a:hover img { opacity: 0.92; }
figure { margin: 0; }

.panel-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 44px; }
.panel { background: var(--sky-soft); padding: 34px 34px 28px; border-top: 3px solid var(--sky); }
.panel--gold { background: rgba(212, 168, 67, 0.10); border-top-color: var(--gold); }
.panel h3 { font-family: var(--sans); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
.panel p { font-size: 0.94rem; margin: 0; }
.design--alt .fp-card, .design--alt .design__badge { background: var(--paper); }
.design--alt .panel { background: rgba(168, 200, 232, 0.18); }
.design--alt .panel--gold { background: rgba(212, 168, 67, 0.10); }

/* ---------- Hub hours ---------- */
.hours-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .d { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }
.hours-card { background: var(--cream); border-top: 3px solid var(--gold); padding: 26px 30px 16px; margin-top: 52px; }
.hours-card h3 { font-family: var(--sans); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 6px; }
.info-card .hours-list li { border-color: var(--line-navy); }
.info-card .hours-list .d { color: var(--gold-soft); }

/* Coming-soon placeholder */
.placeholder-panel {
  border: 1px dashed rgba(44, 67, 104, 0.35);
  background: repeating-linear-gradient(-45deg, rgba(168, 200, 232, 0.10), rgba(168, 200, 232, 0.10) 14px, rgba(168, 200, 232, 0.02) 14px, rgba(168, 200, 232, 0.02) 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 30px;
  min-height: 340px;
}
.placeholder-panel svg { width: 54px; height: 54px; stroke: var(--gold); margin-bottom: 18px; }
.placeholder-panel strong { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.35rem; color: var(--navy); display: block; margin-bottom: 6px; }
.placeholder-panel span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; border-top: 1px solid rgba(212, 168, 67, 0.45); }
.cta-band::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 50%;
}
.cta-band .container { padding-top: 84px; padding-bottom: 84px; display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 0.35em; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-band__actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- Forms (Gravity Forms placeholder) ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--gold); box-shadow: var(--shadow-soft); padding: 44px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); background: #fff; }
.form-field label.form-consent, .form-consent span { text-transform: none; letter-spacing: normal; font-weight: 500; color: var(--ink); }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.78rem; line-height: 1.6; opacity: 0.85; }
.form-consent input { margin-top: 4px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: start; }
.info-card { background: var(--navy); color: rgba(255, 255, 255, 0.88); padding: 42px 40px; }
.info-card h3 { color: #fff; font-family: var(--sans); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 10px; }
.info-card hr { border: 0; border-top: 1px solid var(--line-navy); margin: 26px 0; }
.info-card a { color: var(--gold-soft); }
.info-card a:hover { color: #fff; }
.info-card .big-phone { font-family: var(--serif); font-style: italic; font-size: 1.9rem; color: #fff; display: inline-block; line-height: 1.2; }
.map-frame { border: 1px solid var(--line); box-shadow: var(--shadow-soft); margin-top: 26px; }
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; }

.socials { display: flex; gap: 14px; margin-top: 14px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-navy);
  border-radius: 50%;
  transition: border-color 0.2s, background 0.2s;
}
.socials a:hover { border-color: var(--gold); background: rgba(212, 168, 67, 0.12); }
.socials svg { width: 17px; height: 17px; fill: var(--gold-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-ink); color: rgba(255, 255, 255, 0.78); font-size: 0.9rem; }
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-main { display: grid; grid-template-columns: 5fr 3fr 4fr; gap: 56px; padding: 74px 0 58px; }
.footer-brand img { width: 280px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; opacity: 0.85; max-width: 340px; }
.footer-h { font-family: var(--goudy); font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
address { font-style: normal; line-height: 1.9; }

.footer-partners { border-top: 1px solid var(--line-navy); padding: 38px 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-partners__label { font-family: var(--goudy); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.6; }
.partner-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.partner-logos img { opacity: 0.92; }
.partner-logos .p-ucdi { height: 34px; width: auto; }
.partner-logos .p-mh { height: 64px; width: auto; }
.kw-lockup { line-height: 1.25; color: #fff; }
.kw-lockup b { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; display: block; line-height: 1; }
.kw-lockup span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; }
.reg-logos { display: flex; align-items: center; gap: 18px; }
.reg-logos img { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }

.footer-legal { border-top: 1px solid var(--line-navy); padding: 26px 0 34px; font-size: 0.74rem; opacity: 0.65; }
.footer-legal .container { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 3rem; }
.center { text-align: center; }
.gold-rule { width: 64px; height: 2px; background: var(--gold); border: 0; margin: 0 0 1.6rem; }
.center .gold-rule, .section-head--center .gold-rule { margin-left: auto; margin-right: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .split, .split--wide-text, .design__body { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: block; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar .topbar__phone { display: none; }
  .hero__inner { padding: 100px 0 150px; }
  .stat-strip__card { grid-template-columns: 1fr 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
  .fp-grid, .panel-duo, .checklist, .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
  .section { padding: 68px 0; }
  .img-frame::after { display: none; }
  .brand img { width: 200px; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-partners { justify-content: center; }
}
