@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/cormorant-garamond-italic-600.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("fonts/cormorant-garamond-normal-600-700.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/inter-variable.woff2") format("woff2");
}

:root {
  --paper: #f6f1e8;
  --paper-2: #fffaf1;
  --ink: #151414;
  --muted: #655f56;
  --line: rgba(21, 20, 20, 0.14);
  --line-strong: rgba(21, 20, 20, 0.24);
  --red: #b63d2d;
  --red-dark: #8f2c22;
  --gold: #d69b2d;
  --green: #21634e;
  --charcoal: #20201e;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 22px 50px rgba(21, 20, 20, 0.18);
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 500;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: rgba(246, 241, 232, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(21, 20, 20, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 20, 20, 0.16);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(182, 61, 45, 0.28);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--ink);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 14px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 38px;
  margin: 0;
  padding: 9px 13px;
  border-radius: var(--radius);
  background: rgba(33, 99, 78, 0.12);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  animation: status-breathe 2.8s ease-in-out infinite;
}

.status-pill-small {
  min-height: 34px;
  font-size: 13px;
}

.status-pill-large {
  min-height: 50px;
  padding: 12px 16px;
  font-size: 16px;
}

.status-pill-hero {
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
}

.quick-panel .status-pill {
  background: rgba(33, 99, 78, 0.28);
  color: #73d3ad;
}

.quick-panel .status-pill.is-closed {
  background: rgba(182, 61, 45, 0.24);
  color: #f09a8d;
}

.status-pill.is-closed {
  background: rgba(182, 61, 45, 0.12);
  color: var(--red-dark);
  animation: none;
}

.status-pill-hero.is-closed {
  background: rgba(255, 255, 255, 0.9);
  color: var(--red-dark);
}

.status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(33, 99, 78, 0.12);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid currentColor;
  opacity: 0;
  animation: status-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.is-closed .status-dot {
  box-shadow: 0 0 0 5px rgba(182, 61, 45, 0.12);
}

.is-closed .status-dot::after {
  animation: none;
}

@keyframes status-ping {
  0% {
    opacity: 0.52;
    transform: scale(0.55);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes status-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(33, 99, 78, 0);
  }

  50% {
    box-shadow: 0 0 22px rgba(33, 99, 78, 0.2);
  }
}

@keyframes hero-image-drift {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.045);
  }
}

@keyframes hero-light-sweep {
  0%,
  28% {
    transform: translateX(-36%) skewX(-12deg);
    opacity: 0;
  }

  46% {
    opacity: 0.28;
  }

  74%,
  100% {
    transform: translateX(44%) skewX(-12deg);
    opacity: 0;
  }
}

@keyframes hero-copy-in {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-in {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-pill,
  .status-dot::after,
  .hero-image,
  .hero-light,
  .hero-kicker,
  .hero h1,
  .hero-lede,
  .hero-actions,
  .hero-meta,
  [data-reveal] {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.hero {
  position: relative;
  min-height: min(720px, calc(88svh - 72px));
  max-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 25%;
  filter: contrast(1.04) saturate(1.05) brightness(0.98);
  z-index: -2;
  transform-origin: center;
  animation: hero-image-drift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(21, 20, 20, 0.86), rgba(21, 20, 20, 0.5) 42%, rgba(21, 20, 20, 0.1) 72%),
    linear-gradient(0deg, rgba(21, 20, 20, 0.34), rgba(21, 20, 20, 0.08) 45%, rgba(21, 20, 20, 0.18));
}

.hero-light {
  position: absolute;
  inset: 72px -20% 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(214, 155, 45, 0.02) 42%, rgba(255, 250, 241, 0.24) 50%, rgba(214, 155, 45, 0.04) 58%, transparent 100%);
  mix-blend-mode: screen;
  animation: hero-light-sweep 8s ease-in-out infinite;
}

.hero-content {
  width: min(100% - clamp(32px, 8.5vw, 120px), 1440px);
  min-height: min(720px, calc(88svh - 72px));
  max-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 104px;
  padding-bottom: 40px;
  color: var(--white);
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: hero-copy-in 580ms ease both 120ms;
}

.kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker,
.quick-panel .kicker {
  color: var(--gold);
}

h1,
h2,
h3,
.footer-brand {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.1rem, 9vw, 8.4rem);
  letter-spacing: 0;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.46);
}

.hero h1 {
  animation: hero-copy-in 700ms ease both 220ms;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5.25rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.65rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  animation: hero-copy-in 700ms ease both 340ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  animation: hero-copy-in 700ms ease both 460ms;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  animation: hero-copy-in 700ms ease both 560ms;
}

.hero-meta p:not(.status-pill) {
  margin: 0;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(21, 20, 20, 0.32);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
}

.quick-panel {
  background: var(--charcoal);
  color: var(--paper-2);
  padding: 62px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(230px, 0.55fr) minmax(300px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.quick-copy p:not(.kicker) {
  max-width: 48ch;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 1.05rem;
}

.today-block {
  display: grid;
  gap: 12px;
  align-self: stretch;
  padding: 22px;
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.08);
}

.next-time {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--paper-2);
}

.hours-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
}

.hours-table tr:first-child {
  border-top: 1px solid rgba(255, 250, 241, 0.14);
}

.hours-table th,
.hours-table td {
  padding: 11px 0;
  text-align: start;
  font-size: 14px;
}

.hours-table th {
  font-weight: 900;
}

.hours-table td {
  color: rgba(255, 250, 241, 0.74);
  text-align: end;
  font-weight: 700;
}

.hours-table tr.is-today th,
.hours-table tr.is-today td {
  color: var(--gold);
}

.proof-strip {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-2);
  border-top: 1px solid rgba(255, 250, 241, 0.08);
  border-bottom: 1px solid rgba(255, 250, 241, 0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid p {
  min-height: 156px;
  margin: 0;
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 250, 241, 0.12);
  background:
    linear-gradient(180deg, rgba(214, 155, 45, 0.08), rgba(214, 155, 45, 0)),
    rgba(255, 250, 241, 0.02);
}

.proof-grid p:last-child {
  border-right: 1px solid rgba(255, 250, 241, 0.12);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 4.8vw, 5.6rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--gold);
}

.proof-grid span {
  max-width: 18ch;
  margin-top: 18px;
  color: rgba(255, 250, 241, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.intro-strip {
  background: var(--red);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid p {
  min-height: 116px;
  margin: 0;
  padding: 24px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  transition: background-color 180ms ease, transform 180ms ease;
}

.strip-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.strip-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.strip-grid p:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

.js-enabled [data-reveal].is-visible {
  animation: reveal-in 640ms cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.strip-grid [data-reveal]:nth-child(2),
.proof-grid [data-reveal]:nth-child(2),
.rayons-grid [data-reveal]:nth-child(2) {
  animation-delay: 80ms;
}

.strip-grid [data-reveal]:nth-child(3),
.proof-grid [data-reveal]:nth-child(3),
.rayons-grid [data-reveal]:nth-child(3) {
  animation-delay: 150ms;
}

.strip-grid [data-reveal]:nth-child(4),
.proof-grid [data-reveal]:nth-child(4),
.rayons-grid [data-reveal]:nth-child(4) {
  animation-delay: 220ms;
}

.rayons-grid [data-reveal]:nth-child(5) {
  animation-delay: 80ms;
}

.rayons-grid [data-reveal]:nth-child(6) {
  animation-delay: 150ms;
}

.rayons-grid [data-reveal]:nth-child(7) {
  animation-delay: 220ms;
}

.section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 900px;
}

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

.rayon-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 0 1px 0 rgba(21, 20, 20, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.rayon-card-wide {
  grid-column: span 2;
  grid-template-rows: 360px 1fr;
}

.rayon-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.1) brightness(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.rayon-card .photo-facade {
  object-position: center 18%;
  transform: none;
  transform-origin: center;
}

.rayon-card .photo-confiserie {
  object-position: 64% 48%;
  transform: scale(1.14);
  transform-origin: 64% 48%;
}

.rayon-card > div {
  padding: 22px;
  transition: transform 220ms ease;
}

.card-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rayon-card h3 {
  margin-bottom: 12px;
}

.rayon-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.rayon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 61, 45, 0.22);
  box-shadow: 0 22px 42px rgba(21, 20, 20, 0.13);
}

.rayon-card:hover img {
  transform: scale(1.045);
  filter: contrast(1.08) saturate(1.18) brightness(1.03);
}

.rayon-card:hover .photo-confiserie {
  transform: scale(1.18);
}

.rayon-card:hover > div {
  transform: translateY(-2px);
}

.story {
  padding: 0 0 104px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.story-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 4px 22px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
  box-shadow: 0 1px 0 rgba(21, 20, 20, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 34px 18px 0;
  position: relative;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red);
  transition: transform 220ms ease;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 68ch;
}

.faq-item p a {
  color: var(--red-dark);
}

.visit {
  padding: 96px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: 52px;
  align-items: center;
}

.visit-phone {
  margin: 24px 0 0;
  font-size: 1.6rem;
  font-weight: 900;
}

.visit-phone a {
  color: var(--red);
  text-decoration: none;
}

.visit-phone a:hover {
  text-decoration: underline;
}

.visit-note {
  max-width: 42ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.map-shell {
  min-width: 0;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--paper-2), var(--paper));
}

.map-label,
.map-title {
  margin: 0;
}

.map-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-title {
  margin-top: 4px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.map-card-top a {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.map-card-top a:hover {
  text-decoration: underline;
}

.map-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--paper);
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(21, 20, 20, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.map-consent {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background: var(--paper);
}

.map-consent p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.map-consent-note a {
  color: var(--red);
  text-decoration: underline;
}

.map-hint {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 44px 0;
  background: var(--charcoal);
  color: rgba(255, 250, 241, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer p {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.footer-brand {
  margin-bottom: 10px;
  color: var(--paper-2);
  font-size: 2rem;
}

.site-footer a {
  color: var(--paper-2);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-credit {
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 241, 0.12);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 250, 241, 0.5);
}

.footer-credit a {
  color: rgba(255, 250, 241, 0.7);
}

.legal-page {
  padding: 84px 0 108px;
}

.legal-panel {
  max-width: 760px;
}

.legal-panel p {
  color: var(--muted);
  font-weight: 600;
}

.legal-panel dl {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.legal-panel dt,
.legal-panel dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.legal-panel dt {
  font-weight: 900;
}

.legal-panel dd {
  color: var(--muted);
  font-weight: 600;
}

.legal-panel h2 {
  margin: 48px 0 14px;
  font-size: 1.9rem;
}

.legal-panel h3 {
  margin: 30px 0 10px;
  font-size: 1.2rem;
}

.legal-panel ul,
.legal-panel ol {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 600;
}

.legal-panel li {
  margin-bottom: 8px;
}

.legal-panel table {
  width: 100%;
  margin: 8px 0 24px;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-panel th,
.legal-panel td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-panel th {
  background: var(--paper-2);
  font-weight: 900;
}

.legal-panel td {
  color: var(--muted);
  font-weight: 600;
}

.legal-panel table a {
  color: var(--red);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .quick-grid,
  .story-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .rayons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rayon-card-wide {
    grid-column: span 2;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-text {
    font-size: 20px;
  }

  .header-actions .status-pill {
    display: none;
  }

  .btn-small {
    min-height: 36px;
  }

  .hero,
  .hero-content {
    min-height: clamp(590px, calc(80svh - 66px), 730px);
    max-height: none;
  }

  .hero {
    background: var(--charcoal);
    display: grid;
    align-items: end;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% center;
    filter: contrast(1.08) saturate(1.08) brightness(0.82);
    transform-origin: center;
    animation: hero-image-drift 20s ease-in-out infinite alternate;
  }

  .hero-content {
    width: min(100% - 24px, var(--container));
    position: relative;
    z-index: 1;
    min-height: clamp(590px, calc(80svh - 66px), 730px);
    max-height: none;
    justify-content: flex-end;
    padding-block: 42px 24px;
  }

  .hero-shade {
    display: block;
    background:
      linear-gradient(180deg, rgba(21, 20, 20, 0.12) 0%, rgba(21, 20, 20, 0.24) 30%, rgba(21, 20, 20, 0.76) 68%, rgba(21, 20, 20, 0.96) 100%),
      linear-gradient(90deg, rgba(21, 20, 20, 0.7), rgba(21, 20, 20, 0.18) 70%);
  }

  .hero-light {
    display: block;
    inset: auto -45% 18% -45%;
    height: 48%;
    opacity: 0.72;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 16vw, 4.35rem);
    line-height: 0.94;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.72);
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  h3 {
    font-size: 1.38rem;
    line-height: 1.05;
  }

  .hero-lede {
    max-width: 31ch;
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 11px 14px;
  }

  .hero-meta {
    width: 100%;
    gap: 8px;
    margin-top: 14px;
  }

  .hero-meta p:not(.status-pill) {
    max-width: 100%;
    padding: 7px 9px;
    font-size: 12px;
    background: rgba(21, 20, 20, 0.46);
  }

  .status-pill-hero {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  }

  .hero-actions,
  .visit-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .visit-actions .btn {
    width: 100%;
  }

  .quick-panel,
  .section,
  .visit {
    padding: 58px 0;
  }

  .today-block {
    padding: 16px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid p,
  .proof-grid p:last-child {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.12);
    background: transparent;
  }

  .proof-grid strong {
    font-size: 3.2rem;
  }

  .proof-grid span {
    max-width: none;
    margin-top: 8px;
  }

  .rayons-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rayon-card,
  .rayon-card-wide {
    grid-column: auto;
  }

  .rayon-card {
    display: block;
    min-height: 0;
  }

  .rayon-card img {
    display: block;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .rayon-card-wide img {
    aspect-ratio: 4 / 3;
  }

  .rayon-card .photo-facade {
    object-position: center 12%;
  }

  .rayon-card > div {
    position: static;
    background: var(--paper-2);
    padding: 16px;
  }

  .card-label {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .rayon-card h3 {
    margin-bottom: 8px;
  }

  .rayon-card p:last-child {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid p,
  .strip-grid p:last-child {
    min-height: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .story {
    padding-bottom: 58px;
  }

  .map-frame {
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .hero-lede {
    display: block;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-meta {
    align-items: stretch;
  }

  .hero-meta p:not(.status-pill),
  .status-pill-hero {
    white-space: normal;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .rayon-card {
    display: block;
  }

  .rayon-card img {
    aspect-ratio: 16 / 10;
  }

  .rayon-card-wide img {
    aspect-ratio: 4 / 3;
  }
}
