:root {
  --red: #b63a31;
  --red-dark: #8c2923;
  --cream: #f7f0e6;
  --cream-deep: #eadcc9;
  --paper: #fffdf9;
  --ink: #231f1c;
  --muted: #6c625a;
  --line: rgba(35, 31, 28, 0.14);
  --shadow: 0 22px 60px rgba(45, 30, 22, 0.14);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }

h1, h2, h3 {
  margin: 0 0 0.6em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7vw, 6.7rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.25rem, 4.6vw, 4.25rem); letter-spacing: -0.035em; }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1.2em; }
.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); line-height: 1.6; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(78px, 10vw, 145px) 0; }
.section--warm { background: var(--cream); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar { background: var(--ink); color: rgba(255,255,255,.78); font-size: .82rem; }
.topbar__inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar__links { display: flex; gap: 24px; }
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 253, 249, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 26px rgba(35,31,28,.08); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 178px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); font-size: .93rem; font-weight: 700; }
.main-nav > a { position: relative; padding: 12px 0; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.main-nav > a:hover::after, .main-nav > a.is-active::after { right: 0; }
.nav-cta { padding: 11px 20px !important; color: #fff; background: var(--red); border-radius: 999px; }
.nav-cta:hover { background: var(--red-dark); }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.nav-toggle__line { display: block; width: 27px; height: 2px; margin: 6px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 36px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__image, .hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { z-index: -2; object-fit: cover; object-position: center 57%; }
.hero__overlay { z-index: -1; background: linear-gradient(90deg, rgba(25,17,13,.8) 0%, rgba(25,17,13,.52) 46%, rgba(25,17,13,.15) 78%), linear-gradient(0deg, rgba(25,17,13,.38), transparent 45%); }
.hero__content { padding: 100px 0 130px; }
.hero__content h1 { max-width: 930px; }
.hero__lead { max-width: 700px; font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: rgba(255,255,255,.9); }
.eyebrow { margin-bottom: 18px; color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow--dark { color: var(--red); }
.hero__actions, .apero__actions, .contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--red); box-shadow: 0 12px 26px rgba(182,58,49,.27); }
.button--primary:hover { background: var(--red-dark); }
.button--secondary { border-color: var(--line); background: #fff; }
.button--secondary:hover { border-color: var(--red); color: var(--red); }
.button--ghost { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }
.button--ghost:hover { background: #fff; color: var(--ink); }
.button--light { background: #fff; color: var(--ink); }
.button--outline-light { border-color: rgba(255,255,255,.45); color: #fff; }
.button--outline-light:hover { background: #fff; color: var(--ink); }
.hero__scroll { position: absolute; left: 50%; bottom: 28px; display: flex; flex-direction: column; align-items: center; gap: 2px; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero__scroll svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2; animation: bob 1.8s infinite ease-in-out; }
@keyframes bob { 50% { transform: translateY(6px); } }

.intro__grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(340px, .72fr); align-items: center; gap: clamp(50px, 8vw, 120px); }
.intro__content p:not(.eyebrow) { max-width: 740px; color: var(--muted); }
.intro__content p strong { color: var(--ink); }
.intro__visual { position: relative; padding: 0 48px 48px 0; }
.photo-card { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card--large { aspect-ratio: 4 / 5; }
.intro__note { position: absolute; right: 0; bottom: 0; display: flex; align-items: center; gap: 14px; min-width: 230px; padding: 20px 24px; background: var(--red); color: #fff; border-radius: 18px; box-shadow: 0 18px 40px rgba(182,58,49,.28); }
.intro__note p { margin: 0; line-height: 1.35; }
.intro__note-icon { font-size: 1.8rem; }

.section-heading { max-width: 780px; margin-bottom: 52px; }
.section-heading > p:last-child { max-width: 620px; color: var(--muted); font-size: 1.12rem; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1fr minmax(280px, 430px); align-items: end; gap: 45px; }
.section-heading--split > p:last-child { margin-bottom: .7em; }
.offer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.offer-card { display: flex; flex-direction: column; min-height: 100%; overflow: hidden; background: #fff; border: 1px solid rgba(35,31,28,.08); border-radius: 20px; box-shadow: 0 14px 34px rgba(58,38,27,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.offer-card:hover { transform: translateY(-7px); border-color: rgba(182,58,49,.18); box-shadow: 0 24px 48px rgba(58,38,27,.12); }
.offer-card__image-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #ddd6cb; }
.offer-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.offer-card:hover .offer-card__image { transform: scale(1.05); }
.offer-card__number { position: absolute; top: 16px; right: 16px; padding: 6px 10px; color: rgba(255,255,255,.88); background: rgba(35,31,28,.42); border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .06em; backdrop-filter: blur(10px); }
.offer-card__icon { position: absolute; left: 16px; bottom: 16px; display: grid; width: 52px; height: 52px; place-items: center; background: rgba(255,255,255,.9); border-radius: 50%; box-shadow: 0 12px 24px rgba(35,31,28,.14); font-size: 1.45rem; }
.offer-card__content { display: flex; flex: 1; flex-direction: column; gap: 10px; padding: 22px 22px 24px; }
.offer-card__eyebrow { color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.offer-card h3 { margin: 0; font-size: 1.42rem; }
.offer-card p { margin: 0; color: var(--muted); }
.offer__footer { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.pill { padding: 9px 15px; background: rgba(255,255,255,.68); border: 1px solid rgba(35,31,28,.09); border-radius: 999px; color: var(--muted); font-size: .86rem; font-weight: 700; }

.hours__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.hours__image { position: relative; min-height: 650px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.hours__image img { width: 100%; height: 100%; object-fit: cover; }
.hours__image-label { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 18px 22px; color: #fff; background: rgba(35,31,28,.76); border: 1px solid rgba(255,255,255,.18); border-radius: 15px; backdrop-filter: blur(14px); }
.hours__image-label span, .hours__image-label strong { display: block; }
.hours__image-label span { color: rgba(255,255,255,.72); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.hours-table { margin-top: 35px; border-top: 1px solid var(--line); }
.hours-row { display: flex; justify-content: space-between; gap: 24px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
.hours-row strong { font-variant-numeric: tabular-nums; }
.hours-row.is-today { margin-inline: -12px; padding-inline: 16px; color: var(--red); background: var(--cream); border-radius: 10px; border-bottom-color: transparent; }
.hours-row--closed strong { color: var(--muted); }
.hours__today { min-height: 1.7em; margin-top: 18px; color: var(--muted); font-size: .9rem; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--red); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.apero { position: relative; overflow: hidden; color: #fff; background: #352822; }
.apero__background { position: absolute; inset: 0; opacity: .22; background: radial-gradient(circle at 15% 10%, #b63a31 0, transparent 38%), radial-gradient(circle at 100% 100%, #d59a5e 0, transparent 40%); }
.apero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr); align-items: center; gap: clamp(50px, 9vw, 130px); }
.apero__content p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.76); font-size: 1.15rem; }
.apero__image { margin: 0; height: 600px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); box-shadow: 0 28px 70px rgba(0,0,0,.34); transform: rotate(2deg); }
.apero__image img { width: 100%; height: 100%; object-fit: cover; }

.gallery { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 270px; gap: 14px; }
.gallery-item { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: 16px; background: #e8e2d9; cursor: zoom-in; }
.gallery-item::after { content: "+"; position: absolute; right: 17px; bottom: 17px; display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: rgba(35,31,28,.7); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; opacity: 0; transform: scale(.8); transition: opacity .2s ease, transform .2s ease; }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: scale(1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.community { background: var(--cream); border-block: 1px solid rgba(35,31,28,.08); }
.community__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr); align-items: center; gap: clamp(44px, 7vw, 100px); }
.community__photo { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #d8d2c8; }
.community__photo img { width: 100%; aspect-ratio: 750 / 431; object-fit: cover; }
.community__content { max-width: 620px; }
.community__mark { display: grid; width: 70px; height: 70px; margin-bottom: 28px; place-items: center; background: #fff; border-radius: 50%; font-size: 2rem; box-shadow: 0 12px 30px rgba(53,35,25,.1); }
.community h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
.community__content p:not(.eyebrow) { color: var(--muted); }

.contact__grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.05fr); align-items: center; gap: clamp(50px, 8vw, 105px); }
.contact-list { display: grid; gap: 21px; margin-top: 35px; }
.contact-item { display: grid; grid-template-columns: 45px 1fr; align-items: start; gap: 15px; }
.contact-item__icon { display: grid; width: 42px; height: 42px; place-items: center; background: var(--cream); border-radius: 50%; color: var(--red); font-size: 1.1rem; font-weight: 700; }
.contact-item strong, .contact-item a, .contact-item address { display: block; }
.contact-item strong { margin-bottom: 2px; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.contact-item a, .contact-item address { color: var(--muted); }
.contact-item a:hover { color: var(--red); }
.contact__visual { position: relative; padding: 0 0 50px 50px; }
.contact__visual > img { width: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact__card { position: absolute; left: 0; bottom: 0; display: flex; align-items: center; gap: 20px; max-width: 390px; padding: 18px 20px; background: #fff; border-radius: 18px; box-shadow: 0 18px 50px rgba(35,31,28,.16); }
.contact__card img { width: 140px; }
.contact__card p { margin: 0; line-height: 1.38; font-weight: 700; }
.contact__card span { color: var(--muted); font-size: .82rem; font-weight: 500; }

.site-footer { padding: 68px 0 22px; background: var(--ink); color: rgba(255,255,255,.72); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, .75fr); gap: 42px; padding-bottom: 50px; }
.footer__logo { width: 170px; margin-bottom: 18px; }
.footer__grid p { max-width: 390px; }
.footer__grid h2 { margin-bottom: 15px; color: #fff; font-family: inherit; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.footer__grid a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: .84rem; }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 22px; }
.footer__legal a:hover { color: #fff; }

.lightbox { width: min(1100px, calc(100vw - 30px)); max-width: none; padding: 0; overflow: visible; border: 0; background: transparent; }
.lightbox::backdrop { background: rgba(16,12,10,.92); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; border-radius: 14px; }
.lightbox__close { position: absolute; z-index: 2; top: -44px; right: 0; width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid #e7a85f; outline-offset: 4px; }

@media (max-width: 1100px) {
  :root { --header-height: 76px; }
  .topbar__inner > span { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .nav-toggle { display: block; position: relative; z-index: 3; }
  .main-nav {
    position: fixed;
    z-index: 2;
    inset: var(--header-height) 0 auto;
    min-height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 2px;
    padding: 34px max(24px, calc((100vw - 700px)/2));
    background: var(--paper);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .28s ease, visibility .28s ease;
  }
  .main-nav.is-open { transform: translateX(0); visibility: visible; }
  .main-nav > a { padding: 13px 6px; font-family: Georgia, "Times New Roman", serif; font-size: 1.9rem; }
  .main-nav > a::after { display: none; }
  .nav-cta { margin-top: 16px; text-align: center; font-family: inherit !important; font-size: 1rem !important; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .intro__grid, .hours__grid, .apero__grid, .contact__grid { grid-template-columns: 1fr; }
  .intro__visual { max-width: 580px; margin-inline: auto; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .hours__image { min-height: 520px; }
  .hours__content { max-width: 620px; }
  .apero__content { max-width: 720px; }
  .apero__image { max-width: 570px; height: 550px; margin-inline: auto; transform: none; }
  .community__grid { grid-template-columns: 1fr; }
  .community__content { max-width: 720px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; max-width: 620px; }
  .contact__content { max-width: 690px; }
  .footer__grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer__grid > div:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
  :root { --container: min(100% - 28px, 1180px); }
  .topbar__links { width: 100%; justify-content: space-between; gap: 12px; font-size: .76rem; }
  .brand img { width: 148px; }
  .hero { min-height: 720px; }
  .hero__content { padding: 80px 0 130px; }
  .hero__overlay { background: linear-gradient(0deg, rgba(25,17,13,.78), rgba(25,17,13,.25)), linear-gradient(90deg, rgba(25,17,13,.48), transparent); }
  .hero__actions .button { width: 100%; }
  .intro__visual { padding: 0 22px 40px 0; }
  .intro__note { min-width: auto; padding: 15px 17px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: auto; }
  .section-heading--split { grid-template-columns: 1fr; gap: 0; }
  .hours__image { min-height: 390px; }
  .hours-row { font-size: .94rem; }
  .apero__image { height: 480px; }
  .apero__actions .button { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 2; }
  .community__content { text-align: center; }
  .community__mark { margin-inline: auto; }
  .contact__visual { padding: 0 0 70px 18px; }
  .contact__visual > img { min-height: 390px; }
  .contact__card { right: 18px; max-width: none; }
  .contact__card img { width: 115px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: span 2; }
  .footer__grid > div:last-child { grid-column: auto; }
}

@media (max-width: 460px) {
  h1 { font-size: 2.75rem; }
  .topbar__links a:last-child { display: none; }
  .topbar__links { justify-content: flex-end; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item--wide { grid-column: auto; }
  .gallery-item--tall { grid-row: auto; }
  .contact__card { display: block; }
  .contact__card img { margin-bottom: 10px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > div:first-child { grid-column: auto; }
  .footer__bottom { flex-direction: column; }
  .footer__legal { justify-content: flex-start; }
}

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


/* Legal pages */
.legal-hero { padding: clamp(72px, 9vw, 120px) 0 54px; background: var(--cream); border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 900px; font-size: clamp(2.8rem, 6vw, 5.4rem); }
.legal-hero p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 1.12rem; }
.legal-page { padding: clamp(58px, 8vw, 100px) 0 clamp(80px, 10vw, 130px); }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(230px, 300px); align-items: start; gap: clamp(45px, 8vw, 110px); }
.legal-content { max-width: 790px; }
.legal-content section { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { margin-bottom: 0; border-bottom: 0; }
.legal-content h2 { margin-bottom: .65em; font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -.025em; }
.legal-content h3 { margin-top: 1.5em; font-size: 1.18rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content strong { color: var(--ink); }
.legal-content ul { padding-left: 1.25rem; }
.legal-content a { color: var(--red); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-aside { position: sticky; top: calc(var(--header-height) + 30px); padding: 26px; background: var(--cream); border: 1px solid rgba(35,31,28,.08); border-radius: 18px; }
.legal-aside h2 { margin-bottom: 14px; font-family: inherit; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.legal-aside p { margin-bottom: 18px; color: var(--muted); font-size: .92rem; }
.legal-aside a { display: block; padding: 8px 0; color: var(--red); font-weight: 750; }
.legal-note { padding: 18px 20px; background: var(--cream); border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; }

@media (max-width: 1100px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; max-width: 620px; }
}

@media (max-width: 700px) {
  .legal-hero { padding-top: 62px; }
  .legal-content section { padding-bottom: 26px; margin-bottom: 28px; }
}
