:root {
  --teal: #0f8f8c;
  --deep-teal: #006d6a;
  --light-teal: #bfe8e5;
  --cream: #f7efe3;
  --gold: #c9a24a;
  --ink: #2b2b2b;
  --muted: #665f58;
  --white: #fffdf8;
  --line: rgba(43, 43, 43, 0.14);
  --shadow: 0 22px 50px rgba(23, 44, 43, 0.16);
}

* {
  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;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-teal);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-family: Georgia, serif;
}

.header-actions,
.hero-actions,
.inline-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.text-link {
  color: var(--deep-teal);
  font-weight: 750;
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep-teal);
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--deep-teal);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 109, 106, 0.18);
}

.button:hover,
.button:focus-visible {
  background: #005755;
  border-color: #005755;
}

.button-secondary {
  background: var(--gold);
  border-color: var(--gold);
  color: #251d0d;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #b38e37;
  border-color: #b38e37;
}

.button-outline {
  background: transparent;
  color: var(--deep-teal);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--light-teal);
  color: var(--deep-teal);
}

.button-outline.light {
  border-color: white;
  color: white;
}

.button-outline.light:hover,
.button-outline.light:focus-visible {
  background: white;
  color: var(--deep-teal);
}

.button-small {
  min-height: 40px;
  padding: 8px 14px;
}

.hero {
  display: grid;
  min-height: calc(100svh - 70px);
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 76px) 34px;
  background:
    linear-gradient(110deg, rgba(247, 239, 227, 0.98) 0%, rgba(247, 239, 227, 0.92) 50%, rgba(191, 232, 229, 0.4) 100%);
}

.hero-copy {
  max-width: 760px;
}

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

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: #183b3a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6.25vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin: 0;
  color: #183b3a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: #183b3a;
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 26px;
  color: #423d38;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.local-note {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(720px, 78svh);
  object-fit: cover;
}

.location-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  gap: 22px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: -10px auto 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

address {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.location-details p {
  margin: 6px 0;
}

.section,
.story-band,
.visit-section,
.trust-section,
.final-cta {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-grid article {
  min-height: 150px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.story-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
  background: #fff8eb;
  border-block: 1px solid var(--line);
}

.story-copy {
  max-width: 760px;
  color: #3e3934;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.story-copy p:first-child {
  margin-top: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
  max-width: 1220px;
  margin: 0 auto;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.photo-grid img:nth-child(1),
.photo-grid img:nth-child(4),
.photo-grid img:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-grid img:nth-child(2),
.photo-grid img:nth-child(3),
.photo-grid img:nth-child(5),
.photo-grid img:nth-child(6),
.photo-grid img:nth-child(7),
.photo-grid img:nth-child(9) {
  grid-column: span 2;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.map-card {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 109, 106, 0.72), rgba(0, 109, 106, 0.72)),
    url("assets/images/shrimp-salad.jpg") center / cover;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  padding: 22px;
}

.map-pin {
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--white);
  color: var(--deep-teal);
  font-weight: 900;
  text-align: center;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.info-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--deep-teal);
  font-weight: 900;
}

dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.trust-section {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.trust-section p:last-child {
  color: var(--muted);
  font-size: 1.18rem;
}

.final-cta {
  background: var(--deep-teal);
  color: white;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta h2 {
  color: white;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px auto 26px;
  font-size: 1.15rem;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 76px);
  background: #173d3b;
  color: white;
}

.site-footer p {
  margin: 0;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .hero,
  .location-panel,
  .story-band,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    height: 440px;
  }

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

  .location-actions {
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    position: static;
  }

  .header-actions .text-link,
  .header-actions .button-outline {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .inline-actions,
  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .location-panel {
    width: calc(100% - 24px);
    padding: 20px;
  }

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

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .photo-grid img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .photo-grid img:nth-child(2),
  .photo-grid img:nth-child(8) {
    grid-column: span 2;
  }

  .map-card {
    min-height: 300px;
  }

  .site-footer {
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px;
    background: rgba(255, 253, 248, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 28px rgba(23, 44, 43, 0.18);
  }

  .mobile-sticky-cta a {
    display: grid;
    min-height: 52px;
    place-items: center;
    border-radius: 8px;
    background: var(--deep-teal);
    color: white;
    font-weight: 900;
    text-decoration: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.55rem;
  }

  .brand span:last-child {
    display: none;
  }
}
