:root {
  --ink: #1f2622;
  --muted: #627067;
  --line: #d8ded8;
  --paper: #fbfaf5;
  --soft: #eef3ec;
  --cream: #fff7e6;
  --accent: #2f6f55;
  --accent-dark: #1f503e;
  --warm: #b45f3c;
  --gold: #d8a23a;
  --coffee: #39271f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

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

.hero {
  display: grid;
  align-items: end;
  min-height: 72vh;
  padding: clamp(56px, 9vw, 120px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(31, 38, 34, 0.82), rgba(31, 38, 34, 0.28)),
    url("https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.home-hero {
  min-height: 78vh;
  background:
    linear-gradient(90deg, rgba(31, 38, 34, 0.86), rgba(31, 38, 34, 0.34)),
    url("https://i0.wp.com/i.gojekapi.com/darkroom/gofood-indonesia/v2/images/uploads/a1e7b800-5c51-46a0-afe1-593928552bad_Go-Biz_20211102_194324.jpeg") center/cover;
}

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

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

.hero .eyebrow {
  color: #ffd4b9;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.15;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.hero p:not(.eyebrow),
.page-header p {
  max-width: 680px;
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
}

.button.dark {
  border-color: var(--coffee);
  background: var(--coffee);
}

.section,
.page {
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.quick-info div {
  display: grid;
  gap: 4px;
  padding: 22px clamp(18px, 5vw, 64px);
  background: var(--cream);
}

.quick-info strong {
  color: var(--coffee);
  font-size: 1.05rem;
}

.quick-info span {
  color: var(--muted);
}

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

.card,
.info-panel,
.menu-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.card p,
.info-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-showcase {
  padding-bottom: clamp(38px, 6vw, 72px);
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 64px);
  background: var(--coffee);
  color: #fff;
}

.story-band h2 {
  max-width: 760px;
}

.story-list {
  display: grid;
  gap: 16px;
}

.story-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.story-list strong {
  color: #fff;
}

.light-band {
  background: var(--soft);
  color: var(--ink);
}

.light-band .story-list p {
  color: var(--muted);
}

.light-band .story-list strong {
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  background: var(--soft);
}

.split p {
  margin: 0;
  color: var(--muted);
}

.inner-hero {
  display: grid;
  align-items: end;
  min-height: 58vh;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
  color: #fff;
}

.inner-hero > div {
  max-width: 860px;
}

.inner-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.inner-hero .eyebrow {
  color: #ffd59f;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(31, 38, 34, 0.88), rgba(57, 39, 31, 0.35)),
    url("https://i0.wp.com/i.gojekapi.com/darkroom/gofood-indonesia/v2/images/uploads/cd0e9982-14d7-46b3-8637-22347c45e9a0_Go-Biz_20211102_194410.jpeg") center/cover;
}

.location-hero {
  background:
    linear-gradient(90deg, rgba(31, 38, 34, 0.9), rgba(47, 111, 85, 0.38)),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(31, 38, 34, 0.9), rgba(57, 39, 31, 0.44)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.page-header {
  max-width: 880px;
  margin-bottom: 36px;
}

.menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 64px) clamp(38px, 6vw, 76px);
  background:
    linear-gradient(115deg, rgba(31, 38, 34, 0.92), rgba(57, 39, 31, 0.76)),
    url("https://i0.wp.com/i.gojekapi.com/darkroom/gofood-indonesia/v2/images/uploads/8cbbc6ec-fa7a-4dc3-a21e-6bf67969e22e_Go-Biz_20211102_200133.jpeg") center/cover;
  color: #fff;
}

.menu-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6.4vw, 5.8rem);
}

.menu-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
}

.menu-hero .eyebrow {
  color: #ffd59f;
}

.menu-hero-panel {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.menu-hero-panel strong {
  font-size: 1.15rem;
}

.menu-hero-panel span {
  color: rgba(255, 255, 255, 0.82);
}

.compact-section {
  padding-bottom: 22px;
}

.menu-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 24px;
  max-width: none;
  margin-bottom: 0;
}

.menu-heading-row > p {
  margin: 0;
  color: var(--muted);
}

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

.featured-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 64px) clamp(26px, 5vw, 52px);
}

.featured-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(31, 38, 34, 0.08);
}

.featured-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.featured-item div {
  padding: 22px;
}

.featured-item p:not(.eyebrow) {
  color: var(--muted);
}

.featured-item strong {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-dark);
}

.menu-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.menu-strip span {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 12px;
  background: var(--cream);
  color: var(--coffee);
  font-weight: 700;
  text-align: center;
}

.menu-board-section {
  padding-top: clamp(32px, 5vw, 58px);
  padding-bottom: 18px;
}

.expanded-menu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 clamp(18px, 5vw, 64px) clamp(42px, 7vw, 88px);
}

.menu-list dl {
  margin: 16px 0 0;
}

.menu-list dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list dl div:last-child {
  border-bottom: 0;
}

.menu-list dt,
.menu-list dd {
  margin: 0;
}

.menu-list dt {
  font-weight: 700;
}

.menu-list dd {
  flex: 0 0 auto;
  color: var(--warm);
  font-weight: 700;
}

.menu-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 64px);
  background: var(--coffee);
  color: #fff;
}

.menu-cta h2 {
  max-width: 760px;
}

.menu-cta p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.info-panel {
  max-width: 820px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.location-card {
  max-width: none;
}

.map-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(31, 38, 34, 0.2), rgba(31, 38, 34, 0.86)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.map-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

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

.contact-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.contact-card p {
  color: var(--muted);
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

  .hero {
    min-height: 68vh;
  }

  .grid,
  .featured-menu,
  .menu-list,
  .menu-heading-row,
  .menu-hero,
  .menu-cta,
  .quick-info,
  .story-band,
  .location-layout,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .site-header {
    gap: 18px;
    padding: 18px 20px;
  }

  nav {
    gap: 16px;
  }

  h1,
  .menu-hero h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero,
  .inner-hero,
  .menu-hero {
    min-height: auto;
    padding: 56px 20px 60px;
  }

  .actions {
    gap: 10px;
  }

  .button {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
  }

  .section,
  .page,
  .story-band,
  .menu-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .featured-menu,
  .expanded-menu {
    padding-right: 20px;
    padding-left: 20px;
  }

  .menu-strip {
    margin-right: 20px;
    margin-left: 20px;
  }

  .card,
  .info-panel,
  .menu-list article,
  .contact-card,
  .map-card {
    padding: 22px;
  }

  .menu-list dl div {
    align-items: flex-start;
  }

  .menu-list dt {
    padding-right: 8px;
  }

  .menu-list dd {
    font-size: 0.82rem;
    white-space: nowrap;
  }
}
