/* ==========================================================================
   Urban Casa Hotel — Lucknow
   Design note: every room in the hotel is painted a different saturated
   colour. That is the brand. The three room categories therefore own three
   wall colours (teal / cobalt / crimson) and those colours are used as
   structural spines throughout the site, never as decoration.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --ink: #0c3237;
  --ink-2: #10474d;
  --ink-3: #4c6664;
  --paper: #f3f6f4;
  --paper-2: #ffffff;
  --line: #d7e0dd;
  --line-strong: #b6c5c1;

  --lime: #7fb927;
  --teal: #3bbba4;
  --sky: #8ccbe8;
  --mustard: #e0a020;

  --premium: #1f8e96;
  --delux: #1b3a8c;
  --classic: #a32438;

  --shell: min(1180px, 100% - 3rem);
  --r: 4px;

  --f-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --f-body: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}

.shell { width: var(--shell); margin-inline: auto; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
}
.skip:focus { left: 0; }

/* ---------- header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 246, 244, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead::after {
  content: ""; display: block; height: 3px;
  background: linear-gradient(to right,
    var(--premium) 0 33.33%, var(--delux) 33.33% 66.66%, var(--classic) 66.66%);
}
.masthead-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 0;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand img { width: 46px; height: auto; }
.brand-name {
  font-family: var(--f-display); font-weight: 800; font-size: 1.2rem;
  letter-spacing: -.01em; line-height: 1;
}
.brand-sub {
  font-size: .72rem; color: var(--ink-3); letter-spacing: .04em; line-height: 1.3;
}

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  font: inherit; font-weight: 700; font-size: .9rem;
  background: none; border: 1px solid var(--line-strong);
  border-radius: var(--r); padding: .5rem .8rem; cursor: pointer; color: var(--ink);
}
.nav-toggle span {
  width: 18px; height: 10px; position: relative; display: inline-block;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: 0; }
.nav-toggle span::after { bottom: 0; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  text-decoration: none; font-size: .95rem; font-weight: 500;
  padding: .35rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--line-strong); }
.nav a[aria-current="page"] { border-bottom-color: var(--ink); font-weight: 700; }
.nav .btn { border-bottom: 0; }

@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper-2); border-bottom: 1px solid var(--line);
    padding: .5rem 1.5rem 1.25rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .nav .btn { margin-top: 1rem; justify-content: center; }
}
@media (min-width: 901px) { .nav-toggle { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-body); font-weight: 700; font-size: .95rem;
  padding: .7rem 1.15rem; border-radius: var(--r);
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--ink-2); }
.btn-lime { background: var(--lime); color: #10300a; }
.btn-lime:hover { background: #6ea320; }
.btn-line { border-color: currentColor; color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- hero (home) ---------- */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,35,39,.86) 0%, rgba(8,35,39,.78) 100%);
}
@media (min-width: 820px) {
  .hero::after {
    background: linear-gradient(100deg, rgba(8,35,39,.95) 0%, rgba(8,35,39,.82) 42%, rgba(8,35,39,.34) 100%);
  }
}
.hero-in { z-index: 1; }
.hero-in {
  position: relative; padding: 4.5rem 0 3rem; color: #fff;
  max-width: 40rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.3rem);
  font-weight: 800; margin-bottom: 1rem;
}
.hero p { font-size: clamp(1.02rem, 2.2vw, 1.2rem); color: #dfeae7; max-width: 32rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.9rem; }
.hero-tag {
  display: inline-block; font-size: .82rem; font-weight: 700;
  letter-spacing: .08em; color: var(--sky); margin-bottom: 1.1rem;
}
@media (min-width: 820px) { .hero-in { padding: 7rem 0 5.5rem; } }

@media (prefers-reduced-motion: no-preference) {
  .hero-img { animation: settle 1.4s cubic-bezier(.2,.7,.3,1) both; }
  .hero-in > * { animation: rise .7s cubic-bezier(.2,.7,.3,1) both; }
  .hero-in > :nth-child(1) { animation-delay: .12s; }
  .hero-in > :nth-child(2) { animation-delay: .2s; }
  .hero-in > :nth-child(3) { animation-delay: .3s; }
  .hero-in > :nth-child(4) { animation-delay: .4s; }
  @keyframes settle { from { transform: scale(1.07); opacity: 0; } to { transform: none; opacity: 1; } }
  @keyframes rise { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
}

/* ---------- facts band ---------- */
.facts { background: var(--ink-2); color: #fff; }
.facts ul {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.facts li {
  padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.16);
}
.facts li:last-child { border-bottom: 0; }
.facts dt, .facts .k {
  font-size: .76rem; letter-spacing: .07em; color: var(--sky);
  display: block; margin-bottom: .2rem;
}
.facts .v { font-family: var(--f-display); font-weight: 600; font-size: 1.12rem; }
.facts a { text-decoration: none; }
.facts a:hover { text-decoration: underline; }
@media (min-width: 700px) {
  .facts ul { grid-template-columns: repeat(4, 1fr); }
  .facts li {
    padding: 1.4rem 1.5rem 1.4rem 0; border-bottom: 0;
    border-right: 1px solid rgba(255,255,255,.16);
  }
  .facts li:last-child { border-right: 0; padding-right: 0; }
}

/* ---------- generic section ---------- */
.band { padding: 3.5rem 0; }
.band-tight { padding: 2.5rem 0; }
.band-paper { background: var(--paper-2); }
.band-ink { background: var(--ink); color: #fff; }
.band-ink h2, .band-ink h3 { color: #fff; }
@media (min-width: 820px) { .band { padding: 5.5rem 0; } }

.band-head { max-width: 46rem; margin-bottom: 2.5rem; }
.band-head h2 { font-size: clamp(1.85rem, 4.2vw, 2.9rem); margin-bottom: .8rem; }
.band-head p { color: var(--ink-3); font-size: 1.08rem; }
.band-ink .band-head p { color: #c6d8d5; }

.lede { font-size: 1.15rem; max-width: 40rem; }

/* ---------- page banner (inner pages) ---------- */
.banner { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.banner img.banner-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,35,39,.94) 0%, rgba(8,35,39,.82) 50%, rgba(8,35,39,.55) 100%);
}
.banner-in { z-index: 1; }
.banner-in { position: relative; padding: 3rem 0 2.6rem; max-width: 42rem; }
.banner h1 { font-size: clamp(2rem, 5.5vw, 3.4rem); margin-bottom: .7rem; }
.banner p { color: #d3e2df; }
@media (min-width: 820px) { .banner-in { padding: 4.5rem 0 4rem; } }

.crumbs { font-size: .85rem; color: var(--sky); margin-bottom: .9rem; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------- room list (colour spine system) ---------- */
.rooms { display: grid; gap: 1.5rem; }
@media (min-width: 860px) { .rooms { grid-template-columns: repeat(3, 1fr); } }

.room {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 5px solid var(--tint, var(--ink));
  border-radius: var(--r);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.room-photo { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.room-body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.5rem; }
.room-colour {
  font-size: .8rem; color: var(--tint); font-weight: 700;
  margin: .35rem 0 .9rem; display: flex; align-items: center; gap: .45rem;
}
.room-colour::before {
  content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--tint);
}
.room-body p { color: var(--ink-3); font-size: .97rem; }
.room-price {
  margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; gap: .5rem;
}
.room-price b {
  font-family: var(--f-display); font-size: 2rem; font-weight: 700; letter-spacing: -.03em;
}
.room-price span { font-size: .85rem; color: var(--ink-3); }
.room-link {
  margin-top: 1rem; font-weight: 700; font-size: .92rem;
  text-decoration: none; border-bottom: 2px solid var(--tint);
  align-self: flex-start; padding-bottom: 1px;
}

/* detailed room rows */
.room-row {
  display: grid; gap: 1.75rem; padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}
.room-row:first-of-type { border-top: 0; padding-top: .5rem; }
.room-figure { display: grid; gap: .6rem; grid-template-columns: 1fr 1fr; }
.room-figure img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); }
.room-figure img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.room-figure img:not(:first-child) { aspect-ratio: 1 / 1; }
.room-detail h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  padding-left: .85rem; border-left: 6px solid var(--tint);
}
.room-detail .rate {
  font-family: var(--f-display); font-size: 2.6rem; font-weight: 700;
  letter-spacing: -.03em; line-height: 1; margin: 1.2rem 0 .3rem;
}
.room-detail .rate small { font-family: var(--f-body); font-size: .85rem; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 1rem; margin: 1.4rem 0 1.6rem; }
.feature-list li { font-size: .93rem; padding-left: 1.2rem; position: relative; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; background: var(--tint); border-radius: 2px;
}
@media (min-width: 900px) {
  .room-row { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3rem; }
  .room-row.flip .room-figure { order: 2; }
}

/* ---------- tariff table ---------- */
.rate-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.rate-table caption { text-align: left; color: var(--ink-3); font-size: .9rem; padding-bottom: .75rem; }
.rate-table th, .rate-table td { text-align: left; padding: 1rem .75rem; border-bottom: 1px solid var(--line); }
.rate-table thead th {
  font-family: var(--f-body); font-size: .8rem; letter-spacing: .06em;
  color: var(--ink-3); font-weight: 700; border-bottom: 2px solid var(--ink);
}
.rate-table tbody th { font-family: var(--f-display); font-size: 1.2rem; font-weight: 700; }
.rate-table tbody tr th:first-child { border-left: 5px solid var(--tint); padding-left: 1rem; }
.rate-table .amount { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; white-space: nowrap; }
.rate-table td.notes { color: var(--ink-3); font-size: .92rem; }
@media (max-width: 700px) {
  .rate-table thead { position: absolute; left: -9999px; }
  .rate-table tr { display: block; border-bottom: 1px solid var(--line); padding: 1rem 0; }
  .rate-table th, .rate-table td { display: block; border: 0; padding: .15rem .75rem; }
  .rate-table tbody tr th:first-child { padding-left: 1rem; }
}

/* ---------- offers ---------- */
.offers { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .offers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .offers { grid-template-columns: repeat(4, 1fr); } }
.offer {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--paper-2); padding: 1.4rem 1.3rem 1.3rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.offer .pct {
  font-family: var(--f-display); font-size: 2.5rem; font-weight: 800;
  line-height: 1; letter-spacing: -.04em; color: var(--tint);
}
.offer h3 { font-size: 1.12rem; }
.offer p { font-size: .92rem; color: var(--ink-3); }
.code {
  margin-top: auto; align-self: flex-start;
  font-family: var(--f-body); font-weight: 700; font-size: .88rem;
  letter-spacing: .06em; padding: .4rem .7rem; border-radius: var(--r);
  background: var(--paper); border: 1px dashed var(--line-strong);
}

/* ---------- amenity grid ---------- */
.amenities { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
@media (min-width: 560px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .amenities { grid-template-columns: repeat(3, 1fr); } }
.amenity { background: var(--paper-2); padding: 1.35rem 1.3rem; }
.amenity h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.amenity p { font-size: .92rem; color: var(--ink-3); }
.band-ink .amenities { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.16); }
.band-ink .amenity { background: var(--ink); }
.band-ink .amenity p { color: #b9cbc8; }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.filter {
  font: inherit; font-size: .9rem; font-weight: 600;
  background: var(--paper-2); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: .45rem 1rem; cursor: pointer; color: var(--ink);
}
.filter[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.grid-gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .grid-gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.shot {
  border: 0; padding: 0; background: none; cursor: zoom-in; border-radius: var(--r); overflow: hidden;
}
.shot img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.shot figcaption {
  font-size: .82rem; color: var(--ink-3); padding: .5rem .1rem 0; text-align: left;
}
.shot[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(8, 30, 33, .93); padding: 1.5rem;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 82vh; object-fit: contain; border-radius: var(--r); }
.lightbox-caption { color: #cfe0dd; text-align: center; margin-top: .9rem; font-size: .92rem; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: 1.5px solid rgba(255,255,255,.6); color: #fff;
  font: inherit; font-weight: 700; border-radius: var(--r); padding: .45rem .85rem; cursor: pointer;
}

/* ---------- rules ---------- */
.rules { display: grid; gap: 1.1rem; }
@media (min-width: 780px) { .rules { grid-template-columns: repeat(2, 1fr); } }
.rule {
  background: var(--paper-2); border: 1px solid var(--line);
  border-left: 5px solid var(--tint, var(--ink)); border-radius: var(--r);
  padding: 1.3rem 1.35rem;
}
.rule h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.rule p { font-size: .95rem; color: var(--ink-3); }

/* ---------- two column ---------- */
.split { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: start; } }
.split-media img { border-radius: var(--r); width: 100%; }

/* ---------- contact ---------- */
.contact-list { display: grid; gap: 1.5rem; }
.contact-item { border-top: 1px solid var(--line); padding-top: 1rem; }
.contact-item h3 { font-size: 1rem; margin-bottom: .3rem; }
.contact-item a { font-family: var(--f-display); font-size: 1.35rem; font-weight: 700; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-item p { color: var(--ink-3); font-size: .95rem; }

.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .88rem; font-weight: 700; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: .7rem .8rem;
  border: 1px solid var(--line-strong); border-radius: var(--r);
  background: var(--paper-2); color: var(--ink); width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: .87rem; color: var(--ink-3); }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 620px) { .form-row { grid-template-columns: 1fr 1fr; } }

.map-frame { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; line-height: 0; }
.map-frame iframe { width: 100%; height: 380px; border: 0; }

/* ---------- callout ---------- */
.callout {
  background: var(--ink); color: #fff; border-radius: var(--r);
  padding: 2rem 1.75rem; display: grid; gap: 1.25rem;
}
.callout h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
.callout p { color: #c6d8d5; max-width: 34rem; }
.callout-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (min-width: 860px) {
  .callout { grid-template-columns: 1.2fr auto; align-items: center; padding: 2.75rem 2.5rem; }
}

/* ---------- footer ---------- */
.foot { background: var(--ink); color: #cfdedb; padding: 3rem 0 1.5rem; font-size: .95rem; }
.foot a { text-decoration: none; }
.foot a:hover { text-decoration: underline; }
.foot-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.foot h3 { font-size: .95rem; color: #fff; margin-bottom: .8rem; }
.foot ul li { margin-bottom: .45rem; }
.foot-brand img { width: 54px; margin-bottom: .9rem; }
.foot-brand p { max-width: 26rem; color: #a8c0bd; }
.foot-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .85rem; color: #93aeab;
}

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.callbar a {
  text-align: center; padding: .9rem .5rem; text-decoration: none;
  font-weight: 700; font-size: .95rem;
}
.callbar a:first-child { background: var(--ink); color: #fff; }
.callbar a:last-child { background: var(--lime); color: #10300a; }
@media (min-width: 901px) { .callbar { display: none; } }
@media (max-width: 900px) { body { padding-bottom: 3.4rem; } }

/* ---------- small utilities ---------- */
.brand-name, .brand-sub { display: block; }
.section-title { font-size: clamp(1.85rem, 4.2vw, 2.9rem); margin-bottom: 1rem; }
.muted { color: var(--ink-3); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.media-stack { display: grid; gap: .75rem; grid-template-columns: 1fr 1fr; }
.media-stack img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r); }
.media-stack img:first-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.prose { max-width: 38rem; }
.prose h3 { font-size: 1.25rem; margin: 1.75rem 0 .5rem; }
.prose ul.bullets li { padding-left: 1.15rem; position: relative; margin-bottom: .45rem; }
.prose ul.bullets li::before {
  content: ""; position: absolute; left: 0; top: .68em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
}

/* ---------- legal clauses (terms page) ---------- */
.legal { counter-reset: clause; max-width: 44rem; }
.legal > li {
  counter-increment: clause;
  display: grid; grid-template-columns: 2.25rem 1fr; gap: 0 1rem;
  padding: 1.5rem 0; border-top: 1px solid var(--line);
}
.legal > li::before {
  content: counter(clause);
  font-family: var(--f-display); font-weight: 700; font-size: 1.05rem;
  color: var(--line-strong); padding-top: .2rem;
}
.legal h2 { grid-column: 2; font-size: 1.28rem; margin-bottom: .4rem; letter-spacing: -.01em; }
.legal p { grid-column: 2; color: var(--ink-3); font-size: .98rem; }
@media (max-width: 560px) {
  .legal > li { grid-template-columns: 1.75rem 1fr; gap: 0 .75rem; }
}
