:root {
  color-scheme: light;
  --ink: #17231b;
  --muted: #667267;
  --paper: #f6f2e8;
  --surface: #fffdf7;
  --brand-green: #9abb95;
  --deep-green: #1d3024;
  --sage: #668066;
  --clay: #9a4d37;
  --gold: #d8b56e;
  --line: rgba(23, 35, 27, 0.16);
  --line-light: rgba(255, 255, 255, 0.24);
  --radius: 4px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(246, 242, 232, 0.94);
  box-shadow: 0 14px 36px rgba(17, 26, 20, 0.12);
  backdrop-filter: blur(16px);
}

.mobile-nav {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 118px;
  height: 76px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

.site-header.scrolled .brand-logo {
  border-color: transparent;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.7vw, 42px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

.header-action,
.button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-action {
  padding: 0 17px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .header-action {
  color: var(--deep-green);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--deep-green);
}

.hero > picture,
.hero > picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > picture img {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 38%, rgba(154, 187, 149, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(15, 26, 19, 0.86), rgba(15, 26, 19, 0.5)),
    linear-gradient(0deg, rgba(15, 26, 19, 0.6), rgba(15, 26, 19, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 124px 0 92px;
  color: #fff;
  text-align: center;
}

.hero-logo {
  width: clamp(260px, 34vw, 500px);
  height: auto;
  margin: 0 auto 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ead59b;
}

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

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 12.5rem);
  font-weight: 500;
  line-height: 0.82;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 5.7rem);
  font-weight: 500;
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.08;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  padding: 0 20px;
}

.button.primary {
  color: var(--deep-green);
  background: #fff;
}

.button.secondary {
  color: #fff;
  background: transparent;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.quick-info article {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

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

.quick-info svg,
.header-action svg,
.button svg,
.contact-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.menu-marquee {
  overflow: hidden;
  color: #fff;
  background: var(--deep-green);
}

.menu-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.menu-marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3.5vw, 4rem);
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 150px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.intro p:last-child,
.image-story p,
.feature-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(38px, 7vw, 84px) clamp(18px, 5vw, 70px);
  color: #fff;
  background: #253c2d;
}

.image-story img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.image-story .eyebrow,
.feature-copy .eyebrow {
  color: var(--gold);
}

.image-story p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.section-heading h2 {
  margin-bottom: 0;
  max-width: 900px;
}

.menu-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 253, 247, 0.72);
}

.menu-tabs button {
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-tabs button:last-child {
  border-right: 0;
}

.menu-tabs button.active {
  color: #fff;
  background: var(--deep-green);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-card {
  overflow: hidden;
  background: var(--surface);
}

.menu-card[hidden] {
  display: none;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  filter: saturate(0.9);
}

.menu-card div {
  padding: 24px;
}

.menu-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  min-height: 660px;
  background: var(--deep-green);
  color: #fff;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 84px);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.82fr);
  gap: 38px;
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 70px);
  background: #e8efdf;
}

.contact-band h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 1.8vw, 2.15rem);
  white-space: nowrap;
}

.contact-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 0 17px;
  background: rgba(255, 253, 247, 0.78);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-band p a {
  font-weight: 900;
}

.opening-hours {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-socials a {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--deep-green);
  border: 1px solid rgba(29, 48, 36, 0.28);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.72);
}

.contact-socials svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.contact-socials a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--deep-green);
}

.gallery-strip a {
  display: block;
  min-width: 0;
}

.gallery-strip img {
  width: 100%;
  height: clamp(280px, 38vw, 560px);
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.recruitment-section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 70px);
  color: #fff;
  background: #253c2d;
}

.recruitment-intro {
  width: min(960px, 100%);
  margin-bottom: 38px;
}

.recruitment-intro .eyebrow {
  color: var(--gold);
}

.recruitment-intro p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
  line-height: 1.78;
}

.recruitment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.dark {
  color: #fff;
}

.keyword-band {
  padding: 28px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep-green);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.keyword-band p {
  visibility: hidden;
  max-width: 1180px;
  margin: 0 auto;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-transform: lowercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep-green);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 20;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    color: #fff;
    background: rgba(29, 48, 36, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(13, 23, 17, 0.26);
    backdrop-filter: blur(18px);
  }

  .mobile-nav a {
    display: grid;
    gap: 5px;
    place-items: center;
    min-height: 58px;
    padding: 8px 4px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-nav a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-nav svg {
    width: 20px;
    height: 20px;
  }

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

  .quick-info article:nth-child(2) {
    border-right: 0;
  }

  .quick-info article:nth-child(1),
  .quick-info article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .image-story,
  .feature-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

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

  .feature-image img,
  .image-story img {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-logo {
    width: 84px;
    height: 54px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-content {
    width: min(100% - 28px, 900px);
    padding: 112px 0 78px;
  }

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

  .quick-info,
  .menu-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .contact-band h2 {
    white-space: normal;
  }

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

  .quick-info article:last-child {
    border-bottom: 0;
  }

  .menu-tabs {
    overflow-x: auto;
  }

  .menu-tabs button {
    flex: 0 0 auto;
  }

  .menu-marquee span {
    min-height: 70px;
    padding: 0 22px;
  }

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