:root {
  --ink: #18211d;
  --muted: #5f6b62;
  --paper: #fffaf1;
  --sand: #efe1c4;
  --leaf: #164d3b;
  --leaf-2: #246d58;
  --sun: #d5842c;
  --sea: #1d7386;
  --white: #ffffff;
  --line: rgba(24, 33, 29, 0.14);
  --shadow: 0 24px 60px rgba(24, 33, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--leaf);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--sun);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--leaf);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--leaf);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(90px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(46px, 8vw, 92px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after,
.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 24, 18, 0.76), rgba(12, 24, 18, 0.24) 58%, rgba(12, 24, 18, 0.08));
}

.hero-content {
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

h1 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.hero-content p:not(.eyebrow) {
  max-width: 590px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
}

.btn svg,
.icon-link svg,
.text-link svg,
.footer-links svg {
  width: 18px;
  height: 18px;
}

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

.btn-primary:hover {
  background: var(--leaf-2);
}

.btn-light {
  color: var(--leaf);
  background: var(--white);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.quick-info div {
  padding: 24px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span,
.quick-info strong {
  display: block;
}

.quick-info span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.quick-info strong {
  margin-top: 4px;
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

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

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--muted);
  font-weight: 750;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--sea);
}

.photo-stack {
  position: relative;
  min-height: 560px;
}

.photo-stack img,
.menu-grid img,
.showcase-grid img,
.masonry-gallery img,
.gallery-hero img {
  object-fit: cover;
}

.photo-large {
  width: 82%;
  height: 520px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 300px;
  border: 10px solid var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.restaurant-band {
  background: var(--leaf);
  color: var(--white);
}

.restaurant-copy {
  max-width: 850px;
}

.restaurant-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

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

.menu-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.menu-grid img {
  width: 100%;
  height: 270px;
}

.menu-grid h3,
.menu-grid p {
  padding-inline: 20px;
}

.menu-grid h3 {
  margin-top: 20px;
}

.menu-grid p {
  color: rgba(255, 255, 255, 0.74);
  padding-bottom: 22px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--leaf);
  font-weight: 900;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 22px;
}

.showcase-feature,
.video-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(24, 33, 29, 0.08);
}

.showcase-feature video,
.video-grid video,
.video-frame,
.youtube-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d1812;
}

.showcase-feature video,
.video-grid video {
  object-fit: cover;
}

.showcase-feature div,
.video-grid h3 {
  padding: 22px;
}

.showcase-feature p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.showcase-grid img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 8px;
}

.youtube-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 26px;
  align-items: center;
  margin-top: 30px;
  padding: 28px;
  background: var(--sand);
  border-radius: 8px;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.youtube-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.youtube-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 18, 0.1), rgba(16, 24, 18, 0.42));
}

.youtube-card span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: auto;
  color: var(--white);
  background: #d12f2f;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.youtube-card svg {
  width: 30px;
  height: 30px;
  transform: translateX(2px);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.25fr);
  gap: 28px;
  align-items: center;
  background: var(--white);
}

.map-section iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.icon-link {
  color: var(--leaf);
  background: var(--white);
  border-color: var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #101812;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--leaf);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.floating-contact a:last-child {
  background: var(--sun);
}

.gallery-hero {
  position: relative;
  min-height: 54vh;
  display: grid;
  align-items: end;
  padding: clamp(80px, 10vw, 130px) clamp(18px, 5vw, 72px) clamp(38px, 6vw, 70px);
  color: var(--white);
  overflow: hidden;
}

.gallery-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.gallery-hero div {
  max-width: 760px;
}

.gallery-section {
  background: var(--paper);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.masonry-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sand);
}

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

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

.masonry-gallery img {
  width: 100%;
  height: 100%;
  transition: transform 320ms ease;
}

.masonry-gallery figure:hover img {
  transform: scale(1.04);
}

.masonry-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  color: var(--white);
  background: rgba(16, 24, 18, 0.74);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
}

.video-gallery {
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info,
  .split,
  .menu-grid,
  .showcase-layout,
  .youtube-panel,
  .map-section,
  .contact-section,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .photo-stack {
    min-height: auto;
  }

  .photo-large,
  .photo-small {
    position: static;
    width: 100%;
    height: auto;
    max-height: 520px;
  }

  .photo-small {
    margin-top: 16px;
    border: 0;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 580px) {
  .hero {
    min-height: 86vh;
  }

  .hero-actions .btn,
  .contact-actions .icon-link,
  .contact-form .btn {
    width: 100%;
  }

  .showcase-grid,
  .masonry-gallery {
    grid-template-columns: 1fr;
  }

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

  .masonry-gallery img {
    aspect-ratio: 4 / 3;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }

  .floating-contact a {
    width: 48px;
    height: 48px;
  }
}
