/* Inter, itse hostattu (muuttujafontti, paino 100-900). Ei pyyntöjä Googlelle. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --burgundy: #541d2c;
  --burgundy-deep: #3f1420;
  --blush: #f3e7e9;
  --paper: #fcfaf9;
  --ink: #20191b;
  --muted: #75696d;
  --line: #d9c9cd;
  --serif: var(--sans);
  --sans: Inter, Arial, sans-serif;
  --page: min(1240px, calc(100vw - 48px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

p { overflow-wrap: anywhere; hyphens: auto; }
h1, h2, h3 { overflow-wrap: normal; hyphens: manual; }

button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: .7rem 1rem;
  color: white;
  background: var(--burgundy);
  transform: translateY(-140%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(84, 29, 44, .14);
  background: rgba(252, 250, 249, .96);
}

.nav-shell {
  width: var(--page);
  min-height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  width: max-content;
  color: var(--burgundy);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.04em;
}

.wordmark span {
  display: block;
  margin-top: .45rem;
  font-family: var(--sans);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .23em;
}

.main-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2vw, 2.4rem); }

.main-nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: .87rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { justify-self: end; display: flex; align-items: center; gap: .75rem; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.25rem;
  border: 1px solid var(--burgundy);
  border-radius: 0;
  color: white;
  background: var(--burgundy);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .2s ease, background .2s ease;
}

.button:hover, .button:focus-visible { background: var(--burgundy-deep); }

.button-outline { color: var(--burgundy); background: transparent; }
.button-outline:hover, .button-outline:focus-visible { color: white; background: var(--burgundy); }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  width: var(--page);
  min-height: calc(100vh - 88px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
  padding: clamp(3.5rem, 6vw, 6.5rem) 0;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--burgundy);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1,
.page-title,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 { max-width: 10ch; font-size: clamp(3.35rem, 6vw, 6.8rem); }

.hero-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.button-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-media {
  position: relative;
  min-height: min(670px, 74vh);
  margin-right: clamp(0px, 2vw, 28px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: min(670px, 74vh);
  object-fit: cover;
  object-position: 50% 38%;
}

.hero-note {
  position: absolute;
  right: -28px;
  bottom: 38px;
  width: min(250px, 52%);
  margin: 0;
  padding: 1.4rem;
  color: var(--burgundy);
  background: var(--blush);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.35;
}

.intro-split {
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  background: var(--burgundy);
  color: white;
}

.intro-inner {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.intro-label {
  position: sticky;
  top: 2rem;
  margin: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.intro-copy h2 {
  max-width: 16ch;
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.intro-copy p { max-width: 47rem; margin: 0 0 1.2rem; color: #f0e6e8; }

.salon-feature {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.salon-feature img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.section-title { max-width: 13ch; font-size: clamp(2.5rem, 4vw, 4.5rem); }
.salon-feature p { max-width: 43rem; margin: 1.8rem 0 0; color: var(--muted); }

.link-row { display: flex; flex-wrap: wrap; gap: .5rem 2rem; margin-top: 1.25rem; }
.link-row .text-link { margin-top: 0; }
.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--burgundy);
  text-underline-offset: .35em;
  font-weight: 700;
}

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 760px); }
  .nav-shell { min-height: 76px; grid-template-columns: 1fr auto; }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    display: none;
    align-items: stretch;
    padding: 1rem 18px 1.5rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    flex-direction: column;
    gap: 0;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .header-actions .button { display: none; }
  .menu-toggle { display: block; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4.5rem;
  }
  .hero-copy { max-width: 680px; }
  .hero h1 { max-width: 11ch; }
  .hero-media { min-height: 580px; margin: 0 24px 0 0; }
  .hero-media img { min-height: 580px; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 32px); }
  .hero { gap: 2.5rem; padding: 3.25rem 0 4rem; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.75rem); }
  .hero-copy > p:not(.eyebrow) { margin: 1.5rem 0; }
  .hero-media, .hero-media img { min-height: 450px; }
  .hero-media { margin-right: 12px; }
  .hero-note { right: -12px; bottom: 24px; width: min(220px, 64%); padding: 1rem; font-size: 1.05rem; }
  .intro-inner, .salon-feature { grid-template-columns: 1fr; }
  .intro-label { position: static; }
  .salon-feature { gap: 2.2rem; }
  .salon-feature img { aspect-ratio: 5 / 4; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Kalaki-inspired editorial structure: photographic hero, restrained rules, sans typography. */
:root {
  --serif: var(--sans);
  --page: min(1328px, calc(100vw - 112px));
  --narrow: min(820px, calc(100vw - 48px));
}

.wordmark { font-family: var(--sans); font-size: 1.5rem; font-weight: 700; letter-spacing: -.065em; }
.wordmark span { font-size: .75rem; letter-spacing: .08em; }
.hero h1, .page-title, .section-title, .intro-copy h2,
.price-heading, .price-group h2, .contact-copy h2, .contact-form h2,
.privacy h2, .hours caption { font-family: var(--sans); font-weight: 500; }

.home-hero {
  position: relative;
  height: min(720px, calc(100svh - 88px));
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
  color: white;
}
.home-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(38, 12, 20, .78) 0%, rgba(38, 12, 20, .5) 43%, rgba(38, 12, 20, .06) 80%);
}
.home-hero-inner { width: var(--page); height: 100%; margin-inline: auto; padding-top: clamp(74px, 11vh, 120px); }
.home-hero .eyebrow { color: #f4e6e9; }
.home-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4.4rem, 7.2vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .95;
  hyphens: manual;
}
.home-hero-lead { margin: 1.8rem 0 2rem; color: #f6eef0; font-size: 1rem; }
.home-hero .button-outline { border-color: rgba(255,255,255,.72); color: white; }
.home-hero .button-outline:hover, .home-hero .button-outline:focus-visible { border-color: white; background: white; color: var(--burgundy); }
.home-location { position: absolute; right: max(56px, calc((100vw - 1328px) / 2)); bottom: 40px; margin: 0; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.55); color: #f5ecee; font-size: .875rem; line-height: 1.55; }
.home-location strong { display: block; color: white; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.fact-strip { border-bottom: 1px solid var(--line); background: white; }
.fact-strip-inner { width: var(--page); min-height: 88px; margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.fact { display: flex; align-items: center; gap: 14px; padding: 1.25rem 2rem; border-right: 1px solid var(--line); font-size: .875rem; }
.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; }
.fact strong { color: var(--burgundy); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }

.intro-split { color: var(--ink); background: var(--blush); }
.intro-copy p { color: var(--muted); }
.intro-copy h2 { max-width: 18ch; font-size: clamp(2.4rem, 3.7vw, 4rem); }

.link-ribbon { border-block: 1px solid var(--line); background: white; }
.link-ribbon-inner { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.link-ribbon a { display: block; padding: 2rem 2rem 2rem 0; border-right: 1px solid var(--line); color: var(--burgundy); text-decoration: none; font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.2; }
.link-ribbon a + a { padding-left: 2rem; }
.link-ribbon a:last-child { border-right: 0; }
.link-ribbon small { display: block; margin-top: .5rem; color: var(--muted); font-size: .8125rem; font-weight: 500; letter-spacing: 0; }

.editorial-row {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}
.editorial-row > *, .page-hero-inner > *, .contact-layout > * { min-width: 0; }
.editorial-row.reverse { grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); }
.editorial-row.reverse .editorial-image { order: 2; }
.editorial-image { width: min(100%, 440px); justify-self: center; }
.editorial-image img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.editorial-image.landscape img { aspect-ratio: 4 / 3; }
.editorial-copy > p:not(.eyebrow) { max-width: 45rem; margin: 1.8rem 0 0; color: var(--muted); }

.page-hero { padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6rem); border-bottom: 1px solid var(--line); background: white; }
.page-hero-inner { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.page-title { max-width: 16ch; color: var(--burgundy); font-size: clamp(2.8rem, 4.6vw, 5.4rem); }
.page-lead { max-width: 48rem; margin: 0; color: var(--muted); font-size: 1.0625rem; }
.content-section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.content-section.blush { background: var(--blush); }
.content-inner { width: var(--page); margin-inline: auto; }
.content-narrow { width: var(--narrow); margin-inline: auto; }
.service-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.service-intro p { margin: 0 0 1.2rem; color: var(--muted); }
.service-list { margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--burgundy); list-style: none; columns: 2; column-gap: 3rem; }
.service-list li { padding: .75rem 0; border-bottom: 1px solid var(--line); break-inside: avoid; }
.notice { padding: 2rem; border-left: 3px solid var(--burgundy); background: var(--blush); }
.notice p { margin: 0; }

.price-head { padding-bottom: 3rem; }
.price-heading { margin: 0; color: var(--burgundy); font-size: clamp(2.5rem, 4.5vw, 4.8rem); letter-spacing: -.05em; line-height: 1; }
.price-heading span { display: block; margin-top: 1rem; color: var(--muted); font-size: .875rem; font-weight: 600; letter-spacing: .06em; line-height: 1.5; text-transform: uppercase; }
.price-groups { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3.5rem, 7vw, 7rem); align-items: start; }
.price-column { display: grid; gap: 4rem; }
.price-group h2 { margin: 0 0 1rem; color: var(--burgundy); font-size: clamp(1.6rem, 2.2vw, 2.2rem); letter-spacing: -.035em; line-height: 1.18; }
.price-group table { width: 100%; border-collapse: collapse; }
.price-group th, .price-group td { padding: .8rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-group th { padding-right: 1.5rem; text-align: left; font-weight: 500; }
.price-group td { width: 6rem; color: var(--burgundy); text-align: right; white-space: nowrap; font-weight: 700; }

.contact-band { padding: clamp(4.5rem, 8vw, 8rem) 0; color: white; background: var(--burgundy); }
.contact-layout { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); }
.contact-copy h2, .contact-form h2 { margin: 0 0 1.5rem; font-size: clamp(2rem, 3vw, 3.5rem); letter-spacing: -.045em; line-height: 1.05; }
.contact-copy > p { color: #f0e6e8; }
.contact-list { margin: 2rem 0; padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.contact-list strong { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-list a, .footer-links a { overflow-wrap: anywhere; }
.hours { width: 100%; margin-top: 2.2rem; border-collapse: collapse; }
.hours caption { margin-bottom: .8rem; text-align: left; font-size: 1.6rem; letter-spacing: -.03em; }
.hours th, .hours td { padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.25); text-align: left; vertical-align: top; }
.hours th { padding-right: 1rem; font-weight: 500; }
.hours td { text-align: right; white-space: nowrap; }
.contact-form { padding: clamp(2rem, 4vw, 3.5rem); color: var(--ink); background: var(--paper); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .35rem; font-size: .875rem; font-weight: 700; }
.field input, .field textarea { width: 100%; min-height: 50px; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: white; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--burgundy); outline-offset: 2px; }
.form-status { min-height: 1.7em; margin: 1rem 0 0; font-size: .9rem; }
.form-status[data-state="success"] { color: #275b3a; }
.form-status[data-state="error"] { color: #8b1e2d; }
.map-link { display: inline-flex; margin-top: 1rem; color: white; text-underline-offset: .35em; font-weight: 700; }

.privacy { padding: clamp(4rem, 8vw, 8rem) 0; }
.privacy h2 { margin: 0 0 2rem; color: var(--burgundy); font-size: clamp(1.8rem, 3vw, 2.75rem); letter-spacing: -.035em; }
.privacy dl { margin: 0; }
.privacy dt { margin-top: 1.75rem; font-weight: 700; }
.privacy dd { margin: .3rem 0 0; color: var(--muted); }

.site-footer { padding: 4rem 0 2rem; color: var(--ink); background: var(--blush); }
.footer-top { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 3rem; align-items: start; }
.footer-wordmark { color: var(--burgundy); }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem 2rem; }
.footer-links a { color: var(--muted); font-size: .875rem; text-underline-offset: .3em; }
.social-links { display: flex; gap: 1rem; }
.social-links a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--burgundy); text-decoration: none; font-weight: 700; }
.footer-bottom { width: var(--page); margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 64px); }
  .home-location { right: 32px; }
}

@media (max-width: 980px) {
  :root { --page: min(100% - 44px, 820px); }
  .home-hero { height: 670px; min-height: 0; }
  .home-hero h1 { font-size: clamp(3.8rem, 9vw, 5.6rem); }
  .home-location { right: 22px; }
  .page-hero-inner, .service-intro, .contact-layout { grid-template-columns: 1fr; }
  .price-groups { gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .social-links { grid-column: 2; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 32px); --narrow: calc(100% - 32px); }
  .home-hero { height: 630px; }
  .home-hero::after { background: linear-gradient(90deg, rgba(38, 12, 20, .78), rgba(38, 12, 20, .18)); }
  .home-hero-inner { padding-top: 84px; }
  .home-hero h1 { max-width: 100%; font-size: clamp(2.7rem, 12.6vw, 4rem); line-height: .98; }
  .home-location { display: none; }
  .fact-strip-inner { grid-template-columns: 1fr; }
  .fact, .fact:first-child { padding: .9rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .intro-inner, .editorial-row, .editorial-row.reverse { grid-template-columns: 1fr; }
  .editorial-row.reverse .editorial-image { order: 0; }
  .editorial-image img { aspect-ratio: 5 / 4; }
  .link-ribbon-inner { grid-template-columns: 1fr; }
  .link-ribbon a, .link-ribbon a + a { padding: 1.4rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .link-ribbon a:last-child { border-bottom: 0; }
  .page-title { font-size: clamp(2.2rem, 10vw, 4.8rem); }
  .service-list { columns: 1; }
  .price-groups { grid-template-columns: 1fr; }
  .price-group th { padding-right: .75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .social-links { grid-column: auto; }
}

@media (max-width: 360px) {
  .home-hero h1 { font-size: 2.55rem; }
  .contact-list li { grid-template-columns: 1fr; gap: 0; }
}


/* --- Korjauspassi 10.9.2026 --- */

.price-note {
  max-width: 46ch;
  margin: -.5rem 0 1.25rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.cta-band { padding: clamp(3.5rem, 6vw, 5.5rem) 0; color: white; background: var(--burgundy); }
.cta-band-inner { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.cta-band h2 { margin: 0; font-family: var(--sans); font-size: clamp(2rem, 3vw, 3.25rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.05; }
.cta-band p { margin: 0 0 1.75rem; max-width: 42rem; color: #f0e6e8; }
.cta-band .button-row { align-items: center; gap: .75rem 1.5rem; }
.cta-band .button-light { border-color: white; color: var(--burgundy); background: white; }
.cta-band .button-light:hover, .cta-band .button-light:focus-visible { background: var(--blush); }
.cta-band .button-outline { border-color: rgba(255, 255, 255, .72); color: white; background: transparent; }
.cta-band .button-outline:hover, .cta-band .button-outline:focus-visible { border-color: white; color: var(--burgundy); background: white; }
.cta-band .text-link { color: white; }

.footer-links { display: flex; flex-wrap: wrap; gap: .65rem 1.75rem; }
.footer-contact { margin: 1.25rem 0 0; color: var(--muted); font-size: .875rem; line-height: 1.7; }
.footer-contact a { color: var(--muted); text-underline-offset: .3em; }
.footer-contact .sep { padding: 0 .35rem; color: var(--line); }
.social-links a svg { width: 20px; height: 20px; display: block; }

@media (max-width: 680px) {
  .cta-band-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band p { margin-bottom: 1.5rem; }
  .footer-contact .sep { display: none; }
  .footer-contact span.line, .footer-contact a { display: block; }
}
