:root {
  --cream: #fdf1e3;
  --cream-soft: #f7f5f0;
  --ink: #120f0e;
  --ink-soft: #2a2523;
  --muted: #6e665f;
  --terracotta: #cb6e32;
  --terracotta-deep: #9f6036;
  --gold: #f4c06a;
  --forest: #0f241c;
  --maison-blue: #106ca8;
  --maison-blue-deep: #0a2239;
  --maison-blue-soft: rgba(16, 108, 168, 0.12);
  --line: rgba(18, 15, 14, 0.12);
  --white: #ffffff;
  --success: #2f7a53;
  --error: #9f3d2a;
  --shadow: 0 24px 80px rgba(18, 15, 14, 0.12);
  --shadow-soft: 0 18px 36px rgba(18, 15, 14, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 88% 18%, rgba(16, 108, 168, 0.1), transparent 24%),
    radial-gradient(circle at top left, rgba(244, 192, 106, 0.22), transparent 32%),
    radial-gradient(circle at 100% 15%, rgba(203, 110, 50, 0.16), transparent 28%),
    linear-gradient(180deg, #fbf7f2 0%, #f5ebe0 52%, #f8f4ef 100%);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--forest) 0%, var(--maison-blue-deep) 58%, #1c567f 100%);
}

.topbar p,
.topbar a {
  margin: 0;
  font-size: 0.92rem;
}

.topbar a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(247, 245, 240, 0.82);
  border-bottom: 1px solid rgba(18, 15, 14, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: min(100%, 470px);
}

.brand-emblem {
  flex: 0 0 auto;
  width: 74px;
}

.brand-emblem svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(18, 15, 14, 0.08));
}

.brand-wordmark {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  display: grid;
  color: #35543c;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.72rem, 2.4vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.86;
}

.brand-role,
.brand-tagline {
  color: var(--forest);
  text-transform: uppercase;
}

.brand-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 3px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--maison-blue);
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(16, 108, 168, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.language-button {
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--maison-blue-deep);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--maison-blue) 0%, var(--maison-blue-deep) 100%);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 64px 0 56px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}

.hero::before {
  top: -120px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: rgba(221, 183, 141, 0.3);
}

.hero::after {
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  background: rgba(195, 124, 77, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.card-label,
.text-card-kicker {
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--maison-blue);
}

.hero h1,
.section-heading h2,
.experience-column h2,
.chef-copy h2,
.booking-aside h2 {
  margin: 14px 0 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--terracotta-deep);
}

.lead,
.section-copy,
.chef-copy p,
.booking-aside p,
.faq-card p,
.timeline p,
.feature-list li,
.menu-note {
  color: var(--ink-soft);
  line-height: 1.7;
}

.lead {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 68%, #8a512f 100%);
  box-shadow: 0 18px 32px rgba(159, 96, 54, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 40px rgba(159, 96, 54, 0.32);
}

.button-secondary {
  border: 1px solid rgba(16, 108, 168, 0.18);
  background: rgba(255, 255, 255, 0.54);
}

.button-block {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics article,
.signal-grid article,
.faq-card,
.selection-summary,
.mail-flow,
.menu-card,
.feature-panel,
.service-shot,
.gallery-card,
.booking-form,
.hero-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-metrics article {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-metrics strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-quote {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--maison-blue);
  background: linear-gradient(90deg, rgba(16, 108, 168, 0.06), rgba(255, 255, 255, 0.4));
}

.hero-quote p {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 1.6rem;
  line-height: 1.05;
}

.hero-quote span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: stretch;
}

.hero-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: var(--radius-xl);
}

.hero-card-main {
  min-height: 100%;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center top;
}

.hero-side-column {
  display: grid;
  gap: 18px;
}

.hero-card-rome,
.hero-card-signature {
  display: flex;
  flex-direction: column;
}

.hero-card-rome img,
.hero-card-signature img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-card-rome div,
.hero-card-signature div {
  padding: 16px 18px 18px;
}

.hero-card-rome p,
.hero-card-signature p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.signal-strip {
  padding: 0 0 24px;
}

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

.signal-grid article {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 20px;
}

.signal-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--maison-blue);
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  line-height: 0.8;
}

.signal-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 880px;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.section-copy {
  margin-top: 18px;
  font-size: 1.03rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: clip;
}

.menu-card-featured {
  grid-column: 1 / -1;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--terracotta) 0%, rgba(244, 192, 106, 0.8) 48%, rgba(16, 108, 168, 0.44) 100%);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.menu-card h3 {
  margin: 10px 0 0;
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  line-height: 0.94;
}

.menu-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--maison-blue-deep);
  background: var(--maison-blue-soft);
  font-size: 0.82rem;
}

.menu-price {
  text-align: right;
}

.menu-price strong {
  display: block;
  font-size: 2rem;
  line-height: 0.95;
}

.menu-price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-description {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.course-list {
  display: grid;
  gap: 14px;
}

.course-list article {
  padding-top: 14px;
  border-top: 1px solid rgba(18, 15, 14, 0.08);
}

.course-list h4 {
  margin: 0 0 8px;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maison-blue);
}

.course-list ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.menu-card-footer small {
  color: var(--muted);
  line-height: 1.4;
}

.menu-select-button {
  min-width: 178px;
}

.menu-note {
  margin: 28px 0 0;
  text-align: center;
}

.experience-grid,
.chef-grid,
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.experience-column h2,
.chef-copy h2,
.booking-aside h2 {
  font-size: clamp(2.4rem, 4vw, 3.9rem);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.timeline article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: var(--maison-blue-deep);
  background: rgba(16, 108, 168, 0.1);
  font-family: "Instrument Serif", serif;
  font-size: 1.6rem;
}

.timeline h3,
.faq-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

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

.feature-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(16, 108, 168, 0.05) 100%);
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.feature-list li + li {
  margin-top: 10px;
}

.service-shot {
  margin: 24px 0 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-shot img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  background: rgba(253, 241, 227, 0.9);
}

.service-shot figcaption {
  padding: 16px 18px 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.chef-copy {
  padding-right: 18px;
}

.chef-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.chef-tags span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 108, 168, 0.08);
  color: var(--ink-soft);
}

.chef-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 24px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.gallery-card-wide {
  grid-column: 1 / -1;
  min-height: 280px;
}

.text-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 247, 252, 0.96) 46%, rgba(248, 240, 230, 0.94) 100%);
}

.text-card strong {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.45rem, 1.8vw, 1.85rem);
  line-height: 1.08;
  color: var(--maison-blue-deep);
}

.text-card span {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.text-card-kicker {
  color: var(--terracotta-deep);
}

.booking-aside {
  position: sticky;
  top: 108px;
}

.selection-summary,
.booking-notes {
  padding: 24px;
  border-radius: 24px;
  margin-top: 24px;
}

.selection-summary h3 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.selection-summary p,
.selection-summary li,
.booking-notes li {
  color: var(--ink-soft);
  line-height: 1.6;
}

.selection-summary ul,
.booking-notes ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.summary-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.summary-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(18, 15, 14, 0.08);
}

.summary-meta div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.booking-notes strong {
  display: block;
  font-size: 1rem;
}

.booking-form {
  padding: 28px;
  border-radius: 28px;
}

.form-row {
  display: grid;
  gap: 10px;
}

.form-row + .form-row,
.form-split + .form-row,
.form-row + .form-split,
.checkbox-row,
.button-block,
.form-status {
  margin-top: 20px;
}

.form-row label,
.checkbox-row span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 15, 14, 0.12);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(195, 124, 77, 0.65);
  box-shadow: 0 0 0 4px rgba(195, 124, 77, 0.14);
  background: var(--white);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.faq-card {
  padding: 24px;
  border-radius: 22px;
}

.site-footer {
  padding: 28px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 15, 14, 0.1);
}

.footer-grid strong,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
}

.footer-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.reveal {
  animation: fade-up 620ms ease both;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .experience-grid,
  .chef-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .booking-aside {
    position: static;
  }

  .brand-tagline {
    display: none;
  }
}

@media (max-width: 920px) {
  .topbar,
  .nav-shell,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero-metrics,
  .signal-grid,
  .menu-grid,
  .form-split,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-side-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card-main img {
    min-height: 520px;
  }

  .section {
    padding: 72px 0;
  }

  .chef-gallery {
    grid-template-columns: 1fr;
  }

  .menu-card-header,
  .menu-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-card-featured {
    grid-column: auto;
  }

  .menu-price {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 12px 16px;
  }

  .topbar p,
  .topbar a {
    font-size: 0.84rem;
  }

  .container {
    width: min(100vw - 28px, 1180px);
  }

  .brand {
    gap: 10px;
  }

  .language-switcher {
    width: 100%;
    justify-content: flex-start;
  }

  .brand-emblem {
    width: 54px;
  }

  .brand-name {
    font-size: 1.24rem;
  }

  .brand-role {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .hero h1,
  .section-heading h2,
  .experience-column h2,
  .chef-copy h2,
  .booking-aside h2 {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
  }

  .hero-side-column {
    grid-template-columns: 1fr;
  }

  .hero-card-main img {
    min-height: 400px;
  }

  .hero-card-rome img {
    height: 132px;
  }

  .booking-form,
  .menu-card,
  .selection-summary,
  .booking-notes,
  .feature-panel,
  .faq-card {
    padding: 22px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline span {
    width: 54px;
    height: 54px;
  }
}
