:root {
  --charcoal: #171817;
  --ink: #24211d;
  --paper: #fff8ed;
  --cream: #f5e6cf;
  --tomato: #c9442e;
  --leaf: #3f6f46;
  --mustard: #e2aa3d;
  --line: rgba(36, 33, 29, 0.16);
  --shadow: 0 24px 70px rgba(16, 16, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px clamp(14px, 3vw, 28px);
  color: #fff;
  background: rgba(16, 17, 16, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

.brand-logo {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  padding: 4px 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.nav {
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-carousel,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 30s infinite;
}

.slide-1 {
  animation-delay: 0s;
}

.slide-2 {
  animation-delay: 5s;
}

.slide-3 {
  animation-delay: 10s;
}

.slide-4 {
  animation-delay: 15s;
}

.slide-5 {
  animation-delay: 20s;
}

.slide-6 {
  animation-delay: 25s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  16% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .slide-1 {
    opacity: 1;
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 90px);
  padding-top: 74px;
}

.hero-logo {
  display: block;
  width: clamp(150px, 18vw, 230px);
  margin-bottom: 22px;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--mustard);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Archivo", system-ui, sans-serif;
  line-height: 1;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 12vw, 8.4rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
}

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

.hero-copy {
  max-width: 580px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.contact-band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 800;
}

.button.primary {
  color: #171817;
  background: var(--mustard);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.historia-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: #fff;
}

.story-copy p,
.local-panel p {
  font-size: 1.08rem;
  line-height: 1.7;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

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

.services-list {
  display: grid;
  gap: 14px;
}

.service-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 16, 16, 0.08);
}

.service-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.service-item summary::after {
  content: "+";
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--tomato);
  font-size: 1.4rem;
  font-weight: 800;
}

.service-item[open] summary::after {
  content: "-";
}

.service-item summary span {
  color: var(--tomato);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.service-item summary strong {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 24px;
}

.service-detail img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream);
}

.service-detail p {
  color: rgba(36, 33, 29, 0.72);
  line-height: 1.6;
}

.service-detail p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.party-options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.party-option {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.party-option summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  padding: 14px 16px;
  list-style: none;
}

.party-option summary::-webkit-details-marker {
  display: none;
}

.party-option summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
  font-weight: 800;
}

.party-option[open] summary::after {
  content: "-";
}

.party-option summary span {
  color: var(--ink);
  font-weight: 800;
}

.party-option ul {
  margin: 0;
  padding: 0 16px 16px 34px;
}

.party-option li {
  color: rgba(36, 33, 29, 0.72);
  line-height: 1.55;
}

.party-option li + li {
  margin-top: 8px;
}

.events-section {
  background: #fff;
}

.training-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  color: #fff;
  background: var(--charcoal);
}

.training-media {
  overflow: hidden;
  border-radius: 8px;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.08);
}

.training-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.training-content > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.training-detail {
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.training-detail summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
}

.training-detail summary::-webkit-details-marker {
  display: none;
}

.training-detail summary::after {
  content: "+";
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--mustard);
  font-size: 1.4rem;
  font-weight: 800;
}

.training-detail[open] summary::after {
  content: "-";
}

.training-detail summary span {
  color: var(--mustard);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.training-detail summary strong {
  display: block;
  margin-top: 6px;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.training-detail-body {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 24px 24px;
}

.training-detail-body p,
.training-detail li,
.training-price small {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.training-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.training-lists h3 {
  font-size: 1.25rem;
}

.training-lists ul {
  margin: 0;
  padding-left: 20px;
}

.training-lists li + li {
  margin-top: 8px;
}

.training-price {
  margin-top: 24px;
  border-left: 4px solid var(--mustard);
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.18);
}

.training-price span,
.training-price small {
  display: block;
}

.training-price span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.training-price strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mustard);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.events-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.events-heading p:not(.section-kicker) {
  color: rgba(36, 33, 29, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.events-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.event-video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.event-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #111;
}

.event-video-copy {
  min-height: 210px;
  padding: 22px;
}

.event-video-copy span,
.events-booking span {
  display: block;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-video-copy h3 {
  margin: 0 0 12px;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.event-video-copy p {
  margin: 0;
  color: rgba(36, 33, 29, 0.72);
  line-height: 1.6;
}

.events-booking {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 34px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.events-booking strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.menu-section {
  background: var(--cream);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p:not(.section-kicker) {
  color: rgba(36, 33, 29, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.box-lunch {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(23, 24, 23, 0.18);
  border-radius: 8px;
  padding: 24px;
  color: #fff;
  background: var(--charcoal);
}

.box-lunch span {
  display: block;
  margin-bottom: 8px;
  color: var(--mustard);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.box-lunch strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.box-lunch p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.salads-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(420px, 1.45fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: stretch;
  margin-bottom: 36px;
  border-top: 1px solid rgba(63, 111, 70, 0.26);
  border-bottom: 1px solid rgba(63, 111, 70, 0.26);
  padding: 34px 0;
}

.salads-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.salads-feature span {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.salads-feature h3 {
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.salads-feature p {
  margin: 0 0 24px;
  color: rgba(36, 33, 29, 0.72);
  line-height: 1.65;
}

.salads-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  gap: 14px;
  height: clamp(340px, 34vw, 520px);
}

.salads-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.salad-photo-wide {
  object-position: center;
}

.salad-photo-tall {
  object-position: center 42%;
}

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

.menu-item {
  display: flex;
  min-height: 245px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.menu-item > div,
.menu-item > strong {
  margin-right: 24px;
  margin-left: 24px;
}

.menu-item > div {
  margin-top: 24px;
}

.menu-item > strong {
  margin-bottom: 24px;
}

.menu-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: var(--cream);
}

.featured-menu-item {
  border-color: rgba(201, 68, 46, 0.42);
  background: #fffdf8;
}

.menu-item p {
  color: rgba(36, 33, 29, 0.72);
  line-height: 1.6;
}

.menu-item strong {
  color: var(--tomato);
  font-size: 1.4rem;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.8fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  color: #fff;
  background: var(--charcoal);
}

.local-panel {
  max-width: 690px;
}

.local-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.local-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list div {
  border-left: 4px solid var(--leaf);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
}

.info-list span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.info-list strong {
  display: block;
  font-size: 1.05rem;
}

.info-list small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-band {
  justify-content: space-between;
  padding: clamp(38px, 6vw, 70px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--tomato);
}

.contact-band .section-kicker {
  color: #ffe2a6;
}

.contact-band h2 {
  margin-bottom: 12px;
}

.contact-band p:not(.section-kicker) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

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

.google-reviews {
  flex-basis: 100%;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.reviews-summary,
.reviews-action {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.reviews-summary {
  padding: 22px;
}

.reviews-summary span {
  display: block;
  margin-bottom: 10px;
  color: #ffe2a6;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-summary strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

.reviews-action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 22px;
}

.reviews-action strong {
  font-weight: 800;
}

.reviews-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #101110;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    row-gap: 10px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 148px;
  }

  .hero-logo {
    width: 136px;
    margin-bottom: 18px;
    padding: 9px 10px;
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 5.1rem);
  }

  .historia-section,
  .box-lunch,
  .salads-feature,
  .training-section,
  .training-lists,
  .service-detail,
  .local-section,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .events-gallery {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .event-video-copy {
    min-height: 0;
  }

  .events-booking {
    align-items: flex-start;
    flex-direction: column;
  }

  .salads-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .salads-gallery img {
    height: auto;
  }

  .menu-item {
    min-height: 190px;
  }

  .contact-band,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .google-reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 0.92rem;
  }

  .nav {
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
  }
}
