/* ==========================================================================
   Scotty's Lawn & Garden Surgery & Pool Care — concept preview stylesheet
   Plain CSS, system fonts only (no remote assets of any kind).
   ========================================================================== */

:root {
  /* Pool blues / turquoise: dominant system */
  --ink-900: #0a1d26;
  --ink-700: #16323d;
  --ink-500: #3d5a66;
  --pool-900: #063950;
  --pool-800: #075275;
  --pool-700: #0a6f9b;
  --pool-600: #1189bb;
  --pool-500: #23a3d4;
  --turq-400: #3fc6d8;
  --turq-200: #a9e6ee;
  --turq-100: #dcf4f8;

  /* Eucalyptus green: secondary service colour */
  --euc-700: #2f6b45;
  --euc-600: #3d8556;
  --euc-400: #6fae7f;
  --euc-100: #e2f0e5;

  /* Warm cream surfaces */
  --cream-050: #fdfaf4;
  --cream-100: #f7f1e6;
  --cream-200: #ece3d3;

  /* Restrained red accent, taken from the original cartoon wordmark */
  --red-600: #cf2b25;
  --red-500: #e2372f;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 6px rgba(6, 57, 80, .08);
  --shadow-md: 0 14px 30px -14px rgba(6, 57, 80, .28);
  --shadow-lg: 0 30px 60px -28px rgba(6, 57, 80, .45);

  --shell: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
  --layer-hero: 2;
  --layer-header: 50;
  --layer-skip: 60;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ------------------------------ base ------------------------------------ */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream-050);
  color: var(--ink-700);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  color: var(--pool-900);
  line-height: 1.14;
  letter-spacing: -.015em;
  font-weight: 750;
}

h1 { font-size: clamp(2.1rem, 3.6vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 2.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.4vw, 1.4rem); }
h4 { font-size: 1rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--pool-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--pool-600); }

:focus-visible {
  outline: 3px solid var(--pool-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: var(--layer-skip);
  padding: 10px 18px;
  background: var(--pool-900);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.eyebrow {
  margin: 0 0 .75rem;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--turq-200);
}
.eyebrow--dark { color: var(--pool-700); }

.microcopy {
  margin-top: 1.25rem;
  font-size: .88rem;
  color: var(--ink-500);
}

/* ------------------------------ buttons --------------------------------- */

.btn {
  display: inline-flex;
  align-items: baseline;
  gap: .55em;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}

.btn--call {
  background: linear-gradient(135deg, var(--pool-700) 0%, var(--pool-500) 55%, var(--turq-400) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--call:hover { color: #fff; transform: translateY(-2px); }
.btn--call .btn__number { font-variant-numeric: tabular-nums; opacity: .92; font-weight: 650; }

.btn--lawn {
  background: linear-gradient(135deg, var(--euc-700) 0%, var(--euc-600) 60%, var(--euc-400) 100%);
}

.btn--ghost {
  background: rgba(255, 255, 255, .7);
  border-color: rgba(10, 111, 155, .35);
  color: var(--pool-800);
}
.btn--ghost:hover { border-color: var(--pool-600); background: #fff; }

.btn--onDark {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}
.btn--onDark:hover { background: rgba(255, 255, 255, .16); border-color: #fff; color: #fff; }

.btn--text {
  padding: 14px 6px;
  color: var(--pool-800);
  background: none;
  text-decoration: underline;
}

.btn--compact { padding: 10px 18px; font-size: .94rem; }
.btn--compact .btn__label { display: none; }
.btn--inline { margin-top: 1.6rem; }
.btn--lg { padding: 18px 30px; font-size: 1.08rem; }

/* ------------------------------ top bar --------------------------------- */

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--layer-header);
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 34, 47, .36), rgba(3, 34, 47, 0));
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  min-height: 84px;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
}

.brandmark__script {
  font-family: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--red-600);
  line-height: 1;
  letter-spacing: .01em;
}
.brandmark__script--footer { font-size: 2rem; color: var(--red-500); }

.brandmark__lines {
  display: flex;
  flex-direction: column;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .085em;
  text-transform: uppercase;
  line-height: 1.35;
}
.brandmark__line1,
.brandmark__line2 { color: rgba(255, 255, 255, .92); }

.topnav { display: flex; gap: clamp(12px, 1.8vw, 28px); }
.topnav a {
  font-size: .94rem;
  font-weight: 650;
  color: rgba(255, 255, 255, .94);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  text-shadow: 0 1px 16px rgba(3, 34, 47, .55);
}
.topnav a:hover { color: #fff; border-bottom-color: var(--turq-200); }

.topbar .btn--compact {
  color: #fff;
  background: rgba(3, 34, 47, .28);
  border-color: rgba(255, 255, 255, .48);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.topbar .btn--compact:hover {
  background: rgba(3, 34, 47, .52);
  border-color: #fff;
}

/* ------------------------------ hero ------------------------------------ */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  min-height: max(720px, 100svh);
  padding: clamp(132px, 15vh, 168px) 0 136px;
  background-color: #e9f5f3;
  background-image: url("assets/official-site/official-hero-cartoon-grass-v2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(3, 34, 47, .88) 0%,
      rgba(4, 45, 61, .78) 24%,
      rgba(4, 45, 61, .55) 42%,
      rgba(4, 45, 61, .16) 62%,
      rgba(4, 45, 61, .02) 78%),
    linear-gradient(180deg,
      rgba(3, 34, 47, .3) 0%,
      rgba(3, 34, 47, 0) 38%,
      rgba(3, 34, 47, .08) 68%,
      rgba(3, 34, 47, .72) 100%);
}

.hero__grid {
  position: relative;
  z-index: var(--layer-hero);
  width: 100%;
}

.hero__copy { width: min(560px, 46%); }

.hero__copy .lede {
  max-width: 29em;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.65;
  text-shadow: 0 1px 20px rgba(3, 34, 47, .52);
}

.hero .eyebrow {
  margin-bottom: 12px;
  color: var(--turq-100);
  text-shadow: 0 1px 14px rgba(3, 34, 47, .58);
}
.hero h1 {
  max-width: 14ch;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(3.25rem, 4.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(3, 34, 47, .48);
}

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

.hero .btn--call {
  background: var(--red-600);
  box-shadow: 0 14px 34px -16px rgba(3, 34, 47, .72);
}
.hero .btn--ghost {
  color: #fff;
  background: rgba(3, 34, 47, .22);
  border-color: rgba(255, 255, 255, .52);
  backdrop-filter: blur(8px);
}
.hero .btn--ghost:hover {
  color: #fff;
  background: rgba(3, 34, 47, .46);
  border-color: #fff;
}

.hero__rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--layer-hero);
  background: rgba(3, 34, 47, .66);
  border-top: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(8px);
}

.factstrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding-block: 0;
}
.factstrip__item {
  min-width: 0;
  padding: 20px 28px 22px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}
.factstrip__item:first-child {
  padding-left: 0;
  border-left: 0;
}
.factstrip__item:last-child { padding-right: 0; }
.factstrip dt {
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--turq-200);
  margin-bottom: 4px;
}
.factstrip dd {
  margin: 0;
  font-size: .92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .9);
}
.factstrip a { color: #fff; font-weight: 700; }
.factstrip a:hover { color: var(--turq-200); }

/* image frames */

.shot {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.shot img { width: 100%; }
.shot figcaption {
  padding: 14px 18px 16px;
  font-size: .86rem;
  line-height: 1.45;
  color: var(--ink-500);
}
.shot figcaption span { display: block; color: var(--pool-700); font-weight: 650; }

/* ------------------------------ sections -------------------------------- */

.section { padding: clamp(56px, 7vw, 104px) 0; }

.sectionhead { max-width: 62ch; margin-bottom: clamp(28px, 3.5vw, 48px); }
.sectionhead--tight { margin-bottom: 0; }
.sectionhead--onDark h2 { color: #fff; }
.sectionhead--onDark .sectionhead__lede { color: var(--turq-100); }
.sectionhead__lede { font-size: 1.04rem; color: var(--ink-500); }

/* ---- service switch ---- */

.section--services { background: var(--cream-050); }

.switch {
  border: 1px solid rgba(10, 111, 155, .18);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.switch__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-100);
  border-bottom: 1px solid var(--cream-200);
}

.switch__tab {
  appearance: none;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  padding: 20px 26px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background-color .18s ease, border-color .18s ease;
}
.switch__tab:hover { background: rgba(255, 255, 255, .7); }
.switch__tab.is-active { background: #fff; border-bottom-color: var(--pool-600); }
.switch__tab[data-tab="lawn"].is-active { border-bottom-color: var(--euc-600); }

.switch__tabTitle {
  display: block;
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--pool-900);
}
.switch__tabMeta {
  display: block;
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .04em;
  color: var(--ink-500);
}

.switch__panel { padding: clamp(24px, 3.5vw, 44px); }

.switch__body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}
.switch__body--text { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }

.ticklist { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.ticklist li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-top: 1px solid var(--cream-200);
  font-weight: 600;
  color: var(--ink-700);
}
.ticklist li:last-child { border-bottom: 1px solid var(--cream-200); }
.ticklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--pool-600);
  border-bottom: 3px solid var(--pool-600);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.ticklist--lawn li::before { border-color: var(--euc-600); }

.shot--panel { box-shadow: var(--shadow-md); }
.shot--panel img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 45%;
}

.notecard {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--euc-100) 0%, var(--cream-100) 100%);
  border: 1px solid rgba(47, 107, 69, .18);
}
.notecard h4 { color: var(--euc-700); margin-bottom: .4em; }
.notecard p { font-size: .92rem; color: var(--ink-500); }

/* ---- recent work ---- */

.section--work {
  background:
    radial-gradient(900px 520px at 82% 6%, rgba(63, 198, 216, .26) 0%, rgba(63, 198, 216, 0) 60%),
    linear-gradient(165deg, var(--pool-900) 0%, var(--pool-800) 58%, var(--pool-700) 100%);
  color: var(--turq-100);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.quote {
  margin: 0;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--turq-400);
  background: rgba(255, 255, 255, .08);
}
.quote p { color: #fff; font-size: 1rem; }
.quote cite {
  display: block;
  margin-top: .7rem;
  font-size: .8rem;
  font-style: normal;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--turq-200);
}

.rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.shot--rail {
  position: relative;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 22px 44px -26px rgba(0, 0, 0, .6);
}
.shot--rail img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}
.shot--rail:hover img { transform: scale(1.03); }
.shot--rail figcaption { color: var(--turq-200); }
.shot--rail figcaption strong {
  display: block;
  color: #fff;
  font-size: .98rem;
  margin-bottom: 2px;
}
.shot--wide { grid-column: span 2; }
.shot--wide img { aspect-ratio: 16 / 9; }

.section--work .microcopy { color: rgba(220, 244, 248, .8); }

/* ---- help cards ---- */

.section--help { background: var(--cream-100); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  padding: 26px 26px 28px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(10, 111, 155, .14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card::before {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--pool-700), var(--turq-400));
}
.card--lawn::before { background: linear-gradient(90deg, var(--euc-700), var(--euc-400)); }
.card--extra::before { background: linear-gradient(90deg, var(--red-600), #f0a09b); }
.card p { color: var(--ink-500); font-size: .96rem; }

/* ---- legacy proof ---- */

.section--legacy { background: var(--cream-050); }

.legacy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.legacy__copy { max-width: 52ch; }

.legacy__pair {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding: 26px clamp(20px, 2.4vw, 32px);
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.tinyshot { margin: 0; text-align: center; }
.tinyshot img {
  width: 140px;
  height: 105px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-200);
}
.tinyshot figcaption {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--ink-500);
  max-width: 140px;
}
.tinyshot__tag {
  display: block;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .68rem;
  color: var(--euc-700);
}
.tinyshot__tag--after { color: var(--pool-700); }

.legacy__arrow {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--euc-400), var(--pool-500));
  position: relative;
}
.legacy__arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--pool-500);
  border-right: 2px solid var(--pool-500);
  transform: rotate(45deg);
}

/* ---- service area ---- */

.section--area {
  background:
    radial-gradient(760px 460px at 76% 20%, rgba(63, 198, 216, .22) 0%, rgba(63, 198, 216, 0) 62%),
    linear-gradient(150deg, var(--pool-800) 0%, var(--pool-900) 100%);
  color: var(--turq-100);
}
.section--area h2 { color: #fff; max-width: 24ch; }
.section--area .sectionhead__lede { color: var(--turq-100); }

.area__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}
.area__copy .btn { margin-top: 1.6rem; }

.areamap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
.areamap__halo {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(169, 230, 238, .5);
  background: radial-gradient(circle at 50% 50%, rgba(63, 198, 216, .18) 0%, rgba(63, 198, 216, 0) 70%);
}
.areamap__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  gap: 2px;
  place-items: center;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--pool-600), var(--turq-400));
  color: #fff;
  font-weight: 750;
  font-size: 1.12rem;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .6);
  text-align: center;
}
.areamap__hub small {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  opacity: .9;
}
.areamap__ring { list-style: none; margin: 0; padding: 0; }
.areamap__node {
  position: absolute;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(169, 230, 238, .45);
  color: #fff;
  font-size: .92rem;
  font-weight: 650;
  white-space: nowrap;
}
.areamap__node--n { left: 50%; top: 2%; transform: translateX(-50%); }
.areamap__node--e { right: 0; top: 50%; transform: translateY(-50%); }
.areamap__node--s { left: 50%; bottom: 8%; transform: translateX(-50%); }
.areamap__node--w { left: 0; top: 50%; transform: translateY(-50%); }
.areamap__note {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--turq-200);
}

/* ---- faq ---- */

.section--faq { background: var(--cream-050); }

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.faq__item {
  border-top: 1px solid var(--cream-200);
  padding: 6px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--cream-200); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 40px 14px 0;
  position: relative;
  font-weight: 700;
  color: var(--pool-900);
  font-size: 1.03rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--pool-600);
  border-bottom: 2px solid var(--pool-600);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item p {
  margin: 0 0 14px;
  padding-right: 40px;
  color: var(--ink-500);
}

/* ---- contact ---- */

.section--contact {
  background:
    radial-gradient(820px 520px at 12% 0%, rgba(63, 198, 216, .28) 0%, rgba(63, 198, 216, 0) 60%),
    linear-gradient(160deg, var(--pool-900) 0%, #04222f 100%);
  color: var(--turq-100);
}
.section--contact h2 { color: #fff; max-width: 24ch; }
.section--contact .sectionhead__lede { color: var(--turq-100); }

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(169, 230, 238, .28);
  border-radius: var(--radius-lg);
}
.contact__list li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(169, 230, 238, .18);
  word-break: break-word;
}
.contact__list li:last-child { border-bottom: 0; }
.contact__label {
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--turq-200);
}
.contact__list a { color: #fff; }
.contact__list a:hover { color: var(--turq-200); }

/* ---- footer ---- */

.footer {
  background: #04222f;
  color: rgba(220, 244, 248, .74);
  padding: 40px 0;
  border-top: 1px solid rgba(169, 230, 238, .16);
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 32px;
  align-items: center;
}
.footer__brand p { margin: 4px 0 0; font-size: .9rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__nav a { color: rgba(220, 244, 248, .82); font-size: .9rem; text-decoration: none; }
.footer__nav a:hover { color: #fff; text-decoration: underline; }
.footer__note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(169, 230, 238, .14);
  font-size: .82rem;
  color: rgba(220, 244, 248, .6);
}

/* ------------------------------ responsive ------------------------------ */

@media (max-width: 1080px) {
  .switch__body,
  .switch__body--text,
  .area__grid,
  .faq__grid,
  .contact__grid,
  .legacy__grid { grid-template-columns: minmax(0, 1fr); }

  .legacy__pair { justify-content: flex-start; }
  .rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shot--wide { grid-column: span 2; }
  .hero {
    background-position: 62% center;
  }
  .hero__copy { width: min(560px, 58%); }
  .topnav { display: none; }
  .btn--compact .btn__label { display: inline; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero {
    align-items: end;
    min-height: max(760px, 100svh);
    padding: 48svh 0 196px;
    background-color: var(--pool-900);
    background-position: 69% top;
    background-size: auto 66svh;
  }
  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(3, 34, 47, .34) 0%,
        rgba(3, 34, 47, .04) 24%,
        rgba(3, 34, 47, .18) 42%,
        rgba(3, 34, 47, .92) 59%,
        rgba(3, 34, 47, 1) 100%);
  }
  .hero__copy {
    width: 100%;
    padding: 0;
  }
  .hero h1 {
    max-width: 12ch;
    margin-bottom: 16px;
    font-size: clamp(2.5rem, 11vw, 3.2rem);
  }
  .hero__copy .lede {
    max-width: 31em;
    font-size: .98rem;
    line-height: 1.55;
  }
  .hero__actions { margin-top: 24px; }
  .topbar__inner {
    gap: 8px;
    padding-inline: 14px;
  }
  .brandmark { gap: 6px; }
  .brandmark__script { font-size: 1.42rem; }
  .brandmark__lines { font-size: .54rem; }
  .topbar .btn--compact {
    padding: 9px 12px;
    font-size: .84rem;
  }
  .topbar .btn--compact .btn__label { display: none; }
  .factstrip { grid-template-columns: minmax(0, 1fr); }
  .factstrip__item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    padding: 8px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
  .factstrip__item:last-child { border-bottom: 0; }
  .factstrip dt { margin: 0; }
  .quotes,
  .rail,
  .cards { grid-template-columns: minmax(0, 1fr); }
  .shot--wide { grid-column: auto; }
  .switch__tabs { grid-template-columns: minmax(0, 1fr); }
  .switch__tab { border-bottom-width: 2px; }
  .legacy__pair { flex-wrap: wrap; justify-content: center; }
  .legacy__arrow { transform: rotate(90deg); }
  .areamap { max-width: 340px; }
  .areamap__hub { width: 128px; height: 128px; font-size: 1rem; }
  .areamap__node { font-size: .84rem; padding: 7px 12px; }
  .contact__list li { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .btn { width: 100%; justify-content: center; }
  .btn--compact, .btn--text { width: auto; }
  .footer__inner { grid-template-columns: minmax(0, 1fr); }
}

/* ------------------------------ motion ---------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .shot--rail:hover img,
  .card:hover,
  .btn--call:hover { transform: none; }
}

/* ------------------------------ print ----------------------------------- */

@media print {
  .topbar, .skip-link { position: static; }
  .section, .hero { padding: 24px 0; }
  body { background: #fff; }
}
