:root {
  --bg: #0b1220;
  --bg-2: #0f1729;
  --bg-3: #131e36;
  --surface: #152240;
  --surface-2: #1b2a4e;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: #edf0f7;
  --text-dim: #9aa3b8;
  --text-mute: #6a7692;
  --accent: #c6a25a;
  --accent-2: #e0c079;
  --accent-ink: #0b1220;
  --link: #7fa3d6;
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1240px;
}

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

html {
  scroll-padding-top: 80px; /* exact nav height — section top lands right below nav */
}
@media (max-width: 1024px) { html { scroll-padding-top: 68px; } }
@media (max-width: 768px) { html { scroll-padding-top: 64px; } }
@media (max-width: 420px) { html { scroll-padding-top: 58px; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
/* NOTE: do NOT use overflow-x: hidden on html or body — it BREAKS position: sticky on the nav */
html.menu-open,
html.menu-open body { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--accent-2); font-family: var(--font-display); }
button { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* === Typography === */
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 16px;
}

.section__lede {
  font-size: 17px;
  color: var(--text-dim);
  margin-top: 18px;
  max-width: 620px;
  line-height: 1.65;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  padding-left: 36px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--accent);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--full { width: 100%; justify-content: center; padding: 20px; font-size: 15px; letter-spacing: 0.4px; }

/* === Language ribbon (editorial) === */
.lang-ribbon {
  background:
    linear-gradient(90deg, var(--bg) 0%, var(--bg-2) 30%, var(--bg-3) 50%, var(--bg-2) 70%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 51;
  overflow: hidden;
}
.lang-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 80px at 50% 100%, rgba(198,162,90,0.12), transparent 70%);
  pointer-events: none;
}
.lang-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 20px;
  position: relative;
}
.lang-ribbon__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(198,162,90,0.35) 50%, transparent 100%);
  max-width: 220px;
}
.lang-ribbon__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.lang-ribbon__items {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-display);
}
.lang-ribbon__item {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.6px;
  font-feature-settings: "smcp" on, "c2sc" on;
  text-transform: uppercase;
  position: relative;
}
.lang-ribbon__sep {
  font-size: 12px;
  color: var(--accent);
  line-height: 1;
}
.lang-ribbon__caption {
  font-size: 10px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  font-family: var(--font-body);
}

/* === Nav === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav__logo { display: flex; align-items: center; gap: 14px; }
.nav__logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav__logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.15; }
.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.nav__logo-cred {
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav__links a {
  transition: color .15s;
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--text); }

/* Hamburger toggle (asymmetric premium) */
.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}
.nav__toggle:hover, .nav__toggle:focus-visible {
  border-color: var(--accent);
  background: rgba(198, 162, 90, 0.06);
}
.nav__toggle span {
  display: block;
  position: absolute;
  left: 14px;
  height: 1.5px;
  background: var(--text);
  transition: all .35s cubic-bezier(.65,.05,.36,1);
  border-radius: 1px;
}
.nav__toggle span:nth-child(1) { top: 18px; width: 20px; }
.nav__toggle span:nth-child(2) { top: 23.25px; width: 14px; background: var(--accent); }
.nav__toggle span:nth-child(3) { top: 28.5px; width: 20px; }
.nav__toggle[aria-expanded="true"] {
  border-color: var(--accent);
}
.nav__toggle[aria-expanded="true"] span {
  background: var(--accent);
  width: 20px;
  left: 14px;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 23.25px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 23.25px; transform: rotate(-45deg); }

/* === Mobile drawer (premium) === */
.nav__drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(198,162,90,0.08), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(198,162,90,0.06), transparent 60%),
    var(--bg);
  z-index: 40;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav__drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 96px 28px 40px;
  max-width: 520px;
  margin: 0 auto;
  min-height: 100%;
  gap: 36px;
}
.nav__drawer-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding-left: 36px;
  position: relative;
  display: block;
  font-weight: 500;
}
.nav__drawer-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--accent);
}

/* Nav links */
.nav__drawer-list {
  display: flex;
  flex-direction: column;
}
.nav__drawer-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: padding .25s ease, color .2s ease;
}
.nav__drawer-link:first-child { border-top: 1px solid var(--border); }
.nav__drawer-link:active,
.nav__drawer-link:hover { color: var(--accent); padding-left: 4px; }
.nav__drawer-link:active .nav__drawer-arrow,
.nav__drawer-link:hover .nav__drawer-arrow { transform: translateX(4px); color: var(--accent); }
.nav__drawer-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--accent);
  font-feature-settings: "tnum";
  padding-top: 6px;
  align-self: start;
  min-width: 22px;
}
.nav__drawer-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
}
.nav__drawer-arrow {
  color: var(--text-mute);
  transition: transform .25s ease, color .2s ease;
}

/* Contact block */
.nav__drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(15, 23, 41, 0.6) 0%, rgba(11, 18, 32, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.nav__drawer-contact::before {
  content: '';
  position: absolute;
  top: 0; left: 32px;
  width: 40px; height: 2px;
  background: var(--accent);
}
.nav__drawer-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 16px 20px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 20px -8px rgba(198,162,90,0.4);
  transition: background .2s ease, transform .15s ease;
}
.nav__drawer-cta:active {
  transform: scale(0.98);
  background: var(--accent-2);
}
.nav__drawer-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.nav__drawer-info > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.nav__drawer-info dt {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-top: 3px;
}
.nav__drawer-info dd {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text);
  text-align: right;
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.nav__drawer-info dd a { color: var(--text); }
.nav__drawer-info dd a:active { color: var(--accent); }

/* Footer credential strip */
.nav__drawer-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0 0;
  margin-top: auto;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}
.nav__drawer-dot {
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
}

html.menu-open { overflow: hidden; }
html.menu-open body { overflow: hidden; }
html.menu-open .nav__drawer {
  display: block;
  animation: drawerIn .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
html.menu-open .nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(11, 18, 32, 0.96);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border-2);
}

/* === Hero (cinematic, fits viewport) === */
.hero {
  position: relative;
  height: calc(100svh - 80px);
  min-height: 560px;
  padding: 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 75% center;
  filter: saturate(1.05) contrast(1.02);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, var(--bg) 0%, rgba(11,18,32,0.9) 36%, rgba(11,18,32,0.4) 64%, rgba(11,18,32,0.2) 92%),
    linear-gradient(180deg, rgba(11,18,32,0.35) 0%, transparent 35%, rgba(11,18,32,0.7) 100%);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.2vh, 28px);
  justify-content: center;
  padding-top: clamp(16px, 3vh, 32px);
  padding-bottom: clamp(16px, 3vh, 32px);
  flex: 1;
  min-height: 0;
}
.hero__text { max-width: 780px; }
.hero .eyebrow { color: var(--accent); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, min(4.4vw, 6.8vh), 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: clamp(8px, 1.4vh, 18px) 0 clamp(10px, 1.6vh, 20px);
  color: var(--text);
}
.hero__title span {
  display: block;
  opacity: 0;
  animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__title span:nth-child(1) { animation-delay: .05s; }
.hero__title span:nth-child(2) { animation-delay: .15s; }
.hero__title span:nth-child(3) { animation-delay: .25s; }
.hero__title span:nth-child(4) { animation-delay: .35s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(0); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-family: var(--font-display);
}
.hero__lede {
  font-size: clamp(13px, 1.7vh, 17px);
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 560px;
}
.hero__action-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 100%;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn--lg {
  padding: clamp(10px, 1.6vh, 16px) 26px;
  font-size: 14px;
}

/* Inline IRS badge — sits on the right of action row */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  background: rgba(15, 23, 41, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: auto;
}
.hero__badge strong {
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
}
.hero__badge-mark {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__badge-sep { color: var(--text-mute); font-size: 14px; line-height: 1; }

/* === Hero base (compact stats + cities) === */
.hero__base {
  margin-top: auto;
  background: rgba(11, 18, 32, 0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

/* Row wrapper: stats + langs */
.hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(8px, 1.2vh, 14px) 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

/* Stats — single row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}
.hero__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  white-space: nowrap;
}
.hero__stat strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}
.hero__stat strong sup {
  font-size: 13px;
  vertical-align: super;
  font-weight: 400;
}
.hero__stat-sep {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.6;
}

/* Stats group: stats row + centered bottom stat */
.hero__stats-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.hero__stats-bottom {
  display: flex;
  justify-content: center;
}

/* Cities — full row, wraps freely */
.hero__cities {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 22px;
  padding: clamp(8px, 1.2vh, 14px) 32px;
}
.hero__cities-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  margin-right: 4px;
}
.hero__cities-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hero__cities-list span {
  display: inline-block;
  position: relative;
}
.hero__cities-list span:not(:last-child)::after {
  content: '·';
  color: var(--accent);
  margin-left: 18px;
  opacity: 0.55;
}

/* Language indicator on the right */
.hero__langs {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px;
  background: rgba(198, 162, 90, 0.07);
  border: 1px solid rgba(198, 162, 90, 0.25);
  border-radius: 100px;
  flex-shrink: 0;
}
.hero__langs-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  white-space: nowrap;
}
.hero__langs-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.hero__langs-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.7;
}

/* === Sections === */
.section {
  padding-top: 70px;
  padding-bottom: 110px;
  border-bottom: 1px solid var(--border);
}
.section__head {
  max-width: 760px;
  margin-bottom: 64px;
}

/* === About === */
.about {
  padding-top: clamp(28px, 4vh, 56px);
  padding-bottom: clamp(40px, 6vh, 80px);
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, clamp(420px, 38vw, 560px)) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.about__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  background: var(--surface);
  position: sticky;
  top: 100px;
}
@media (max-height: 820px) and (min-width: 1025px) {
  .about__visual { aspect-ratio: 1/1; }
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__text .section__title {
  max-width: 560px;
  margin-bottom: 18px;
}
.about__text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.about__text strong { color: var(--text); font-weight: 500; }
.about__facts {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.about__facts dt {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about__facts dd {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* === Section head split (with side image) === */
.section__head-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
.section__head-split .section__head { margin-bottom: 0; }
.section__head-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--surface);
}
.section__head-visual img { width: 100%; height: 100%; object-fit: cover; }

/* === Banner (full-width image break) === */
.banner {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}
.banner__img { position: absolute; inset: 0; z-index: -2; }
.banner__img img { width: 100%; height: 100%; object-fit: cover; }
.banner::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.75) 0%, rgba(11,18,32,0.55) 50%, rgba(11,18,32,0.88) 100%);
}
.banner__overlay {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.banner__kicker {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.banner__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* === Services === */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service {
  background: var(--bg-2);
  padding: 44px 38px;
  transition: background-color .2s;
}
.service:hover { background: var(--surface); }
.service__num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 28px;
  font-weight: 500;
}
.service__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.25;
}
.service__desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service__list {
  list-style: none;
}
.service__list li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 12px 0;
  border-top: 1px solid var(--border);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.service__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}

/* === Process === */
.process {
  background: var(--bg-2);
  padding-top: clamp(32px, 5vh, 56px);
  padding-bottom: clamp(40px, 6vh, 80px);
}
.process__wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.process__visual {
  position: sticky; top: 90px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  max-height: calc(100vh - 140px);
  background: var(--surface);
  isolation: isolate;
}
.process__visual img { width: 100%; height: 100%; object-fit: cover; }
.process__visual figcaption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  padding: 12px 16px;
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--text);
  text-align: center;
}
.process__content .section__head { margin-bottom: 32px; }
.process__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: step;
}
.process__list li {
  padding: 28px 28px 0 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.process__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 500;
}
.process__list li h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.process__list li p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* === Credentials === */
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cred {
  background: var(--bg-2);
  padding: 38px 32px;
  transition: background-color .2s;
}
.cred:hover { background: var(--surface); }
.cred__icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(198, 162, 90, 0.12);
  color: var(--accent);
  border: 1px solid rgba(198, 162, 90, 0.25);
}
.cred__icon svg { width: 24px; height: 24px; }
.cred h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cred p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* === Quote === */
.quote {
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(198,162,90,0.08), transparent 60%),
    var(--bg);
  padding: 120px 0;
  text-align: center;
}
.quote__inner {
  max-width: 860px;
  margin: 0 auto;
}
.quote__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 36px;
}
.quote__who {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 340px;
  margin: 0 auto;
}
.quote__who span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
}
.quote__who em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* === FAQ === */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq__grid .section__head { margin-bottom: 0; position: sticky; top: 100px; }
.faq__grid a { color: var(--accent); }
.faq__list details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq__list details:first-child { border-top: 1px solid var(--border); }
.faq__list summary {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
}

/* === Contact === */
.contact {
  padding-top: clamp(28px, 4vh, 56px);
  padding-bottom: clamp(40px, 6vh, 80px);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact__left .section__title { margin-bottom: 14px; }
.contact__lede {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.contact__details {
  border-top: 1px solid var(--border);
}
.contact__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  transition: color .15s;
}
a.contact__row:hover { color: var(--accent); }
.contact__row-label {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 4px;
  flex-shrink: 0;
}
.contact__row-value {
  text-align: right;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.contact__row-value em {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}

.contact__form {
  padding: 28px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}
.field { display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .15s, background .15s;
  resize: vertical;
}
.field textarea { min-height: 80px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-3);
}
.contact__form .btn { grid-column: 1 / -1; }
.form-sent {
  grid-column: 1 / -1;
  padding: 14px 18px;
  background: rgba(198, 162, 90, 0.1);
  border: 1px solid rgba(198, 162, 90, 0.3);
  border-radius: 4px;
  color: var(--accent-2);
  font-size: 14px;
}
.form-error {
  grid-column: 1 / -1;
  padding: 14px 18px;
  background: rgba(220, 50, 50, 0.08);
  border: 1px solid rgba(220, 50, 50, 0.3);
  border-radius: 4px;
  color: #ff8a8a;
  font-size: 14px;
}
.form-fine {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  margin-top: -6px;
}

/* === Footer === */
.footer {
  background: var(--bg-2);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer__brand .footer__muted {
  margin-top: 24px;
  line-height: 1.7;
}
.footer__muted {
  color: var(--text-mute);
  font-size: 13px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer__cols h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer__cols ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__cols a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color .15s;
}
.footer__cols a:hover { color: var(--accent); }
.footer__base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

/* =================================================
   RESPONSIVE
   Breakpoints:
   - Large tablet / iPad landscape: <= 1200px
   - Tablet / iPad portrait:        <= 1024px
   - Mobile (all phones):           <= 768px
   - Small mobile:                  <= 420px
   ================================================= */

/* --- Large tablet / smaller desktop --- */
@media (max-width: 1200px) {
  .container { padding: 0 28px; }
  .section { padding: 60px 0 100px; }
  .hero__title { font-size: clamp(44px, 7vw, 86px); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .credentials__grid { grid-template-columns: repeat(2, 1fr); }
  .process__list li { padding-right: 18px; }
}

/* --- iPad portrait / tablet --- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav__inner { gap: 16px; padding-top: 14px; padding-bottom: 14px; }

  .hero { min-height: auto; padding: 24px 0 0; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 24px;
    padding-bottom: 56px;
  }
  .hero__title { font-size: clamp(44px, 8vw, 78px); margin: 24px 0 28px; }
  .hero__lede { font-size: 17px; }
  .hero__bg img { object-position: 75% center; }
  .hero__row { gap: 18px; padding: 14px 24px; }
  .hero__stats { gap: 14px 22px; }
  .hero__cities { gap: 6px 16px; padding: 14px 24px; }

  .about__grid,
  .contact__inner,
  .faq__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__visual {
    position: static;
    aspect-ratio: 16/10;
    max-width: 640px;
    margin: 0 auto;
  }
  .faq__grid .section__head { position: static; }
  .section__head-split { grid-template-columns: 1fr; gap: 40px; }
  .section__head-visual {
    aspect-ratio: 16/9;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
  .process__wrap { grid-template-columns: 1fr; gap: 48px; }
  .process__visual {
    position: relative;
    top: auto;
    aspect-ratio: 16/10;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .banner { padding: 110px 0; }
  .contact__form { padding: 36px 32px; }
}

/* --- Mobile (all phones) --- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 50px 0 72px; border-bottom: 1px solid var(--border); }
  .section__head { margin-bottom: 44px; }
  .section__title { font-size: clamp(28px, 7.5vw, 38px); }
  .section__lede { font-size: 16px; }

  /* Nav */
  .nav__logo-cred { display: none; }
  .nav__logo-name { font-size: 14px; }
  .nav__logo-mark { width: 38px; height: 38px; font-size: 14px; }
  .nav__inner { gap: 12px; }
  /* Drawer = compact panel anchored top-right under nav, not full screen */
  .nav__drawer {
    top: 64px;
    left: auto;
    right: 12px;
    bottom: auto;
    width: calc(100% - 24px);
    max-width: 360px;
    height: auto;
    max-height: calc(100dvh - 80px);
    border: 1px solid var(--border-2);
    border-radius: 14px;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(198,162,90,0.06);
    overflow-y: auto;
  }
  .nav__drawer-inner {
    padding: 18px 18px 16px;
    gap: 12px;
    min-height: 0;
    max-width: none;
    margin: 0;
    overflow: visible;
  }
  .nav__drawer-eyebrow { font-size: 9px; letter-spacing: 2px; padding-left: 26px; }
  .nav__drawer-eyebrow::before { width: 18px; }
  .nav__drawer-list { gap: 0; }
  .nav__drawer-link { font-size: 16px; padding: 9px 0; gap: 12px; }
  .nav__drawer-num { font-size: 9px; padding-top: 3px; min-width: 16px; }
  .nav__drawer-arrow { width: 14px; height: 14px; }
  .nav__drawer-contact { padding: 12px 14px; gap: 8px; border-radius: 8px; }
  .nav__drawer-contact::before { left: 14px; width: 24px; }
  .nav__drawer-cta { padding: 10px 14px; font-size: 14px; gap: 8px; box-shadow: none; }
  .nav__drawer-info { padding-top: 8px; gap: 6px; }
  .nav__drawer-info > div { gap: 12px; }
  .nav__drawer-info dt { font-size: 9px; letter-spacing: 1.3px; padding-top: 1px; }
  .nav__drawer-info dd { font-size: 12px; line-height: 1.3; }
  .nav__drawer-footer { padding: 8px 0 0; font-size: 8.5px; letter-spacing: 1.3px; gap: 5px; }

  /* Backdrop behind compact panel */
  html.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(5, 9, 18, 0.5);
    backdrop-filter: blur(2px);
    z-index: 35;
    pointer-events: none;
  }

  /* Hero — compact to fit first viewport exactly */
  .hero { padding: 4px 0 0; min-height: calc(100dvh - 64px); }
  .hero__inner {
    padding-top: 14px;
    padding-bottom: 18px;
    gap: 14px;
  }
  .hero .eyebrow { font-size: 9.5px; letter-spacing: 1.8px; }
  .hero__title {
    font-size: clamp(30px, 7.8vw, 42px);
    letter-spacing: -0.025em;
    line-height: 1.02;
    margin: 10px 0 12px;
  }
  .hero__lede { font-size: 13.5px; line-height: 1.5; max-width: 100%; }
  .hero__action-row { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 10px; }
  .hero__cta { gap: 8px; flex-direction: row; align-items: stretch; }
  .hero__cta .btn { flex: 1; justify-content: center; padding: 11px 12px; font-size: 13px; }
  .hero__cta .btn svg { display: none; }
  .btn--lg { padding: 11px 14px; font-size: 13px; }
  /* Inline IRS badge wraps better on small screens */
  .hero__badge {
    margin-left: 0;
    align-self: flex-start;
    flex-wrap: wrap;
    padding: 8px 14px 8px 8px;
    font-size: 10px;
    letter-spacing: 1.2px;
    gap: 6px;
  }
  .hero__badge-mark { width: 20px; height: 20px; }

  /* Compact bottom strip — 3 lines: stats / langs / cities */
  .hero__row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 12px;
  }
  .hero__stats-group { gap: 0; width: 100%; }
  .hero__stats {
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .hero__stat { font-size: 8.5px; gap: 5px; letter-spacing: 0.6px; white-space: nowrap; }
  .hero__stat strong { font-size: 13px; }
  .hero__stat strong sup { font-size: 9px; }
  .hero__stat-sep { width: 3px; height: 3px; }

  .hero__stats-bottom { display: none; }
  .hero__cities {
    gap: 4px 10px;
    padding: 6px 12px 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
  }
  .hero__cities-label { font-size: 8.5px; letter-spacing: 1.2px; width: 100%; text-align: center; margin: 0 0 2px; }
  .hero__cities-list { font-size: 11px; gap: 2px 10px; justify-content: center; }
  .hero__cities-list span:not(:last-child)::after { margin-left: 10px; }
  .hero__langs {
    width: 100%;
    justify-content: center;
    padding: 5px 12px;
    gap: 10px;
    border-radius: 100px;
  }
  .hero__langs-label { font-size: 8.5px; letter-spacing: 1.4px; }
  .hero__langs-list { font-size: 11px; gap: 7px; }

  /* Language ribbon */
  .lang-ribbon__inner { gap: 14px; padding: 12px 16px; }
  .lang-ribbon__rule { max-width: 40px; }
  .lang-ribbon__items { gap: 14px; }
  .lang-ribbon__item { font-size: 13px; letter-spacing: 0.4px; }
  .lang-ribbon__caption { font-size: 9px; letter-spacing: 2px; }

  /* About */
  .about__grid { gap: 40px; }
  .about__text p { font-size: 16px; line-height: 1.7; }
  .about__facts { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; padding-top: 24px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .service { padding: 32px 26px; }
  .service__title { font-size: 20px; }
  .service__desc { font-size: 15px; }

  /* Process */
  .process__wrap { gap: 32px; }
  .process__visual { aspect-ratio: 4/3; }
  .process__visual figcaption { font-size: 13px; }
  .process__list { gap: 24px; }
  .process__list li { padding: 22px 0 0 0; }
  .process__list li h3 { font-size: 18px; }
  .process__list li p { font-size: 14px; }

  /* Credentials */
  .credentials__grid { grid-template-columns: 1fr; }
  .cred { padding: 28px 24px; }

  /* Quote */
  .quote { padding: 72px 0; }
  .quote__text { font-size: 22px; line-height: 1.45; }

  /* Banner */
  .banner { padding: 80px 0; }
  .banner__text { font-size: 22px; }

  /* FAQ */
  .faq__list summary {
    font-size: 16px;
    gap: 16px;
    padding-right: 0;
  }
  .faq__list summary::after { font-size: 24px; }
  .faq__list details { padding: 18px 0; }
  .faq__list p { font-size: 14px; }

  /* Contact */
  .contact__inner { gap: 40px; }
  .contact__form {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact__row { padding: 18px 0; }
  .contact__row-value { font-size: 15px; }
  .field input, .field select, .field textarea {
    font-size: 16px;  /* prevents iOS zoom */
    padding: 14px 16px;
  }
  .field textarea { min-height: 120px; }
  .field label { white-space: normal; }
  .btn--full { padding: 16px; font-size: 14px; }

  /* Footer */
  .footer { padding: 60px 0 32px; }
  .footer__inner { gap: 40px; padding-bottom: 40px; margin-bottom: 24px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Section head split image */
  .section__head-visual { aspect-ratio: 16/10; }
}

/* --- Small mobile --- */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0 60px; }
  .section__head { margin-bottom: 36px; }

  .nav__inner { gap: 8px; padding-top: 10px; padding-bottom: 10px; }
  .nav__logo-mark { width: 32px; height: 32px; font-size: 12px; }
  .nav__logo-name { font-size: 12px; }

  /* Drawer — even tighter on small phones */
  .nav__drawer { top: 56px; right: 10px; width: calc(100% - 20px); max-height: calc(100dvh - 70px); border-radius: 12px; }
  .nav__drawer-inner { padding: 14px 14px 14px; gap: 10px; }
  .nav__drawer-link { font-size: 15px; padding: 8px 0; }
  .nav__drawer-contact { padding: 12px 14px; gap: 8px; }
  .nav__drawer-cta { padding: 10px 14px; font-size: 13px; }
  .nav__drawer-info { padding-top: 8px; gap: 6px; }
  .nav__drawer-info dd { font-size: 11.5px; }
  .nav__drawer-info dt { font-size: 8.5px; }
  .nav__drawer-footer { padding: 8px 0 0; font-size: 8px; }

  /* Hero — smallest screens */
  .hero { min-height: calc(100dvh - 56px); padding: 2px 0 0; }
  .hero__inner { padding-top: 10px; padding-bottom: 12px; gap: 10px; }
  .hero__title { font-size: clamp(26px, 7.6vw, 34px); margin: 8px 0 10px; line-height: 1.04; }
  .hero__lede { font-size: 12.5px; line-height: 1.42; }
  .hero__action-row { gap: 8px; margin-top: 8px; }
  .hero__cta .btn { padding: 10px 10px; font-size: 12px; }
  .hero .eyebrow { font-size: 9px; letter-spacing: 1.6px; }

  .hero__row { padding: 6px 10px; gap: 6px; }
  .hero__stats { padding: 0; gap: 6px; flex-wrap: nowrap; justify-content: space-between; }
  .hero__stat { font-size: 8px; gap: 4px; letter-spacing: 0.5px; }
  .hero__stat strong { font-size: 12px; }
  .hero__stat strong sup { font-size: 8px; }
  .hero__cities { padding: 5px 10px 8px; gap: 3px 8px; }
  .hero__cities-label { font-size: 8px; }
  .hero__cities-list { font-size: 10.5px; gap: 2px 8px; }
  .hero__cities-list span:not(:last-child)::after { margin-left: 8px; }
  .hero__langs { padding: 4px 10px; gap: 8px; }
  .hero__langs-label { font-size: 8px; }
  .hero__langs-list { font-size: 10px; gap: 6px; }
  .hero__badge { font-size: 9.5px; padding: 6px 12px 6px 6px; gap: 6px; }
  .hero__badge-mark { width: 18px; height: 18px; }

  .service { padding: 26px 20px; }
  .cred { padding: 24px 20px; }
  .contact__form { padding: 22px 18px; }

  .footer__cols { grid-template-columns: 1fr; }
}
