:root {
  color-scheme: light;
  --ink: #402516;
  --muted: #806b5c;
  --paper: #fff9f1;
  --cream: #f8eadc;
  --blush: #f5c8d2;
  --blush-soft: #fff0f4;
  --leaf: #637d4e;
  --matcha: #8ba66a;
  --line: rgba(64, 37, 22, 0.14);
  --shadow: 0 22px 60px rgba(64, 37, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdf8;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.6rem);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(64, 37, 22, 0.86), rgba(64, 37, 22, 0.54) 42%, rgba(64, 37, 22, 0.08)),
    url("assets/main-display.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 24%;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  width: min(820px, 100%);
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 7vw, 5rem) clamp(5rem, 10vw, 8rem);
  color: #fff9f1;
}

.kicker,
.label,
.item-tag {
  margin: 0 0 0.75rem;
  color: #c65d7b;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .kicker {
  color: #ffe2a8;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 249, 241, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: #cf6e8a;
  color: #fff9f1;
}

.button.secondary {
  border-color: rgba(255, 249, 241, 0.65);
  color: #fff9f1;
}

.announcement {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 2rem));
  margin: -2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.announcement > div {
  min-height: 116px;
  padding: 1.25rem;
  background: #fffdf8;
}

.announcement strong,
.menu-card strong {
  display: block;
}

.label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--leaf);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.split,
.story,
.events,
.ingredients,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.intro p,
.story p,
.events p,
.ingredients p,
.booking p,
.menu-card p,
.feature-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.single-showcase {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.single-showcase img {
  width: 100%;
  max-height: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story {
  align-items: stretch;
}

.story-copy {
  display: grid;
  align-content: center;
}

.quote-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: 420px;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 8px;
  background:
    linear-gradient(rgba(64, 37, 22, 0.42), rgba(64, 37, 22, 0.42)),
    url("assets/pro-booth.jpg");
  background-position: center;
  background-size: cover;
  color: #fff9f1;
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0;
  color: #fff9f1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-grid article,
.feature-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.feature-grid span {
  display: block;
  margin-bottom: 1rem;
  color: #c65d7b;
  font-weight: 950;
}

.events {
  align-items: start;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 8px;
  background: var(--cream);
}

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

.event-lists div {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.ingredients {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.ingredients img {
  width: 100%;
  max-height: 560px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.menu-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.tab {
  min-width: 82px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
}

.tab.is-active {
  background: var(--leaf);
  color: #fff9f1;
}

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

.menu-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.menu-card img {
  width: calc(100% + 2.7rem);
  max-width: none;
  height: 190px;
  margin: -1.35rem -1.35rem 1.1rem;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
  object-position: center;
}

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

.menu-card strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 1.12rem;
}

.item-tag {
  width: fit-content;
  margin-bottom: 1.1rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  background: rgba(245, 200, 210, 0.46);
  color: #8b3650;
  letter-spacing: 0.08em;
}

.booking {
  margin-bottom: 4rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 240, 244, 0.96), rgba(248, 234, 220, 0.92)),
    var(--blush-soft);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(64, 37, 22, 0.22);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 0.86rem 0.95rem;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 950;
}

.footer a {
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1040px) and (min-width: 821px) {
  .feature-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(64, 37, 22, 0.92), rgba(64, 37, 22, 0.48) 66%, rgba(64, 37, 22, 0.12)),
      url("assets/main-display.jpg");
    background-position: center;
  }

  .announcement,
  .split,
  .story,
  .events,
  .ingredients,
  .booking,
  .feature-grid,
  .menu-grid,
  .event-lists {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .footer {
    display: grid;
  }

  .menu-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .tab {
    flex: 1;
  }
}

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

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .announcement {
    margin-top: -1.25rem;
  }

  .announcement > div {
    min-height: 96px;
  }
}
