/* ============================================================
   Sloan Comfort Care Home — Hero v2
   Reference: ayyahospitalitygroup.com (editorial-cinematic)
   Palette lock: 373737 / 20A05B / D1B490 / 7A9CC6 / F4C7B4
   ============================================================ */

:root {
  --graphite: #373737;
  --graphite-soft: rgba(55, 55, 55, 0.65);
  --graphite-faint: rgba(55, 55, 55, 0.18);
  --shamrock: #20a05b;
  --shamrock-bright: #2bbf6e;
  --shamrock-deep: #198a4d;
  --tan: #d1b490;
  --wisteria: #7a9cc6;
  --peach: #f4c7b4;
  --paper: #f7f1e8;
  --paper-warm: #f1e8d7;
  --ink: #2a2a2a;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --gutter: clamp(20px, 4vw, 56px);
  --line: 1.5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 16px;
  line-height: var(--line);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  display: block;
}

/* ---------- Navigation (frosted glass bar over hero) ---------- */

.nav {
  position: fixed;
  top: 16px;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 12px 16px 12px 20px;
  color: var(--paper);
  background: rgba(55, 55, 55, 0.42);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(247, 241, 232, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 40px -16px rgba(0, 0, 0, 0.35);
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav[data-theme="light"] {
  background: rgba(247, 241, 232, 0.78);
  color: var(--graphite);
  border-color: rgba(55, 55, 55, 0.08);
  box-shadow: 0 12px 40px -20px rgba(55, 55, 55, 0.18);
}

.nav[data-theme="light"] .nav__mark {
  filter: drop-shadow(0 1px 4px rgba(55, 55, 55, 0.12));
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  justify-self: start;
  padding: 4px;
}

.nav__mark {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.nav__links {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  justify-self: center;
}

.nav__links a {
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.88;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav__links a:hover {
  opacity: 1;
  color: var(--shamrock);
}

.nav__contact {
  justify-self: end;
  text-decoration: none;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--shamrock);
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav__contact:hover {
  background: var(--shamrock-deep);
  transform: translateY(-1px);
}

.nav__contact-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 700;
}

.nav__contact-number {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ---------- Hero (full-bleed editorial) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(140px, 22vh, 200px) var(--gutter) clamp(56px, 9vh, 96px);
  color: var(--paper);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.72) saturate(0.95) contrast(1.02);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.35) 0%, rgba(20, 20, 20, 0.05) 28%, rgba(20, 20, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(20, 20, 20, 0.78) 0%, rgba(20, 20, 20, 0.42) 45%, rgba(20, 20, 20, 0.08) 80%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* Overline (Ayya's spaced uppercase rhythm, palette-warm) */

.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shamrock);
  margin-bottom: 28px;
}

.overline__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shamrock);
  box-shadow: 0 0 0 5px rgba(32, 160, 91, 0.22);
}

.overline__sep {
  opacity: 0.45;
  color: rgba(247, 241, 232, 0.7);
}

/* Display headline */

.hero__headline {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.024em;
  margin: 0 0 32px;
  color: var(--paper);
  text-wrap: balance;
}

.hero__headline em {
  font-family: "Yellowtail", "Brush Script MT", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.16em;
  letter-spacing: 0;
  color: var(--shamrock);
  display: inline-block;
  transform: translateY(0.06em);
}

.hero__lede {
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.5;
  max-width: 560px;
  color: rgba(247, 241, 232, 0.88);
  margin: 0 0 36px;
}

.hero__actions {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
  padding: 16px 26px;
  border-radius: 999px;
}

.link-cta--solid {
  background: var(--shamrock);
  color: var(--paper);
}

.link-cta--solid:hover {
  background: var(--shamrock-deep);
  gap: 16px;
}

.link-cta--ghost {
  background: transparent;
  color: var(--paper);
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(247, 241, 232, 0.45);
  border-radius: 0;
}

.link-cta--ghost:hover {
  border-bottom-color: var(--shamrock);
  color: var(--shamrock);
}

.link-cta__arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.link-cta--solid:hover .link-cta__arrow {
  transform: translateX(4px);
}

/* Hero brand mark (stylized logo on the right) */

.hero__brand {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(64px, 10vh, 110px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  pointer-events: none;
}

.hero__brand-mark {
  width: clamp(260px, 28vw, 420px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45))
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  opacity: 0.98;
}

.hero__brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--paper);
  opacity: 0.78;
  padding-right: 6px;
}

.hero__brand-tag-bar {
  display: inline-block;
  width: 42px;
  height: 1.5px;
  background: var(--shamrock);
}

/* ============================================================
   Shared section components
   ============================================================ */

.section-overline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shamrock);
  margin-bottom: 24px;
}

.section-overline--center {
  justify-content: center;
}

.section-overline__num {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: var(--graphite);
}

.section-overline__line {
  width: 36px;
  height: 1px;
  background: var(--shamrock);
  display: inline-block;
}

.section-headline {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--graphite);
  margin: 0 0 24px;
  text-wrap: balance;
}

.section-headline--center {
  text-align: center;
}

.section-lede {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.5;
  color: var(--graphite-soft);
  max-width: 580px;
  margin: 0 0 32px;
}

.section-lede--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 940px;
  text-wrap: pretty;
}

.prose p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite-soft);
  margin: 0 0 18px;
  max-width: 520px;
}

.prose p:last-child {
  margin-bottom: 28px;
}

/* Text-only CTA used in body sections (lighter than hero CTAs) */

.link-cta--text {
  background: transparent;
  color: var(--shamrock);
  padding: 0;
  border-radius: 0;
  border-bottom: 1.5px solid var(--shamrock);
  padding-bottom: 6px;
  gap: 10px;
}

.link-cta--text:hover {
  color: var(--graphite);
  border-bottom-color: var(--graphite);
  gap: 14px;
}

.link-cta--ghost-dark {
  background: transparent;
  color: var(--paper);
  padding: 0;
  border-radius: 0;
  border-bottom: 1.5px solid rgba(247, 241, 232, 0.45);
  padding-bottom: 6px;
}

.link-cta--ghost-dark:hover {
  border-bottom-color: var(--shamrock);
  color: var(--shamrock);
  gap: 14px;
}

/* ============================================================
   Section 02 — Welcome
   ============================================================ */

.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(96px, 12vh, 160px) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  align-items: stretch;
}

.welcome__text {
  max-width: 540px;
  align-self: center;
}

.welcome__media {
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(55, 55, 55, 0.35);
  min-height: 100%;
}

.welcome__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Section 03 — Pillars (model)
   ============================================================ */

.pillars {
  padding: clamp(96px, 12vh, 160px) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
}

.pillars__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: 22px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -28px rgba(55, 55, 55, 0.32);
}

.pillar:hover .pillar__numeral {
  transform: translateX(-2px) translateY(-2px);
}

.pillar--tan {
  background: var(--tan);
  color: var(--graphite);
}

.pillar--wisteria {
  background: var(--wisteria);
  color: var(--graphite);
}

.pillar--graphite {
  background: var(--graphite);
  color: var(--paper);
}

.pillar__numeral {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(110px, 11vw, 180px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  margin: -10px 0 0 -8px;
  color: var(--graphite);
  opacity: 1;
  transition: transform 0.5s var(--ease);
  user-select: none;
  transform-origin: top left;
}

.pillar--graphite .pillar__numeral {
  color: var(--shamrock);
}

.pillar__foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 92%;
}

.pillar__kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--graphite);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pillar__kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--graphite);
}

.pillar--graphite .pillar__kicker {
  color: var(--shamrock);
}

.pillar--graphite .pillar__kicker::before {
  background: var(--shamrock);
}

.pillar__headline {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.14;
  letter-spacing: -0.014em;
  margin: 4px 0 6px;
  text-wrap: balance;
}

.pillar__body {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.78;
}

/* ============================================================
   Section 04 — Story / Timeline
   ============================================================ */

.story {
  background: var(--paper-warm);
  padding: clamp(96px, 12vh, 160px) var(--gutter);
}

.story__head {
  max-width: 1440px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: timeline;
}

.milestone {
  position: relative;
  padding: 36px 24px 32px 0;
  border-top: 1px solid rgba(55, 55, 55, 0.22);
}

.milestone__year {
  display: inline-block;
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--shamrock);
  margin-bottom: 18px;
}

.milestone--accent {
  border-top-color: var(--shamrock);
  border-top-width: 2px;
}

.milestone__title {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--graphite);
  margin: 0 0 14px;
}

.milestone__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--graphite-soft);
  margin: 0;
  max-width: 320px;
}

/* ============================================================
   Section 05 — Bands (Volunteer + Give)
   ============================================================ */

.bands {
  padding: clamp(96px, 12vh, 160px) var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
}

.bands__head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.bands__headline {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--graphite);
  margin: 0 0 24px;
  text-wrap: balance;
}

.bands__headline em {
  font-family: "Yellowtail", "Brush Script MT", cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--shamrock);
  letter-spacing: 0;
  font-size: 1.08em;
  display: inline-block;
  transform: translateY(0.05em);
}

.bands__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.band {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.band--volunteer {
  background: var(--graphite);
  color: var(--paper);
}

.band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.95);
}

.band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.1) 0%, rgba(20, 20, 20, 0.78) 100%);
}

.band__content {
  position: relative;
  z-index: 2;
  padding: 36px;
  max-width: 460px;
}

.band__content--dark {
  max-width: none;
}

.band--give {
  background: var(--graphite);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
}

.band__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shamrock);
  margin-bottom: 18px;
}

.band__label--light {
  color: var(--shamrock);
}

.band__headline {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--graphite);
  margin: 0 0 16px;
  text-wrap: balance;
}

.band__headline--light {
  color: var(--paper);
}

.band__body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--graphite-soft);
  margin: 0 0 26px;
}

.band__body--light {
  color: rgba(247, 241, 232, 0.78);
}

.band--volunteer .band__headline {
  color: var(--paper);
}

.band--volunteer .band__body {
  color: rgba(247, 241, 232, 0.82);
}

.band__stat {
  background: var(--shamrock);
  color: var(--paper);
  padding: 28px 36px 32px;
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.band__stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

.band__stat-value {
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 4px 0 6px;
}

.band__stat-foot {
  font-size: 13px;
  opacity: 0.86;
  line-height: 1.5;
}

/* ============================================================
   Section 06 — Visit
   ============================================================ */

.visit {
  background: var(--graphite);
  color: var(--paper);
  padding: clamp(96px, 12vh, 160px) var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}

.visit__inner {
  max-width: 560px;
  justify-self: end;
  align-self: center;
  width: 100%;
}

.visit .section-headline {
  color: var(--paper);
}

.visit .section-overline__num {
  color: var(--paper);
}

.visit .section-lede {
  color: rgba(247, 241, 232, 0.78);
}

.visit__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin: 12px 0 0;
}

.visit__row dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--shamrock);
  margin-bottom: 8px;
}

.visit__row dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper);
}

.visit__row dd a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 241, 232, 0.32);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.visit__row dd a:hover {
  border-bottom-color: var(--shamrock);
  color: var(--shamrock);
}

.visit__media {
  margin: 0;
  max-width: 560px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
}

.visit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  display: block;
}

/* ============================================================
   Footer
   ============================================================ */

.foot {
  background: var(--paper-warm);
  color: var(--graphite);
  padding: clamp(64px, 8vh, 96px) var(--gutter) 32px;
}

.foot__brand {
  max-width: 1440px;
  margin: 0 auto clamp(48px, 6vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.foot__mark {
  height: 64px;
  width: auto;
}

.foot__tag {
  font-size: 15px;
  line-height: 1.55;
  color: var(--graphite-soft);
  margin: 0;
  max-width: 720px;
  text-wrap: pretty;
}

.foot__nav {
  max-width: 1440px;
  margin: 0 auto clamp(48px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(55, 55, 55, 0.16);
  padding-top: 40px;
}

.foot__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot__col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--shamrock);
  margin: 0 0 8px;
}

.foot__col a {
  text-decoration: none;
  color: var(--graphite);
  font-size: 15px;
  transition: color 0.2s var(--ease);
}

.foot__col a:hover {
  color: var(--shamrock);
}

.foot__base {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(55, 55, 55, 0.16);
  font-size: 12px;
  color: var(--graphite-soft);
  letter-spacing: 0.02em;
}

.foot__base-right {
  display: inline-flex;
  gap: 24px;
}

.foot__base-right a {
  text-decoration: none;
  color: var(--graphite-soft);
  transition: color 0.2s var(--ease);
}

.foot__base-right a:hover {
  color: var(--shamrock);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
    padding: 16px var(--gutter);
  }

  .nav__links {
    display: none;
  }

  .nav__contact {
    justify-self: end;
  }

  .nav__contact-label {
    display: none;
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero__brand {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    align-items: flex-start;
  }

  .hero__brand-mark {
    width: clamp(220px, 60vw, 320px);
  }

  .hero__inner {
    max-width: 100%;
  }

  .welcome,
  .visit {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .welcome__media,
  .visit__media {
    max-width: 100%;
    aspect-ratio: 5 / 4;
  }

  .visit__inner {
    justify-self: start;
  }

  .pillars__grid,
  .timeline,
  .bands__grid,
  .foot__nav {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 8px;
  }

  .visit__info {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .foot__brand {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .foot__base {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 40px;
  }

  .hero__headline {
    font-size: clamp(44px, 11vw, 64px);
  }

  .hero__lede {
    font-size: 16px;
  }

  .nav__mark {
    height: 40px;
    max-width: 160px;
  }

  .nav__contact-number {
    font-size: 14px;
  }

  .link-cta {
    padding: 14px 20px;
  }

  .hero__actions {
    gap: 16px;
  }
}
