:root {
  --cream: #fbf5ea;
  --beige: #f1e4cd;
  --beige-deep: #e2cda3;
  --terracotta: #bf5b34;
  --terracotta-dark: #8f4324;
  --terracotta-light: #e2a877;
  --ink: #2b2018;
  --ink-deep: #1c130c;
  --ink-soft: #5c4c3c;
  --ink-faint: #8a7a67;
  --line: rgba(43, 32, 24, 0.12);
  --white: #fffdf8;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Jost", "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1180px;
  --nav-height: 84px;
  --radius: 2px;
  --shadow-soft: 0 18px 40px -22px rgba(43, 32, 24, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--terracotta);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-outline.on-dark {
  color: var(--cream);
  border-color: rgba(251, 245, 234, 0.6);
}

.btn-outline.on-dark:hover {
  background: var(--cream);
  color: var(--ink);
}

.coord-masquee {
  display: inline-block;
}

.bouton-reveler {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
}

.bouton-reveler:hover {
  color: var(--terracotta);
}

.info-band .bouton-reveler:hover,
.on-dark .bouton-reveler:hover {
  color: var(--terracotta-light);
}

.bouton-reveler__icone {
  display: inline-block;
  flex-shrink: 0;
  width: 0.85em;
  height: 0.85em;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.bouton-reveler__icone::before {
  content: "";
  display: block;
  width: 36%;
  height: 36%;
  margin: 24% auto 0;
  background: currentColor;
  border-radius: 1px;
}

.bouton-reveler.btn {
  text-decoration: none;
}

.bouton-reveler.btn .bouton-reveler__icone {
  border-color: currentColor;
}

.topbar {
  background: var(--ink);
  color: var(--beige);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.topbar a {
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: var(--terracotta-light);
}

.topbar-hours {
  color: var(--beige-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  flex-shrink: 0;

  align-self: flex-start;
}

.logo-img {

  height: 148px;
  width: 148px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--cream);
  box-shadow: 0 10px 24px -6px rgba(43, 32, 24, 0.45);
  position: relative;
  z-index: 5;
  margin-top: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-menu a {
  position: relative;
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--ink);
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  width: 100%;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.25s ease;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background: linear-gradient(160deg, var(--terracotta-dark), var(--ink) 70%);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide .placeholder-art {
  position: absolute;
  inset: 0;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media img,
.dish-media img,
.team-photo img,
.bio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mascot-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 14, 9, 0.82) 0%, rgba(20, 14, 9, 0.28) 46%, rgba(20, 14, 9, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 28px 88px;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero .eyebrow {
  color: var(--terracotta-light);
  justify-content: center;
}

.hero .eyebrow::before {
  display: none;
}

.hero h1 {
  color: var(--white);
  max-width: none;
}

.hero-lede {
  color: rgba(251, 245, 234, 0.86);
  max-width: none;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(251, 245, 234, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.hero-dots button.is-active {
  background: var(--terracotta-light);
  border-color: var(--terracotta-light);
}

.placeholder-art {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 26px),
    linear-gradient(150deg, var(--beige-deep), var(--terracotta) 130%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 253, 248, 0.85);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

.placeholder-art span {
  background: rgba(43, 32, 24, 0.35);
  padding: 10px 16px;
  border: 1px solid rgba(255, 253, 248, 0.4);
  border-radius: var(--radius);
}

.placeholder-art.tone-light {
  background:
    repeating-linear-gradient(135deg, rgba(43, 32, 24, 0.05) 0 2px, transparent 2px 26px),
    linear-gradient(150deg, var(--beige), var(--beige-deep) 140%);
  color: var(--ink-soft);
}

.placeholder-art.tone-light span {
  background: rgba(255, 253, 248, 0.55);
  border-color: rgba(43, 32, 24, 0.18);
  color: var(--ink);
}

section {
  padding: 108px 0;
}

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

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split-media.wide {
  aspect-ratio: 5 / 4;
}

.split-body h3 {
  color: var(--terracotta-dark);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: var(--radius);
}

.value-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 14px;
}

.dish-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.dish-row:first-of-type {
  padding-top: 0;
}

.dish-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.dish-row.reverse {
  direction: rtl;
}

.dish-row.reverse > * {
  direction: ltr;
}

.dish-media {
  aspect-ratio: 6 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}

.dish-media.tall {
  aspect-ratio: 4 / 5;
}

.dish-tag {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.info-band {
  background: var(--ink);
  color: var(--beige);
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 0;
}

.info-band .eyebrow {
  color: var(--terracotta-light);
}

.info-band .eyebrow::before {
  background: var(--terracotta-light);
}

.info-band h2 {
  color: var(--white);
}

.info-band-photo {
  position: relative;
  min-height: 640px;
  align-self: stretch;
  clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
}

.info-band-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-band-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 32, 24, 0.1), rgba(43, 32, 24, 0.5));
}

.info-band-content {
  padding: 250px 48px 120px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-band-content .section-head {
  max-width: none;
  margin-bottom: 0;
}

.info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  margin-top: 44px;
}

.info-block {
  padding: 26px 0;
  border-top: 1px solid rgba(251, 245, 234, 0.14);
}

.info-block:first-child {
  padding-top: 0;
  border-top: none;
}

.info-block h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.hours-table td:first-child {
  color: var(--ink-soft);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--ink);
  font-weight: 500;
}

.hours-table tr.closed td:last-child {
  color: var(--terracotta-dark);
  font-weight: 600;
}

.info-band .hours-table td {
  border-bottom-color: rgba(251, 245, 234, 0.12);
}

.info-band .hours-table td:first-child {
  color: var(--beige-deep);
}

.info-band .hours-table td:last-child {
  color: var(--white);
}

.info-band .hours-table tr.closed td:last-child {
  color: var(--terracotta-light);
}

.info-band address,
.info-band p {
  color: var(--beige-deep);
  font-style: normal;
}

.info-band a.contact-link {
  color: var(--white);
  border-bottom: 1px solid rgba(251, 245, 234, 0.3);
  transition: border-color 0.2s ease;
}

.social-links .social-sep {
  display: inline-block;
  margin: 0 16px;
  color: var(--beige-deep);
}

.info-band a.contact-link:hover {
  border-color: var(--terracotta-light);
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  max-width: 220px;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.team-photo img {
  transition: transform 0.45s ease;
}

.team-photo:hover img {
  transform: scale(1.12);
}

.team-photo:hover {
  box-shadow: 0 22px 46px -20px rgba(43, 32, 24, 0.45);
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
}

.bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.bio:last-of-type {
  border-bottom: none;
}

.bio.reverse .bio-media {
  order: 2;
}

.bio-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 30px);
}

.bio-body h2 {
  margin-bottom: 2px;
}

.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--terracotta-dark);
  margin-top: 24px;
}

.mascot {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.mascot-media {
  border-radius: var(--radius);
  overflow: hidden;
}

.lecteur-ecran {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
}

.legal-page section {
  padding: 0 0 40px;
}

.legal-page h2 {
  font-size: 1.4rem;
  color: var(--terracotta-dark);
  margin-bottom: 14px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 22px;
}

.legal-page li {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.quote-block {
  border-left: 2px solid var(--terracotta);
  padding-left: 34px;
  margin: 0 0 1.4em;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.5;
}

.closing-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--terracotta-dark);
  text-align: center;
  margin: 20px 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-block {
  margin-bottom: 34px;
}

.contact-block h4 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 12px;
}

.contact-block address {
  font-style: normal;
}

.contact-photo {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.legal-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--ink-faint);
}

.site-footer {
  background: var(--ink-deep);
  color: var(--beige-deep);
  padding: 70px 0 26px;
}

.site-footer p {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr 1.6fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(251, 245, 234, 0.12);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-grid ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.footer-grid a {
  color: var(--beige-deep);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--terracotta-light);
}

.footer-seo p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--beige-deep);
}

.footer-seo-box {
  max-height: 130px;
  overflow-y: auto;
  padding-right: 12px;
}

.footer-seo-box::-webkit-scrollbar {
  width: 6px;
}

.footer-seo-box::-webkit-scrollbar-track {
  background: rgba(251, 245, 234, 0.08);
}

.footer-seo-box::-webkit-scrollbar-thumb {
  background: rgba(251, 245, 234, 0.35);
  border-radius: 3px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-top: 24px;
  font-size: 0.88rem;
  color: var(--beige-deep);
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.footer-credit a:hover {
  color: var(--terracotta-light);
  text-decoration: underline;
}

.footer-credit-logo {

  display: inline-block;
  height: 16px;
  width: auto;
  vertical-align: middle;
  margin: 0 3px 2px;
}

.footer-legal-links a {
  color: inherit;
}

.footer-legal-links a:hover {
  color: var(--terracotta-light);
}

.social-row {
  display: flex;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  padding: 156px 0 90px;
  background: var(--beige);
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero .eyebrow::before {
  display: none;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
}

.page-hero--cuisine h1 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  white-space: nowrap;
}

.page-hero--cuisine p {
  max-width: none;
}

.cuisine-cta {
  background: #f1e4cd;
}

.scroll-top-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.25s ease;
  z-index: 500;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--terracotta-dark);
}

.contact-form-section {
  background: var(--beige);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-row label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.contact-form .btn {
  align-self: flex-start;
}

.contact-form .form-note {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .split,
  .contact-grid,
  .grid-2,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3,
  .team-strip,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-band {
    grid-template-columns: 1fr;
  }

  .info-band-photo {
    min-height: 320px;
    clip-path: none;
  }

  .info-band-content {
    padding: 56px 24px;
  }

  .info-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dish-row,
  .dish-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .bio-media {
    position: static;
    max-width: 380px;
  }

  .mascot {
    grid-template-columns: 1fr;
    padding: 36px;
  }

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

@media (max-width: 760px) {
  section {
    padding: 76px 0;
  }

  .page-hero--cuisine h1 {
    white-space: normal;
    font-size: clamp(1.7rem, 6vw, 2.1rem);
  }

  .topbar {
    display: none;
  }

  .logo-img {
    height: 84px;
    width: 84px;
    border-width: 3px;
  }

  .nav-menu {
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    z-index: 100;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px 28px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-3,
  .team-strip,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mascot {
    padding: 28px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding-bottom: 64px;
  }
}
