/* ────────────────────────────────────────────────────────────────
   City Club Birmingham — Design System
   Built from Figma "CityClub.fig"
   Fonts: Libre Caslon Display (display) + Plus Jakarta Sans (body)
            + Funnel Display (small/quotes)
   ──────────────────────────────────────────────────────────────── */

:root {
  /* Brand colors */
  --c-navy:        rgb(40, 55, 74);
  --c-teal:        rgb(52, 69, 77);
  --c-gold:        rgb(177, 166, 104);
  --c-brown:       rgb(57, 48, 41);
  --c-cream:       rgb(248, 244, 236);
  --c-sand:        rgb(230, 228, 216);
  --c-stone:       rgb(220, 217, 208);
  --c-bg:          rgb(245, 245, 245);
  --c-ink:         rgb(36, 41, 37);
  --c-ink-soft:    rgb(52, 69, 77);
  --c-muted:       rgb(150, 150, 150);
  --c-line:        rgba(36, 41, 37, 0.12);
  --c-white:       #ffffff;

  /* Type */
  --f-display: "Libre Caslon Display", "Cormorant Garamond", "Times New Roman", serif;
  --f-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono:    "Funnel Display", "Plus Jakarta Sans", system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter:    57px;
  --gutter-lg: 70px;

  /* Spacing */
  --s-120:120px;  --s-80:80px;  --s-60:60px;  --s-40:40px;  --s-32:32px;
  --s-24:24px;   --s-20:20px;  --s-16:16px;  --s-12:12px;  --s-8:8px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Type scale (rooted in design) */
.t-h1 { font-family: var(--f-display); font-weight: 400; font-size: clamp(42px, 5.2vw, 67px); line-height: 1.04; letter-spacing: -0.005em; color: var(--c-teal); }
.t-h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(36px, 4vw, 64px); line-height: 1.06; }
.t-h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(26px, 2.4vw, 42px); line-height: 1.18; }
.t-h4 { font-family: var(--f-display); font-weight: 400; font-size: 30px; line-height: 1.05; }
.t-eyebrow {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-gold);
  display: inline-flex; align-items: center; gap: 7px;
  letter-spacing: 0.02em;
}
.t-eyebrow::before {
  content: "";
  width: 11px; height: 11px;
  background: currentColor;
  display: inline-block;
}
.t-eyebrow--ink { color: var(--c-ink); }
.t-eyebrow--white { color: var(--c-white); }
.t-eyebrow--navy { color: var(--c-navy); }

.t-body  { font-size: 16px; line-height: 22px; color: var(--c-ink-soft); }
.t-body-loose { font-size: 16px; line-height: 27px; color: var(--c-ink-soft); }
.t-small { font-family: var(--f-mono); font-size: 15px; line-height: 1.4; }

.t-script  { font-family: "Brittany Signature", "Caveat", cursive; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 22px;
  height: 47px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  border: none;
  background: var(--c-gold);
  color: var(--c-navy);
  cursor: pointer;
  transition: filter .2s ease, background .2s ease, color .2s ease, transform .15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover  { filter: brightness(1.05); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--outline {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
}
.btn--outline-ink {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-ink);
}
.btn--outline:hover { background: var(--c-gold); color: var(--c-navy); }
.btn--outline-ink:hover { background: var(--c-ink); color: var(--c-white); }
.btn--sm { height: 40px; padding: 10px 20px; }

/* ─── Top Navbar ───────────────────────────────────────────────── */
.nav {
  background: var(--c-brown);
  color: var(--c-white);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 15px 39px;
  height: 72px;
}
.nav__group {
  display: flex; gap: 33px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__group--right { justify-content: flex-end; }
.nav__group a {
  color: var(--c-white);
  opacity: 0.9;
  transition: color .2s, opacity .2s;
  position: relative;
}
.nav__group a:hover { color: var(--c-gold); opacity: 1; }
.nav__group a.is-active { color: var(--c-gold); opacity: 1; }
.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo svg { display: block; width: 123px; height: 43px; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--c-white);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}

/* ─── Hero (interior pages) ────────────────────────────────────── */
.hero {
  background: var(--c-teal);
  color: var(--c-white);
  padding: 98px var(--gutter) 41px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.hero__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 41px;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 5.4vw, 67px);
  line-height: 1.04;
  color: var(--c-white);
  font-weight: 400;
  margin-top: 20px;
  max-width: 720px;
  text-wrap: balance;
}
.hero__lede {
  max-width: 480px;
  text-align: right;
  color: var(--c-white);
  font-size: 16px;
  line-height: 27px;
  align-self: end;
}
.hero__lede--narrow { max-width: 420px; }
.hero__image {
  height: 404px;
  background-size: cover;
  background-position: center;
}
.hero__chevron {
  position: absolute;
  top: 24px;
  left: 0;
  width: 70%;
  max-width: 1100px;
  opacity: 0.20;
  pointer-events: none;
}
.hero__chevron svg { width: 100%; height: auto; }

/* eyebrow with gold dot in hero */
.hero .t-eyebrow { color: var(--c-gold); }

/* ─── Home / Top hero (image bg) ───────────────────────────────── */
.hero-home {
  background:
    linear-gradient(rgba(102,102,102,0) 1%, rgba(0,0,0,0.58) 100%),
    url("../assets/img/hero-skyline.png") center / cover no-repeat;
  border: 71px solid var(--c-teal);
  height: 806px;
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero-home__copy {
  max-width: 572px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero-home__title {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 1.05;
  font-weight: 400;
}
.hero-home__sub {
  font-size: 16px;
  line-height: 22px;
}
.hero-home__actions { display: flex; gap: 20px; }

/* ─── Sections — common ────────────────────────────────────────── */
.section {
  padding: var(--s-120) 0;
  position: relative;
  overflow: hidden;
}
.section--tight { padding: 80px 0; }
.section--no-bottom { padding-bottom: 0; }
.section--no-top { padding-top: 0; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide { padding: 0 calc(var(--gutter) - 7px); }

/* Two-col image/text */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col__image {
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 552 / 479;
  min-height: 420px;
}
.two-col__text { display: flex; flex-direction: column; gap: 32px; max-width: 560px; }

/* Photo pair (used on About / Dining etc.) */
.photo-pair-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.photo-pair-block__pair {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.photo-pair-block__photo {
  background-size: cover; background-position: center;
  aspect-ratio: 427 / 522;
}
.photo-pair-block__text {
  padding: 60px 58px;
  display: flex; flex-direction: column; gap: 36px;
  justify-content: center;
}

/* CTA band: dark image background */
.cta-band {
  position: relative;
  border: 71px solid var(--c-teal);
  background-size: cover;
  background-position: center;
  min-height: 582px;
  color: var(--c-white);
  padding: 71px 100px 60px 71px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 30px;
  text-align: right;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 5.2vw, 67px);
  line-height: 1.05;
  max-width: 700px;
  color: var(--c-white);
  font-weight: 400;
}
.cta-band__body {
  max-width: 540px;
  line-height: 22px;
  color: var(--c-white);
}
.cta-band__actions { display: flex; gap: 20px; }

/* Centered teal band */
.band-teal {
  background: var(--c-teal);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.band-teal .t-h1, .band-teal .t-h2, .band-teal .t-h3 { color: var(--c-gold); }
.band-teal .t-body, .band-teal .t-body-loose { color: var(--c-white); }

/* Chevron bg accent */
.chevron-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  overflow: hidden;
  pointer-events: none;
}
.chevron-bg svg { width: 1160px; height: 590px; display: block; }

/* Testimonials */
.tst {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tst__card {
  background: var(--c-stone);
  padding: 58px 87px 58px 87px;
  position: relative;
  min-height: 203px;
  display: flex;
  align-items: center;
}
.tst__card::after {
  content: "“";
  position: absolute;
  right: 24px;
  top: -12px;
  font-family: var(--f-display);
  font-size: 168px;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  pointer-events: none;
}
.tst__quote {
  font-family: var(--f-mono);
  font-size: 16px;
  line-height: 22px;
  color: var(--c-ink);
  position: relative;
  z-index: 1;
  max-width: 280px;
}
.tst__progress {
  margin-top: 30px;
  height: 10px;
  border-radius: 100px;
  background: var(--c-stone);
  overflow: hidden;
}
.tst__progress > span {
  display: block;
  height: 100%;
  background: var(--c-navy);
  border-radius: 100px;
  width: 65%;
}

/* Eyebrow row with dot — inline tag */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--c-gold);
  font-weight: 400;
}
.tag::before {
  content: ""; width: 11px; height: 11px;
  background: currentColor; flex: none;
}
.tag--ink   { color: var(--c-ink); }
.tag--white { color: var(--c-white); }
.tag--bold  { font-weight: 700; }

/* Two-up info card */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 93px;
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
}
.info-grid__item h4 {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: 16px;
}
.info-grid__item p {
  color: var(--c-white);
  font-size: 16px;
  line-height: 22px;
}

/* Frame card (with border) */
.frame-card {
  border: 1px solid var(--c-navy);
  padding: 50px 41px;
}
.frame-card__title {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 29px;
  color: var(--c-navy);
  margin-bottom: 28px;
}
.frame-card__list {
  white-space: pre-line;
  font-size: 16px;
  line-height: 22px;
  color: var(--c-navy);
  opacity: 0.85;
}

/* Slider controls */
.slider-ctrls { display: flex; gap: 10px; }
.slider-ctrls button {
  width: 47px; height: 47px;
  background: var(--c-sand);
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.slider-ctrls button:hover { background: var(--c-gold); }
.slider-ctrls svg { width: 11px; height: 19px; fill: var(--c-navy); }

/* Why members choose */
.why {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

/* Map */
.map-wrap {
  margin-top: 80px;
  background: var(--c-navy);
  position: relative;
  height: 560px;
  overflow: hidden;
}
.map-wrap__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 24px; height: 24px;
  border-radius: 50% 50% 50% 0;
  background: var(--c-gold);
  rotate: -45deg;
  box-shadow: 0 0 0 4px rgba(177,166,104,0.25);
}

/* Footer */
.footer {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 60px var(--gutter-lg) 60px;
  position: relative;
  overflow: hidden;
}
.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.footer__brand { display: flex; flex-direction: column; gap: 30px; max-width: 380px; }
.footer__logo { width: 123px; height: 43px; display: block; }
.footer__brand-name {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1;
}
.footer__addr { font-size: 16px; line-height: 17px; margin-top: 8px; opacity: 0.92; }
.footer__cols { display: flex; gap: 60px; }
.footer__col h5 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 18px; }
.footer__col a {
  font-family: var(--f-mono);
  font-size: 15px;
  opacity: 0.92;
  transition: color .2s;
}
.footer__col a:hover { color: var(--c-gold); }
.footer__chevron {
  position: absolute;
  right: -100px;
  top: 30px;
  width: 940px;
  opacity: 0.10;
  pointer-events: none;
}
.footer__chevron svg { width: 100%; height: auto; }

.footer-mini {
  border-top: 1px solid rgba(255,255,255,0.10);
  background: var(--c-navy);
  color: rgba(255,255,255,0.7);
  padding: 22px var(--gutter);
  font-size: 13px;
  text-align: center;
}

/* Membership tiers grid */
.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tier {
  background: var(--c-white);
  padding: 36px 36px 30px;
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 460px;
}
.tier__pill {
  align-self: flex-start;
  background: var(--c-cream);
  padding: 6px 14px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-navy);
}
.tier h4 {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1.08;
  color: var(--c-navy);
}
.tier p { color: var(--c-ink-soft); font-size: 15px; line-height: 22px; }
.tier ul { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.tier li {
  position: relative; padding-left: 18px;
  font-size: 14px; color: var(--c-ink-soft); line-height: 21px;
}
.tier li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; background: var(--c-gold);
}
.tier__cta { margin-top: auto; padding-top: 8px; }

/* Gallery grid (mosaic) */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 16px;
}
.gallery__tile {
  background-size: cover;
  background-position: center;
  transition: filter .25s, transform .35s;
}
.gallery__tile:hover { filter: brightness(1.05); }

/* Spans for the mosaic */
.gtile-1  { grid-column: span 5; grid-row: span 4; }
.gtile-2  { grid-column: span 4; grid-row: span 3; }
.gtile-3  { grid-column: span 3; grid-row: span 3; }
.gtile-4  { grid-column: span 4; grid-row: span 3; }
.gtile-5  { grid-column: span 3; grid-row: span 2; }
.gtile-6  { grid-column: span 5; grid-row: span 4; }
.gtile-7  { grid-column: span 4; grid-row: span 4; }
.gtile-8  { grid-column: span 3; grid-row: span 3; }
.gtile-9  { grid-column: span 5; grid-row: span 3; }
.gtile-10 { grid-column: span 7; grid-row: span 3; }
.gtile-11 { grid-column: span 4; grid-row: span 3; }
.gtile-12 { grid-column: span 4; grid-row: span 2; }
.gtile-13 { grid-column: span 4; grid-row: span 2; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form { display: grid; gap: 18px; }
.form label {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  display: block;
  margin-bottom: 6px;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-ink);
  outline: none;
  transition: border-color .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--c-gold); }
.form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form textarea { min-height: 140px; resize: vertical; }
.consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 18px;
}
.consent input { width: auto; margin-top: 3px; }

.contact-info { display: grid; gap: 32px; }
.contact-info__item {
  display: grid; gap: 8px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--c-line);
}
.contact-info__item h5 {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 700;
}
.contact-info__item p {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--c-navy);
  line-height: 1.2;
}

/* Logo (inline SVG) — used inside .nav__logo and footer */
.cc-logo .roof  { fill: none; stroke: currentColor; stroke-width: 1.2; }
.cc-logo .name  { font-family: var(--f-display); font-size: 16px; letter-spacing: 0.04em; }
.cc-logo .sub   { font-family: var(--f-body); font-size: 8px; letter-spacing: 0.28em; }

/* Section heads with eyebrow + title + body */
.s-head { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.s-head--center { margin: 0 auto; align-items: center; text-align: center; }

/* Utility */
.text-right { text-align: right; }
.text-center { text-align: center; }
.right { display: flex; justify-content: flex-end; }
.row-end { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.gap-30 { gap: 30px; }
.gap-20 { gap: 20px; }
.mt-30 { margin-top: 30px; }
.mt-60 { margin-top: 60px; }

/* Page Index helper */
.page-index { padding: var(--s-80) var(--gutter); max-width: 1080px; margin: 0 auto; }
.page-index h1 {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1.04;
  margin-bottom: 28px;
  color: var(--c-navy);
}
.page-index p { margin-bottom: 28px; color: var(--c-ink-soft); max-width: 640px; line-height: 1.7; }
.page-index ul.idx-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.idx-grid li a {
  display: block;
  padding: 22px 26px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  transition: border-color .2s, background .2s, transform .15s;
}
.idx-grid li a:hover { border-color: var(--c-gold); transform: translateY(-2px); }
.idx-grid h3 {
  font-family: var(--f-display);
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--c-navy);
}
.idx-grid p { font-size: 14px; color: var(--c-muted); line-height: 1.45; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .nav__inner { padding: 12px 24px; height: 64px; }
  .nav__group { font-size: 12px; gap: 22px; }
  .hero-home { border-width: 32px; height: auto; padding: 120px 24px; }
  .two-col, .photo-pair-block, .photo-pair-block__pair, .contact-grid, .why, .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .photo-pair-block__pair { grid-column: span 1; }
  .photo-pair-block__text { padding: 0; }
  .cta-band {
    border-width: 32px;
    padding: 60px 24px;
    align-items: flex-start;
    text-align: left;
    min-height: 460px;
  }
  .cta-band__title, .cta-band__body { text-align: left; }
  .tiers { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__cols { gap: 30px; flex-wrap: wrap; }
  .tst { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
  .gtile-1, .gtile-6 { grid-column: span 6; grid-row: span 3; }
  .gtile-2, .gtile-4, .gtile-7, .gtile-9, .gtile-10 { grid-column: span 6; grid-row: span 2; }
  .gtile-3, .gtile-5, .gtile-8, .gtile-11, .gtile-12, .gtile-13 { grid-column: span 3; grid-row: span 2; }
  .hero { padding: 70px 24px 32px; }
  .hero__inner { padding: 0; }
  .hero__top { grid-template-columns: 1fr; }
  .hero__lede { text-align: left; max-width: 100%; }
  .hero-home__title { font-size: 48px; }
}

@media (max-width: 640px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__group { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav--open .nav__group { display: flex; flex-direction: column; gap: 12px; padding: 16px 24px; background: var(--c-brown); position: absolute; left:0; right:0; top:64px; }
  .nav--open .nav__group--right { padding-top: 0; }
  .hero-home__title { font-size: 38px; }
  .hero__title { font-size: 38px; }
  .frame-card { padding: 30px 24px; }
}
