:root {
  --paper: #f7efe2;
  --surface: #fffaf0;
  --ink: #201914;
  --muted: #6d5e4f;
  --green: #183b2b;
  --green-deep: #0f261c;
  --coffee: #7b4b2f;
  --gold: #d99a2b;
  --coral: #dd6849;
  --sky: #8fc5da;
  --sage: #c8d8bd;
  --line: #ded2bd;
  --shadow: 0 20px 60px rgba(48, 34, 20, 0.13);
  --radius: 20px;
  --container: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--green);
  color: var(--surface);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.concept-bar {
  background: var(--green-deep);
  color: var(--surface);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 0.55rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 239, 226, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.nav-phone {
  text-decoration: none;
}

.nav-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--green);
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.25rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -6rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(24, 59, 43, 0.22);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow,
.card-label,
.menu-card-top,
.owner-cta span {
  margin: 0;
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-top: 0.7rem;
  font-size: clamp(3.2rem, 8vw, 5.9rem);
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.hero-lead {
  max-width: 58ch;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions,
.story-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  background: var(--green);
  color: var(--surface);
}

.button-secondary {
  background: var(--gold);
  color: var(--ink);
}

.button-ghost {
  border: 1px solid var(--green);
  color: var(--green);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
}

.hero-facts div {
  border-top: 2px solid var(--line);
  padding-top: 0.9rem;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.25rem 0 0;
  font-weight: 850;
}

.hero-media {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.flight-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 260px;
  border-radius: 18px;
  background: var(--surface);
  padding: 1rem;
  box-shadow: 0 12px 34px rgba(23, 16, 10, 0.18);
}

.flight-card span {
  color: var(--coffee);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flight-card strong {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.12;
}

.visit-strip {
  padding: 2rem 0 4rem;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.section-kicker h2 {
  font-size: 1.25rem;
  font-family: var(--sans);
}

.route-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 1.4rem 0 0 var(--gold), 2.8rem 0 0 var(--sky);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.visit-grid article {
  min-height: 168px;
  padding: 1.25rem;
}

.visit-grid article + article {
  border-left: 1px solid var(--line);
}

.visit-grid p {
  margin: 0.65rem 0 0;
  font-weight: 750;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
}

.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head.compact {
  max-width: 860px;
  display: block;
}

.section-head.compact h2 {
  margin-top: 0.4rem;
}

.section-head.compact p:not(.eyebrow) {
  margin-top: 0.8rem;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  min-height: 290px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.35rem;
}

.menu-card.featured {
  grid-column: span 3;
  background: var(--green);
  color: var(--surface);
}

.menu-card.blue {
  grid-column: span 3;
  background: var(--sky);
}

.menu-card.coral {
  background: var(--coral);
  color: var(--surface);
}

.menu-card.dark {
  background: var(--ink);
  color: var(--surface);
}

.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
}

.gate {
  display: inline-flex;
  min-width: 2.4rem;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-card h3 {
  margin-top: 1.25rem;
}

.menu-card p {
  margin: 0.8rem 0 1.3rem;
  color: inherit;
}

.menu-card a {
  margin-top: auto;
  font-weight: 900;
}

.story-section {
  background: var(--green);
  color: var(--surface);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story-copy .eyebrow,
.story-copy h2,
.story-copy p {
  color: var(--surface);
}

.story-copy p {
  max-width: 62ch;
  color: rgba(255, 250, 240, 0.86);
  font-size: 1.08rem;
}

.story-media {
  position: relative;
  min-height: 440px;
}

.story-photo {
  width: 82%;
  height: 440px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.logo-tile {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: 46%;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 1.2rem;
}

.proof-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding-left: 1.8rem;
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr) auto;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
}

.contact-panel p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

address {
  display: grid;
  gap: 0.2rem;
  font-style: normal;
}

address a {
  font-weight: 850;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--green-deep);
  color: var(--surface);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.45fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  color: var(--surface);
}

.footer-brand img {
  filter: brightness(1.1);
}

.site-footer p {
  max-width: 54ch;
  color: rgba(255, 250, 240, 0.78);
}

.site-footer nav {
  display: grid;
  gap: 0.5rem;
}

.owner-cta {
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 18px;
  padding: 1rem;
}

@media (max-width: 980px) {
  .nav-wrap {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .nav-toggle-lines {
    position: relative;
  }

  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-lines::before {
    top: -7px;
  }

  .nav-toggle-lines::after {
    top: 7px;
  }

  .site-nav {
    position: fixed;
    inset: 123px 1rem auto;
    display: none;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-phone {
    display: none;
  }

  .hero-grid,
  .story-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

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

  .visit-grid article:nth-child(3) {
    border-left: 0;
  }

  .visit-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-head {
    display: block;
  }

  .section-head h2 {
    margin: 0.35rem 0 0.8rem;
  }

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

  .menu-card,
  .menu-card.featured,
  .menu-card.blue {
    grid-column: span 1;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .concept-bar {
    font-size: 0.74rem;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 2.8rem;
  }

  h1 {
    max-width: 100%;
    font-size: 3.25rem;
  }

  .hero-actions,
  .story-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .visit-grid,
  .menu-board,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .flight-card {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
  }

  .visit-grid article,
  .visit-grid article + article,
  .visit-grid article:nth-child(3) {
    border-left: 0;
  }

  .visit-grid article + article {
    border-top: 1px solid var(--line);
  }

  .menu-card {
    min-height: auto;
  }

  .story-photo,
  .logo-tile {
    width: 100%;
  }

  .story-photo {
    height: 330px;
  }

  .logo-tile {
    position: relative;
    bottom: auto;
    margin-top: 1rem;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
