:root {
  --cream: #fff8ec;
  --paper: #fffdf8;
  --ink: #261a16;
  --muted: #6d625b;
  --line: #eadfce;
  --gold: #dcb85a;
  --berry: #9c2941;
  --sea: #14707d;
  --leaf: #4a7b61;
  --rose: #e98f98;
  --shadow: 0 22px 50px rgba(38, 26, 22, 0.16);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.theme-binic {
  --accent: var(--sea);
  --accent-dark: #0c4e57;
  --accent-soft: #d9f0eb;
}

body.theme-paris {
  --accent: var(--berry);
  --accent-dark: #6d1e32;
  --accent-soft: #f7dfdf;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 35px rgba(38, 26, 22, 0.12);
  padding: 10px 14px;
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  min-width: 150px;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--accent-dark);
}

.brand-mark img {
  width: 94px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
  padding: 5px 10px;
}

.brand-mark span {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  min-height: 42px;
  border-radius: 6px;
  padding: 12px 13px;
  color: #3d2f29;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--accent-soft);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  align-items: end;
  overflow: hidden;
  padding: 124px 24px 9vh;
  color: #fff;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 10, 7, 0.86), rgba(18, 10, 7, 0.42) 48%, rgba(18, 10, 7, 0.18)),
    linear-gradient(0deg, rgba(18, 10, 7, 0.62), rgba(18, 10, 7, 0.08) 55%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-paris {
  object-position: center 52%;
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.8rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.26rem;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #28180e;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-points {
  display: grid;
  max-width: 880px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 42px 0 0;
}

.hero-points div {
  min-height: 92px;
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 16px;
}

.hero-points dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-points dd {
  margin: 8px 0 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.quick-facts {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.fact-grid {
  display: grid;
  width: min(100%, var(--max));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
}

.fact-grid article {
  min-height: 196px;
  border-right: 1px solid var(--line);
  padding: 34px 24px;
}

.fact-grid article:first-child {
  border-left: 1px solid var(--line);
}

.fact-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
}

.fact-grid h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.fact-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 90px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 650px;
}

.section-heading h2,
.story-copy h2,
.visit-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.story-copy > p,
.visit-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.section-heading .eyebrow,
.story-copy .eyebrow,
.visit-section .eyebrow {
  grid-column: 1 / -1;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flavor-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(38, 26, 22, 0.08);
}

.flavor-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.flavor-card div {
  padding: 20px;
}

.flavor-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flavor-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.flavor-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.story-copy > p {
  margin-top: 24px;
}

.award-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.award-line img {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  object-fit: contain;
}

.award-line p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.diploma-card {
  margin-top: 22px;
  border: 1px solid rgba(220, 184, 90, 0.58);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffdf8, #fff4d8);
  box-shadow: 0 14px 30px rgba(38, 26, 22, 0.1);
  padding: 22px;
}

.diploma-card .diploma-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.diploma-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.05;
}

.diploma-card p:not(.diploma-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.diploma-card a {
  display: inline-flex;
  margin-top: 16px;
  border-bottom: 2px solid var(--gold);
  color: var(--accent-dark);
  font-weight: 900;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-mosaic .mosaic-large {
  grid-row: span 2;
}

.paris-mosaic .mosaic-large {
  object-position: center;
}

.reviews-section {
  padding-top: 20px;
}

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

.review-grid article {
  min-height: 176px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px;
}

.review-grid p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.review-grid span {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 800;
}

.visit-section {
  display: grid;
  width: min(100% - 48px, var(--max));
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.62fr);
  gap: 48px;
  align-items: start;
  margin: 0 auto 42px;
  border-radius: var(--radius);
  background: var(--accent-dark);
  color: #fff;
  padding: 58px;
}

.visit-section p {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.visit-section .button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
}

.hours-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.hours-panel h3 {
  margin: 0 0 20px;
  font-size: 1.35rem;
}

.hours-panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-panel li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

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

.hours-panel strong {
  color: #fff;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  width: min(100% - 48px, var(--max));
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 800;
}

.site-footer a {
  color: var(--accent-dark);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-points,
  .fact-grid,
  .flavor-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-heading {
    align-items: start;
  }

  .image-mosaic {
    grid-template-rows: 220px 220px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    top: 12px;
    width: min(calc(100% - 24px), var(--max));
    padding: 10px;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-mark img {
    width: 82px;
    height: 38px;
  }

  .brand-mark span {
    font-size: 0.78rem;
  }

  .site-nav {
    gap: 4px;
    font-size: 0.78rem;
  }

  .site-nav a {
    min-height: 34px;
    padding: 9px 7px;
  }

  .hero {
    align-items: center;
    min-height: 86svh;
    padding: 116px 18px 36px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(18, 10, 7, 0.88), rgba(18, 10, 7, 0.58)),
      linear-gradient(0deg, rgba(18, 10, 7, 0.72), rgba(18, 10, 7, 0.08) 55%);
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions,
  .visit-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-points,
  .fact-grid,
  .flavor-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-points div {
    min-height: 0;
  }

  .fact-grid article,
  .fact-grid article:first-child {
    min-height: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 22px;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 64px 0;
  }

  .section-heading h2,
  .story-copy h2,
  .visit-section h2 {
    font-size: 2.25rem;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 220px 220px;
  }

  .image-mosaic .mosaic-large {
    grid-row: auto;
  }

  .visit-section {
    width: min(100% - 28px, var(--max));
    margin-bottom: 24px;
    padding: 32px 20px;
  }

  .hours-panel {
    padding: 18px;
  }

  .hours-panel li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-footer {
    width: min(100% - 28px, var(--max));
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 0;
  }
}

@media (max-width: 420px) {
  .site-header {
    display: grid;
    gap: 8px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .section-heading h2,
  .story-copy h2,
  .visit-section h2 {
    font-size: 2rem;
  }
}
