:root {
  --ink: #262220;
  --ink-soft: #6b6460;
  --paper: #fdfcfb;
  --line: #e3ddd6;
  --accent: #8a4b32;
  --accent-soft: #f4ece5;
  --radius: 6px;
  --gap: 1.5rem;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 1.25rem 4rem;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- Navigation ---------- */

nav {
  max-width: var(--max-width);
  margin: 0 auto;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}

nav li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
}

nav li:hover {
  color: var(--ink);
}

a {
    text-decoration: none;
    color: #262220;
}

a:hover{
    color: #8a4b32;
}

a:visited{
    color: #6b6460;
}

/* ---------- Layout ---------- */

h1,
h2,
h3,
p,
video,
table,
hr {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

h1 {
  margin-top: 2.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 + p {
  margin-top: -0.5rem;
  color: var(--ink-soft);
}

h2 {
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}

p {
  color: var(--ink-soft);
}

strong {
  color: var(--ink);
}

/* ---------- Video ---------- */

video {
  display: block;
  margin-top: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* ---------- Tabel ---------- */

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--gap);
  font-size: 0.95rem;
  border: 1px solid var(--line) !important;
}

th,
td {
  padding: 0.6rem 0.9rem !important;
  text-align: left;
  border: 1px solid var(--line) !important;
}

th {
  background: var(--accent-soft);
  font-weight: 600;
  color: var(--accent);
}

tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.015);
}

td:first-child,
th:first-child {
  width: 3rem;
  color: var(--ink-soft);
}

/* ---------- Small print ---------- */

small {
  display: block;
  max-width: var(--max-width);
  margin: 0 auto var(--gap);
  color: var(--ink-soft);
  font-size: 0.8rem;
}

/* ---------- Line & footer ---------- */

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
}

hr + p {
  margin-top: 1rem;
  font-style: normal;
  text-align: center;
}

p:last-child {
  text-align: left;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Halaman Responsive ---------- */

@media (max-width: 480px) {
  video {
    width: 100% !important;
  }

  table {
    font-size: 0.85rem;
  }
}

/* ---------- Home page ---------- */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.site-nav ul {
  padding: 0;
  border: 0;
}

.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
}

.site-nav li a.active {
  color: var(--accent);
  font-weight: 600;
}

.home-page {
  max-width: 960px;
  margin: 0 auto;
}

.hero {
  padding: 7rem 0 5rem;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero-copy {
  max-width: 420px;
  margin: 2rem 0;
  font-size: 1.05rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-button:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.primary-button span {
  font-size: 1.2rem;
  line-height: 0.8;
}

.hero-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
}

.welcome-media {
  position: relative;
  padding: 1.5rem 0 5rem;
}

.welcome-media video {
  width: 100%;
  max-width: none;
  max-height: 500px;
  margin: 0;
  background: #ded6ce;
  object-fit: cover;
}

.media-label {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 1.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.address-section h2 {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.address-section > div:last-child {
  align-self: end;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.address-section > div:last-child strong {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 600px) {
  .site-nav {
    align-items: center;
    flex-direction: row;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 0;
  }

  .site-nav .brand {
    flex-shrink: 0;
    font-size: 0.75rem;
  }

  .site-nav ul {
    min-width: 0;
    justify-content: flex-end;
    gap: 0.65rem;
  }

  .site-nav li {
    font-size: 0.75rem;
  }

  .site-nav li a {
    display: block;
    white-space: nowrap;
  }

  .hero {
    padding: 4.5rem 0 3rem;
  }

  .address-section {
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ---------- Menu page ---------- */

.menu-page {
  max-width: 960px;
  margin: 0 auto;
}

.menu-header {
  max-width: 650px;
  padding: 5rem 0 4rem;
}

.menu-header h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.menu-header h1 span {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.menu-header > p:last-child {
  max-width: 400px;
  margin: 1.75rem 0 0;
}

.menu-section {
  padding: 2.5rem 0 4rem;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-number {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.section-heading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1.7rem;
}

.section-heading p {
  margin: 0;
  font-size: 0.85rem;
}

.menu-section table {
  max-width: none;
  margin-bottom: 0;
  border: 0 !important;
}

.menu-section th,
.menu-section td {
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
}

.menu-section th {
  padding-top: 0.25rem !important;
  padding-bottom: 0.65rem !important;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-section td {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  vertical-align: top;
}

.menu-section td:first-child,
.menu-section th:first-child {
  width: 3rem;
  color: var(--accent);
  font-size: 0.8rem;
}

.menu-section td:last-child,
.menu-section th:last-child {
  width: 9rem;
  text-align: right;
  white-space: nowrap;
}

.menu-section td strong {
  display: block;
  font-weight: 600;
}

.menu-section td small {
  max-width: none;
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
}

.menu-section tr:nth-child(even) td {
  background: transparent;
}

.menu-section tbody tr:hover td {
  background: var(--accent-soft);
}

.dollar-menu {
  padding-bottom: 2rem;
}

.dollar-menu td {
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
}

.menu-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .menu-header {
    padding: 4rem 0 3rem;
  }

  .section-heading {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.6rem;
  }

  .section-heading p {
    grid-column: 2;
  }

  .menu-section th,
  .menu-section td {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }

  .menu-section td:last-child,
  .menu-section th:last-child {
    width: 6.5rem;
  }
}
