:root {
  --navy: #071858;
  --blue: #0c2a8a;
  --yellow: #f5c518;
  --coral: #cf5738;
  --paper: #fffef7;
  --white: #ffffff;
  --ink: #151922;
  --muted: #5c6270;
  --line: #e9e2ce;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(255, 254, 247, 0.94);
  border-bottom: 1px solid rgba(7, 24, 88, 0.12);
  display: flex;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 0 4vw;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 52px;
  width: 52px;
}

.brand span {
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 700;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 26px;
}

.site-nav a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.button {
  align-items: center;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 6px;
  color: var(--navy);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.hero {
  align-items: flex-end;
  background-image: url("spritz-nino-fresco-paris.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: min(780px, 88vh);
  padding: 150px 6vw 76px;
  position: relative;
}

.hero::before {
  background: rgba(4, 12, 42, 0.62);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: 76px;
  margin-top: 16px;
  max-width: 760px;
}

.hero p {
  font-size: 21px;
  margin: 22px 0 28px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .button.secondary {
  border-color: var(--white);
  color: var(--white);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  background: var(--white);
  color: var(--navy);
}

.section {
  padding: 84px 6vw;
}

.section.alt {
  background: var(--white);
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

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

.lead {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
}

.lead-copy h2,
.section-heading h2 {
  color: var(--navy);
  font-size: 52px;
  margin: 12px 0 24px;
}

.dark .section-heading h2 {
  color: var(--white);
}

.direct-answer {
  border-left: 4px solid var(--coral);
  color: #343a48;
  font-size: 18px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.lead-copy p {
  margin: 0 0 18px;
}

.feature-image {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.section-heading {
  margin-bottom: 46px;
  max-width: 760px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

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

.ritual-item {
  border-left: 1px solid var(--line);
  padding: 0 30px;
}

.ritual-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.ritual-item:last-child {
  padding-right: 0;
}

.ritual-item .number {
  color: var(--coral);
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 700;
}

.ritual-item h3 {
  color: var(--navy);
  font-size: 24px;
  margin: 10px 0 14px;
}

.menu-layout {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.menu-layout img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.menu-list {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.menu-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 19px 0;
}

.menu-row strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 21px;
}

.menu-row small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-top: 5px;
}

.menu-row .price {
  color: var(--yellow);
  font-weight: 700;
  white-space: nowrap;
}

.note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  margin-top: 18px;
}

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

.audience {
  border-top: 4px solid var(--yellow);
  padding-top: 22px;
}

.audience:nth-child(2) {
  border-color: var(--coral);
}

.audience:nth-child(3) {
  border-color: var(--blue);
}

.audience h3 {
  color: var(--navy);
  font-size: 25px;
  margin-bottom: 13px;
}

.audience p {
  color: var(--muted);
  margin: 0;
}

.info-band {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
}

.info-band img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.facts {
  border-top: 1px solid var(--line);
  margin: 26px 0 30px;
}

.fact {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 140px minmax(0, 1fr);
  padding: 15px 0;
}

.fact strong {
  color: var(--navy);
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq summary {
  color: var(--navy);
  cursor: pointer;
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
  margin: 13px 0 0;
  max-width: 850px;
}

.sister {
  align-items: center;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 34px 6vw;
}

.sister h2 {
  font-size: 38px;
}

.sister p {
  margin: 8px 0 0;
}

.site-footer {
  background: #050f38;
  color: rgba(255, 255, 255, 0.78);
  padding: 38px 6vw;
}

.footer-inner {
  align-items: flex-start;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 5px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--white);
}

.sources {
  color: var(--muted);
  font-size: 13px;
  margin-top: 30px;
}

.sources a {
  color: var(--blue);
}

@media (max-width: 820px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .brand span,
  .site-nav > a:not(.button) {
    display: none;
  }

  .brand img {
    height: 46px;
    width: 46px;
  }

  .hero {
    min-height: 680px;
    padding: 130px 22px 58px;
  }

  h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 18px;
  }

  .lead-copy h2,
  .section-heading h2 {
    font-size: 40px;
  }

  .sister h2 {
    font-size: 32px;
  }

  .section {
    padding: 64px 22px;
  }

  .lead,
  .menu-layout,
  .info-band {
    grid-template-columns: 1fr;
  }

  .feature-image {
    aspect-ratio: 4 / 3;
  }

  .ritual-grid,
  .audiences {
    grid-template-columns: 1fr;
  }

  .ritual-item {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0;
  }

  .ritual-item:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .sister,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 42px;
  }

  .lead-copy h2,
  .section-heading h2 {
    font-size: 34px;
  }

  .sister h2 {
    font-size: 28px;
  }

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

  .fact {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
