:root {
  --ink: #17201d;
  --muted: #60706a;
  --paper: #fffaf1;
  --sand: #f3e5cf;
  --sea: #006b79;
  --sea-dark: #064650;
  --tomato: #c84832;
  --olive: #637a39;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 24px 80px rgba(23, 32, 29, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 250, 241, 0.88);
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: border-color 180ms ease, backdrop-filter 180ms ease, background 180ms ease;
  z-index: 20;
}

.site-header[data-elevated="true"] {
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 170px;
}

.brand-mark {
  align-items: center;
  background: var(--sea-dark);
  color: var(--paper);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 20px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 10px;
}

.nav a {
  border-radius: 999px;
  color: rgba(23, 32, 29, 0.78);
  font-size: 14px;
  padding: 9px 12px;
}

.nav a:hover {
  background: rgba(0, 107, 121, 0.1);
  color: var(--sea-dark);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.lang-toggle,
.icon-link {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  min-width: 40px;
}

.lang-toggle {
  cursor: pointer;
  padding: 0 13px;
}

.icon-link svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.hero {
  min-height: 94svh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-media img,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 28, 26, 0.78), rgba(13, 28, 26, 0.3) 52%, rgba(13, 28, 26, 0.04)),
    linear-gradient(180deg, rgba(13, 28, 26, 0.1), rgba(13, 28, 26, 0.55));
}

.hero-content {
  color: #fff;
  max-width: 780px;
  padding: clamp(130px, 19vh, 210px) clamp(20px, 6vw, 74px) 86px;
  position: relative;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.26);
  z-index: 2;
}

.eyebrow {
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd3a1;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.96;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  margin-bottom: 18px;
}

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

.lead {
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.5;
  max-width: 680px;
}

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

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}

.btn.primary {
  background: var(--tomato);
  color: #fff;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.quick-strip {
  background: var(--sea-dark);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-strip div {
  background: rgba(255, 255, 255, 0.06);
  min-width: 0;
  padding: 22px clamp(18px, 4vw, 44px);
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.quick-strip a,
.quick-strip strong {
  font-size: clamp(16px, 1.8vw, 22px);
}

.band,
.menu-section,
.location-section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 74px);
}

.intro,
.hours,
.contact {
  background: var(--paper);
}

.section-copy {
  max-width: 780px;
}

.section-copy.narrow {
  max-width: 700px;
}

.section-copy p:not(.eyebrow),
.location-panel p,
.menu-grid p,
.intro-grid p,
.hours-card p,
.source-note {
  color: var(--muted);
  line-height: 1.65;
}

.intro-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.intro-grid article,
.menu-grid article,
.hours-card,
.contact-grid a,
.location-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 32, 29, 0.06);
}

.intro-grid article {
  padding: 28px;
}

.intro-grid span {
  color: var(--sea);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 34px;
}

.menu-section {
  background: #f7f1e6;
}

.menu-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 40px;
}

.menu-grid article {
  min-height: 176px;
  padding: 22px;
}

.menu-grid span {
  color: var(--sea-dark);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  margin-bottom: 16px;
}

.hours {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
}

.hours-card {
  padding: 30px;
}

.hours-card span,
.contact-grid span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hours-card strong {
  color: var(--sea-dark);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
}

.hours-card a {
  color: var(--tomato);
  font-weight: 900;
}

.location-section {
  align-items: stretch;
  background: #173c41;
  display: grid;
  gap: 18px;
  grid-template-columns: 0.9fr 1.1fr;
}

.location-panel {
  padding: clamp(28px, 5vw, 52px);
}

.map-visual {
  background: #9ed9dd;
  border-radius: var(--radius);
  min-height: 460px;
  overflow: hidden;
  position: relative;
}

.sea {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 25%, transparent 25%) 0 0 / 52px 52px,
    linear-gradient(135deg, rgba(255, 255, 255, 0.14) 25%, transparent 25%) 26px 26px / 52px 52px,
    linear-gradient(180deg, #5bb7c7, #086b79);
  inset: 0 0 38% 0;
  position: absolute;
}

.promenade {
  background:
    linear-gradient(90deg, rgba(23, 32, 29, 0.08) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, #f4d9aa, #d8b06e);
  bottom: 0;
  height: 48%;
  left: 0;
  position: absolute;
  right: 0;
}

.pin {
  align-items: center;
  background: var(--tomato);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: #fff;
  display: flex;
  font-weight: 900;
  height: 94px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 53%;
  transform: translate(-50%, -50%);
  width: 94px;
}

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

.contact-grid a {
  padding: 26px;
}

.contact-grid strong {
  color: var(--sea-dark);
  font-size: clamp(19px, 2vw, 26px);
  overflow-wrap: anywhere;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 34px clamp(20px, 6vw, 74px) 96px;
}

.footer p {
  margin-bottom: 8px;
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-note {
  color: rgba(255, 255, 255, 0.7);
  max-width: 880px;
}

.mobile-actions {
  background: rgba(255, 250, 241, 0.96);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: none;
  gap: 8px;
  left: 0;
  padding: 10px;
  position: fixed;
  right: 0;
  z-index: 30;
}

.mobile-actions a {
  align-items: center;
  background: var(--sea-dark);
  border-radius: 999px;
  color: #fff;
  display: flex;
  flex: 1;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
}

@media (max-width: 1050px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-content {
    padding: 120px 20px 60px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(13, 28, 26, 0.42), rgba(13, 28, 26, 0.82)),
      linear-gradient(90deg, rgba(13, 28, 26, 0.35), rgba(13, 28, 26, 0.2));
  }

  .quick-strip,
  .intro-grid,
  .hours,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    padding: 18px 20px;
  }

  .band,
  .menu-section,
  .location-section {
    padding: 58px 20px;
  }

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

  .map-visual {
    min-height: 320px;
  }

  .mobile-actions {
    display: flex;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

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

  .header-actions {
    gap: 6px;
  }

  .lang-toggle,
  .icon-link {
    height: 38px;
    min-width: 38px;
  }

  .hero-actions .btn,
  .map-actions .btn {
    width: 100%;
  }
}
