:root {
  --bg: #f5f1ea;
  --surface: #fffdfa;
  --surface-alt: #f0ece4;
  --ink: #1f2430;
  --muted: #5d6675;
  --line: rgba(22, 58, 95, 0.13);
  --brand: #1e4b7a;
  --brand-deep: #163a5f;
  --brand-soft: #5a9bd4;
  --accent: #cab188;
  --shadow: 0 24px 60px rgba(22, 58, 95, 0.12);
  --shadow-sm: 0 8px 24px rgba(22, 58, 95, 0.09);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --font-heading: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(90, 155, 212, 0.07), transparent 32%),
    linear-gradient(180deg, #fbf8f2 0%, #f3efe7 42%, #f7f3ed 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Topbar ─────────────────────────────────── */
.topbar {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.topbar__inner,
.nav__inner,
.footer__inner,
.section,
.hero,
.page-hero,
.contact-strip,
.legal-page,
.gallery-band,
.cards-grid,
.home-feature,
.practice-layout,
.timeline,
.cta-band,
.info-grid {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

.topbar__links,
.topbar__meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.topbar__links a {
  color: white;
  opacity: 0.9;
  transition: opacity 0.15s;
}

.topbar__links a:hover {
  opacity: 1;
}

/* ── Navigation ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(251, 248, 242, 0.9);
  border-bottom: 1px solid rgba(30, 75, 122, 0.07);
  box-shadow: 0 1px 0 rgba(30, 75, 122, 0.04);
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
}

.brand__logo {
  height: 64px;
  width: auto;
  display: block;
}

.brand__subline {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.nav__toggle {
  display: none;
  border: 0;
  background: var(--surface);
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  cursor: pointer;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.nav__menu > a:not(.btn),
.nav__dropdown > button {
  color: var(--brand-deep);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}

.nav__menu > a:not(.btn):hover,
.nav__dropdown > button:hover {
  background: rgba(30, 75, 122, 0.07);
  color: var(--brand);
}

.nav__menu > a.is-current,
.nav__dropdown > button.is-current {
  color: var(--brand);
  background: rgba(30, 75, 122, 0.1);
  font-weight: 700;
}

.nav__menu > .btn--brand {
  color: white;
  margin-left: 0.4rem;
}

.nav__dropdown > button:hover,
.dropdown-panel a:hover {
  color: var(--brand);
}

.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  transition: background 0.15s;
}

.nav__dropdown > button:hover {
  background: rgba(30, 75, 122, 0.07);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.3rem);
  right: 0;
  min-width: 290px;
  display: grid;
  gap: 0.15rem;
  padding: 0.6rem;
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(22, 58, 95, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

/* invisible bridge fills the gap so hover isn't lost when moving mouse down */
.dropdown-panel::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  height: 1rem;
}

.nav__dropdown:hover .dropdown-panel,
.nav__dropdown:focus-within .dropdown-panel,
.nav__dropdown.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-panel a {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.93rem;
  transition: background 0.12s;
}

.dropdown-panel a:hover {
  background: rgba(30, 75, 122, 0.07);
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--brand {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  box-shadow: 0 12px 30px rgba(22, 58, 95, 0.26);
}

.btn--brand:hover {
  box-shadow: 0 16px 36px rgba(22, 58, 95, 0.34);
}

.btn--ghost {
  border-color: rgba(30, 75, 122, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deep);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(30, 75, 122, 0.32);
}

/* ── Hero ────────────────────────────────────── */
.hero-wrap {
  position: relative;
  overflow: clip;
}

.hero-wrap::before,
.hero-wrap::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.hero-wrap::before {
  top: -6rem;
  right: -8rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(90, 155, 212, 0.16), transparent 70%);
}

.hero-wrap::after {
  left: -12rem;
  bottom: 1rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(202, 177, 136, 0.18), transparent 70%);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  padding: 5rem 0 4.2rem;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem;
  background: rgba(30, 75, 122, 0.09);
  color: var(--brand);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  line-height: 1;
  color: var(--brand-deep);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  margin-top: 1rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.65rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 44rem;
  line-height: 1.7;
}

.profile-intro {
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__points,
.practice-card ul,
.legal-list,
.contact-list,
.stats-list {
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.hero__points li,
.practice-card li,
.legal-list li,
.contact-list li,
.stats-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-top: 0.65rem;
  color: var(--muted);
}

.hero__points li::before,
.practice-card li::before,
.legal-list li::before,
.contact-list li::before,
.stats-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand-soft);
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero__media {
  position: relative;
  z-index: 1;
}

.hero__card {
  background: rgba(255, 253, 250, 0.9);
  border-radius: var(--radius);
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(22, 58, 95, 0.18);
}

.hero__image {
  border-radius: calc(var(--radius) - 6px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.hero__badge {
  position: absolute;
  right: -1.2rem;
  bottom: 1.6rem;
  background: var(--surface);
  border-radius: 20px;
  padding: 1rem 1.15rem;
  width: min(17rem, 76%);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero__badge strong {
  display: block;
  color: var(--brand-deep);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.hero__badge span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Sections ────────────────────────────────── */
.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding-top: 2.4rem;
}

.section__intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.section__intro p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

/* ── Practice Cards ──────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.practice-card,
.info-card,
.timeline-card,
.quote-card,
.contact-card,
.image-card,
.legal-card,
.callout-card {
  background: rgba(255, 253, 250, 0.92);
  border-radius: var(--radius-sm);
  padding: 1.6rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.practice-card:hover,
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(22, 58, 95, 0.14);
}

.practice-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.practice-card__icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(30, 75, 122, 0.1), rgba(90, 155, 212, 0.08));
  margin-bottom: 1.1rem;
}

.practice-card p,
.info-card p,
.timeline-card p,
.contact-card p,
.legal-card p,
.callout-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.practice-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.practice-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ── Home Feature ────────────────────────────── */
.home-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.home-feature__image {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.home-feature__image img {
  border-radius: calc(var(--radius) - 6px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
}

/* ── Timeline ────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.timeline-card__year {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(30, 75, 122, 0.1), rgba(90, 155, 212, 0.08));
  color: var(--brand);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

/* ── Gallery ─────────────────────────────────── */
.gallery-band {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 1rem;
}

.image-card {
  padding: 0.7rem;
  overflow: hidden;
}

.image-card img {
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  transition: transform 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.03);
}

/* ── CTA Band ────────────────────────────────── */
.cta-band {
  padding: 4rem 0 5rem;
}

.callout-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(22, 58, 95, 0.98) 0%, rgba(30, 75, 122, 0.94) 100%);
  color: white;
  padding: 2.4rem 2.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 64px rgba(22, 58, 95, 0.28);
  position: relative;
  overflow: hidden;
}

.callout-card::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(90, 155, 212, 0.12);
  pointer-events: none;
}

.callout-card h2,
.callout-card p {
  color: white;
}

.callout-card .kicker {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.callout-card .btn--ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.callout-card .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Footer ──────────────────────────────────── */
.footer {
  margin-top: auto;
  background: var(--brand-deep);
  color: rgba(246, 249, 255, 0.88);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.8rem;
}

.footer h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s;
}

.footer a:hover {
  color: white;
}

.footer__legal {
  width: min(calc(100% - 2rem), var(--max));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.office-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}

.office-hours__label {
  min-width: 4.8rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.office-hours--footer {
  color: inherit;
}

.office-hours--footer .office-hours__label {
  color: white;
}

/* ── Page Hero ───────────────────────────────── */
.page-hero-wrap {
  overflow: clip;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 3.8rem 0 3rem;
}

.page-hero__eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.74rem;
  display: block;
  margin-bottom: 0.7rem;
}

.page-hero__visual {
  background: rgba(255, 253, 250, 0.92);
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.page-hero__visual img {
  border-radius: calc(var(--radius) - 6px);
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

/* ── Practice Layout ─────────────────────────── */
.practice-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  padding: 0 0 4.5rem;
}

.practice-layout__content,
.practice-layout__side {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.content-block {
  background: rgba(255, 253, 250, 0.9);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 0.9rem;
}

.content-block p + p {
  margin-top: 1rem;
}

.note-cta {
  border-left: 3px solid var(--brand-soft);
  padding-left: 1rem;
  color: var(--brand-deep);
  font-weight: 600;
}

.side-card__label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ── Contact ─────────────────────────────────── */
.contact-strip {
  padding: 0 0 4.5rem;
}

.contact-strip__panel {
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.contact-strip__grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

/* ── Legal pages ─────────────────────────────── */
.legal-page {
  padding: 0 0 4.5rem;
}

.legal-card h2 {
  font-size: 1.9rem;
  margin-top: 2rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1.4rem;
  margin-top: 1.8rem;
}

.pdf-frame {
  width: 100%;
  min-height: 70vh;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

/* ── Cookie Banner ───────────────────────────── */
.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: min(28rem, calc(100% - 2rem));
  background: rgba(20, 46, 76, 0.97);
  color: white;
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(22, 58, 95, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.05rem;
}

.cookie-banner p {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-banner .btn--ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.cookie-banner .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── Reveal animation ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1080px) {
  .hero,
  .home-feature,
  .page-hero,
  .practice-layout,
  .footer__inner,
  .contact-strip__grid,
  .info-grid,
  .gallery-band {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__badge {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .hero {
    gap: 2rem;
  }
}

@media (max-width: 820px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.9rem;
    border-radius: 22px;
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__dropdown {
    display: grid;
    gap: 0.4rem;
  }

  .nav__dropdown > button {
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }

  .dropdown-panel {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    box-shadow: none;
    border-radius: 14px;
    display: none;
    background: rgba(30, 75, 122, 0.05);
  }

  .nav__dropdown.is-open .dropdown-panel {
    display: grid;
  }

  .cards-grid,
  .timeline,
  .stats-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }
}

@media (max-width: 580px) {
  .topbar__inner,
  .nav__inner,
  .hero,
  .section,
  .page-hero,
  .practice-layout,
  .legal-page,
  .contact-strip,
  .cta-band,
  .footer {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .hero,
  .page-hero {
    padding-top: 2.8rem;
  }

  .hero__actions,
  .cookie-banner__actions,
  .section__intro {
    flex-direction: column;
    align-items: stretch;
  }

  .callout-card {
    grid-template-columns: 1fr;
    padding: 1.8rem;
  }

  .gallery-band {
    grid-template-columns: 1fr;
  }

  .footer__legal {
    font-size: 0.82rem;
  }
}
