:root {
  --bg: #f9f6f2;
  --bg-warm: #f3ebe4;
  --surface: #ffffff;
  --ink: #1e1a18;
  --ink-soft: #4a423e;
  --muted: #7a716b;
  --line: rgba(30, 26, 24, 0.1);
  --accent: #d4af37;
  --accent-deep: #9a7318;
  --accent-soft: #e8c96a;
  --sage: #5c6b5e;
  --gold: #9a8b6e;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow: 0 24px 60px rgba(30, 26, 24, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: auto;
  /* In-page anchors clear the sticky header */
  scroll-padding-top: calc(var(--header-h) + 0.35rem);
  overflow-anchor: none;
}

/* Reduce scroll “jumps” when content above the viewport resizes (e.g. hero image load) */
main {
  overflow-anchor: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-anchor: none;
}

.skip-wrap {
  position: fixed;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.skip-wrap:focus-within {
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  overflow: visible;
  white-space: normal;
  padding: 0.5rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.skip-link {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-md);
  font-weight: 500;
  text-decoration: none;
}

.skip-link:hover {
  color: var(--bg);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
}

.skip-link:focus-visible {
  outline-color: var(--surface);
  outline-offset: 2px;
}

code {
  font-size: 0.85em;
  background: var(--bg-warm);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(249, 246, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

body.nav-open {
  overflow: hidden;
}

.nav-backdrop {
  display: none;
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.logo__emblem {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo__accent {
  font-weight: 500;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
}

.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  height: 14px;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
}

.site-nav__list a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.site-nav__list a:hover {
  color: var(--ink);
}

.site-nav__cta {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg) !important;
  text-decoration: none !important;
}

.site-nav__cta:hover {
  background: var(--accent-deep);
  color: var(--surface) !important;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 90;
    background: rgba(30, 26, 24, 0.35);
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .nav-backdrop:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 110;
    background: rgba(249, 246, 242, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .site-nav__list a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  min-height: min(88dvh, 720px);
  overflow-anchor: none;
  display: block;
  padding: 3rem 1.25rem 4rem;
  overflow-x: hidden;
  overflow-y: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 70% 20%, rgba(201, 160, 144, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 45% at 15% 80%, rgba(92, 107, 94, 0.18), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e1a18' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1rem;
}

.hero__title {
  font-size: clamp(2.85rem, 7vw, 4.25rem);
  font-weight: 600;
  max-width: 12ch;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.hero__lede {
  font-size: 1.15rem;
  max-width: 36ch;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--accent-deep);
  color: var(--surface);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--ghost:hover {
  background: var(--surface);
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero__pin {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(139, 90, 74, 0.25);
}

/* ——— Sections ——— */
.section {
  padding: 4.5rem 1.25rem;
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 560px;
  text-align: center;
}

.section__head {
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.section__head p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.section--services {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: rgba(139, 90, 74, 0.35);
  box-shadow: 0 12px 32px rgba(30, 26, 24, 0.06);
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.section--split {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem 2.5rem;
  align-items: start;
}

.split__figure {
  margin: 0;
  grid-column: 1;
  grid-row: 1 / span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 720px;
}

.split__figure img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 640px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.split__text {
  grid-column: 2;
  grid-row: 1;
}

.split__panel {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 820px) {
  .section__inner--split {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .split__figure {
    grid-column: 1;
    grid-row: auto;
    max-height: 420px;
  }

  .split__figure img {
    max-height: 420px;
    min-height: 220px;
  }

  .split__text {
    grid-column: 1;
    grid-row: auto;
  }

  .split__panel {
    grid-column: 1;
    grid-row: auto;
  }
}

.split__text p:last-child {
  margin-bottom: 0;
}

.split__panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.highlights {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlights li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.highlights li:first-child {
  padding-top: 0;
}

.highlights li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.highlights strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.section--visit {
  background: var(--ink);
  color: rgba(249, 246, 242, 0.85);
}

.section--visit h2 {
  color: var(--bg);
}

.section__inner--visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 720px) {
  .section__inner--visit {
    grid-template-columns: 1fr;
  }
}

.visit__address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hours {
  margin: 0;
}

.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.hours > div:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.hours dt {
  margin: 0;
  font-weight: 500;
  color: rgba(249, 246, 242, 0.7);
}

.hours dd {
  margin: 0;
  color: var(--bg);
  font-weight: 500;
}

.visit__photo--brass {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(253, 186, 116, 0.45), transparent 50%),
    linear-gradient(145deg, #431407 0%, #ea580c 100%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.visit__photo--brass .fill-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ——— Hero / cards / gallery layout + gradient fallbacks under <img class="fill-img"> ——— */
.hero__layout {
  position: relative;
  z-index: 1;
  max-width: min(100%, 1280px);
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: 2rem 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }
}

.hero__layout .hero__content {
  max-width: none;
  margin: 0;
}

.hero__visual--salon {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
  min-width: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(ellipse 90% 70% at 70% 20%, rgba(255, 255, 255, 0.45), transparent 52%),
    linear-gradient(145deg, #fce7f3 0%, #fbcfe8 42%, #fda4af 100%);
}

/* Intrinsic sizing: full width, natural aspect — entire photo visible */
.hero__visual--salon .fill-img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: contain;
}

.service-card {
  padding: 0;
  overflow: hidden;
  background: var(--surface);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  min-height: 140px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-card__media .fill-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card__media--hair {
  background: linear-gradient(120deg, #fef3c7, #fbbf24 60%, #d97706);
}

.service-card__media--nails {
  background: linear-gradient(130deg, #fce7f3, #f472b6 55%, #be185d);
}

.service-card__media--skin {
  background: linear-gradient(140deg, #ecfdf5, #5eead4 50%, #0d9488);
}

.service-card__media--grooming {
  background: linear-gradient(110deg, #e0e7ff, #94a3b8 55%, #334155);
}

.service-card__body {
  padding: 1.35rem 1.35rem 1.45rem;
  background: var(--bg);
}

.section--gallery {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(48px, 56px);
  gap: 0.75rem;
}

.gallery-tile {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 80px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-tile .fill-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-tile--1 {
  grid-column: 1 / 8;
  grid-row: 1 / 7;
  background: linear-gradient(160deg, #fdf2f8, #f9a8d4);
}

.gallery-tile--2 {
  grid-column: 8 / 13;
  grid-row: 1 / 4;
  background: linear-gradient(135deg, #fef9c3, #fbbf24);
}

.gallery-tile--3 {
  grid-column: 8 / 13;
  grid-row: 4 / 7;
  background: linear-gradient(145deg, #d1fae5, #34d399);
}

.gallery-tile--4 {
  grid-column: 1 / 13;
  grid-row: 7 / 10;
  background: linear-gradient(90deg, #fce7f3, #fda4af, #c084fc, #67e8f9);
}

@media (max-width: 720px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(100px, 26vw);
  }

  .gallery-tile--1 {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 180px;
  }

  .gallery-tile--2 {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .gallery-tile--3 {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .gallery-tile--4 {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 140px;
  }
}

.split__figure--relax {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(253, 230, 138, 0.35), transparent 55%),
    linear-gradient(165deg, #1e1b4b 0%, #5b21b6 45%, #fbcfe8 100%);
}

.split__figure--relax .fill-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 820px) {
  .split__figure--relax {
    max-height: 420px;
    min-height: 220px;
  }
}

.section--contact {
  padding-bottom: 5rem;
}

.section--contact h2 {
  margin-bottom: 0.5rem;
}

.section--contact > .section__inner > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.contact-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:first-child {
  padding-top: 0;
}

.contact-list__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-list a {
  font-size: 1.15rem;
  font-weight: 500;
}

.visit__maps {
  margin: 0 0 1.25rem;
}

.booking-form {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: left;
}

.booking-form__title {
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 1rem;
  font-size: 1rem;
}

.booking-form__status {
  min-height: 1.35em;
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.booking-form__hint {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.booking-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.booking-form__field--full {
  grid-column: 1 / -1;
}

.booking-form__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-form input,
.booking-form textarea {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
}

.booking-form textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.booking-form__submit {
  width: 100%;
  justify-content: center;
}

@media (max-width: 520px) {
  .booking-form__grid {
    grid-template-columns: 1fr;
  }
}

.section--privacy {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.section--privacy h2 {
  margin-bottom: 1rem;
}

.section--privacy p {
  text-align: left;
  color: var(--muted);
  font-size: 1rem;
}

/* ——— Footer ——— */
.site-footer {
  padding: 2.5rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.25rem;
}

.site-footer__meta {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer__privacy {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.site-footer__privacy a {
  font-weight: 600;
}
