:root {
  --ink: #14212b;
  --muted: #5d6c74;
  --paper: #f7f3ea;
  --surface: #fffaf0;
  --blue: #145f73;
  --blue-dark: #0b3e52;
  --coral: #d86f45;
  --gold: #d9a441;
  --line: rgba(20, 33, 43, 0.14);
  --shadow: 0 20px 60px rgba(9, 37, 49, 0.18);
  --radius: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--blue-dark);
  border-radius: 50%;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

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

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-dark);
  background: rgba(20, 95, 115, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: end;
  max-width: var(--max-width);
  min-height: 74vh;
  margin: 0 auto;
  padding: 76px 24px 64px;
}

.hero::before {
  position: absolute;
  inset: 24px;
  z-index: -1;
  content: "";
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 22%, rgba(216, 111, 69, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(20, 95, 115, 0.18), rgba(217, 164, 65, 0.16) 48%, rgba(255, 250, 240, 0.78)),
    repeating-linear-gradient(150deg, rgba(20, 95, 115, 0.08) 0 2px, transparent 2px 18px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--blue-dark);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--surface);
  border-color: var(--line);
}

.hero-panel {
  padding: 28px;
  color: white;
  background: var(--blue-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.plate {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  margin-bottom: 26px;
  border: 18px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: var(--surface);
}

.plate-line {
  width: 80px;
  height: 10px;
  background: var(--coral);
  border-radius: 999px;
}

.plate-dot {
  position: absolute;
  width: 28px;
  height: 28px;
  margin: 44px 0 0 52px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-panel p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.hero-panel strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.15;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 76px 24px;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

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

.menu-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-card p,
.menu-note {
  color: var(--muted);
}

.menu-card span {
  color: var(--blue-dark);
  font-weight: 900;
}

.menu-note {
  margin: 18px 0 0;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: start;
}

.schedule {
  overflow: hidden;
  background: var(--blue-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.schedule div:last-child {
  border-bottom: 0;
}

.schedule span {
  color: rgba(255, 255, 255, 0.72);
}

.schedule strong {
  text-align: right;
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: start;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(20, 95, 115, 0.22);
  border-color: var(--blue);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.form-status.error {
  color: #9d2f23;
}

.contact-section {
  padding-bottom: 52px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.contact-grid article {
  min-height: 160px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-grid a {
  color: var(--blue-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

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

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .hero,
  .split,
  .reservation-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: 54px;
  }

  .hero-panel {
    max-width: 420px;
  }

  .menu-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .site-header,
  .section,
  .hero,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero::before {
    inset: 14px;
    border-radius: 24px;
  }

  h1 {
    font-size: 4.35rem;
  }

  .menu-grid,
  .contact-grid,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .schedule div {
    display: grid;
    gap: 6px;
  }

  .schedule strong {
    text-align: left;
  }

  .site-footer {
    display: grid;
  }
}
