/* Restaurant Rendezvous — static site */

:root {
  --color-burgundy: #631111;
  --color-burgundy-dark: #3d0a0a;
  --color-cream: #fdfbf0;
  --color-cream-dark: #f0ebe0;
  --color-red-cta: #d32f2f;
  --color-red-cta-hover: #b71c1c;
  --color-gold: #c9a227;
  --color-gold-dim: #a08020;
  --color-text: #1a1a1a;
  --color-text-muted: #4a4a4a;
  --color-white: #fff;
  --color-footer: #1c1412;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(26, 10, 10, 0.85) 0%,
    rgba(26, 10, 10, 0.35) 70%,
    transparent 100%
  );
  transition: background 0.3s;
}

.site-header.is-scrolled {
  background: rgba(61, 10, 10, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 94vw);
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-white);
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--color-white);
  border-radius: 50%;
  border: 2px solid var(--color-gold);
}

.brand__text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 10rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-white);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn--primary {
  background: var(--color-red-cta);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-red-cta-hover);
  color: var(--color-white);
  text-decoration: none;
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-burgundy-dark);
}

.btn--gold:hover {
  background: #ddb82e;
  color: var(--color-burgundy-dark);
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* Hero — kolase 3 panel */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 3rem;
  position: relative;
  color: var(--color-white);
  overflow: hidden;
  background: var(--color-burgundy-dark);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  height: 100%;
  min-height: 100%;
  gap: 2px;
  background: var(--color-burgundy-dark);
}

.hero__panel {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(20, 8, 8, 0.8) 0%,
    rgba(40, 12, 12, 0.58) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  margin: 0 0 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero__lead {
  font-size: 0.95rem;
  max-width: 40rem;
  margin: 0 auto 2rem;
  opacity: 0.95;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 700px) {
  .hero__collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, min(22vh, 200px));
    min-height: 66vh;
  }

  .hero__panel {
    min-height: min(22vh, 200px);
    object-fit: cover;
  }
}

/* Sections */
section {
  padding: 4.5rem 0;
}

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

.section--burgundy {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.section--burgundy .section-title,
.section--burgundy h2 {
  color: var(--color-white);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.section__lede {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 0.9rem;
}

.section--burgundy .section__lede {
  color: rgba(255, 255, 255, 0.8);
}

.section--burgundy .section__lede a {
  color: #f0d060;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section--burgundy .section__lede a:hover {
  color: #fff;
}

/* Philosophy + arches */
.philosophy {
  text-align: center;
}

.text-left {
  text-align: left;
}

.philosophy__tagline {
  margin: 0 auto 0.75rem;
  line-height: 1.4;
}

.philosophy__brand {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-burgundy);
}

.philosophy__subtitle {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.philosophy__panel {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  text-align: left;
  background: var(--color-cream-dark);
  border: 1px solid rgba(99, 17, 17, 0.12);
  border-radius: 6px;
  padding: 1rem 1.1rem 0.85rem;
}

.philosophy__panel--open {
  border-color: var(--color-gold-dim);
}

.philosophy__first {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

.philosophy__full {
  margin: 0;
  padding: 0.75rem 0 0.25rem;
  border: none;
  background: transparent;
  border-top: 1px solid rgba(99, 17, 17, 0.1);
}

/* Saat teks diperluas, tanpa garis di bawah paragraf pertama */
.philosophy__panel--open .philosophy__full {
  border-top: none;
  padding-top: 0.35rem;
}

.philosophy__toggle {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.7rem 0 0.1rem;
  border: none;
  border-top: 1px solid rgba(99, 17, 17, 0.1);
  background: transparent;
  font: inherit;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.philosophy__toggle:hover,
.philosophy__toggle:focus-visible {
  color: var(--color-red-cta);
  outline: none;
}

.philosophy__toggle:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--color-red-cta);
}

.philosophy__full p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
}

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

.philosophy__next {
  margin: 0 0 2rem;
}

/* Menu primadona */
.primadona__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-align: center;
  color: var(--color-burgundy);
  margin: 2.5rem 0 0.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.primadona__lede {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.primadona__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
  align-items: start;
  margin: 0 auto 0.5rem;
  max-width: 900px;
}

.primadona__card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.primadona__vis {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 0.5rem;
  border-radius: 100px 100px 0 0;
  aspect-ratio: 3 / 4;
  background: var(--color-cream-dark);
  box-shadow: var(--shadow-soft);
}

.primadona__vis .primadona__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 800px) {
  .primadona__grid {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }
}

@media (min-width: 801px) {
  .primadona__vis {
    max-width: 220px;
  }
}

.primadona__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 0.35rem 0 0.2rem;
  color: var(--color-burgundy);
  text-transform: none;
  letter-spacing: 0.04em;
}

.primadona__blurb {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0 0 0.4rem;
  line-height: 1.4;
  max-width: 14rem;
}

.primadona__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.primadona__link:hover {
  color: var(--color-red-cta);
}

.arches {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.arch {
  width: min(200px, 28vw);
  flex: 0 0 auto;
}

.arch--tall {
  width: min(220px, 30vw);
  margin-bottom: 0.5rem;
}

.arch__frame {
  position: relative;
  overflow: hidden;
  border-radius: 100px 100px 0 0;
  aspect-ratio: 3 / 4;
  background: var(--color-cream-dark);
  box-shadow: var(--shadow-soft);
}

.arch--tall .arch__frame {
  aspect-ratio: 3 / 4.2;
  border-radius: 110px 110px 0 0;
}

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

.arch__cap {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-top: 0.75rem;
  color: var(--color-burgundy);
  text-transform: none;
  font-style: italic;
}

/* Featured menu list */
#featured-menu-root {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 900px) {
  #featured-menu-root {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.75rem;
    row-gap: 0;
    align-items: start;
  }
}

.featured-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  align-items: start;
}

.featured-row:last-child {
  border-bottom: none;
}

.featured__thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.featured__thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.featured__lines {
  min-width: 0;
  flex: 1;
}

.menu-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.menu-line__fav {
  flex: 0 0 1.25rem;
  width: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1;
  user-select: none;
  color: #2563eb;
}

.menu-line__fav .menu-line__fav-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  margin: 0 auto;
}

.menu-line__fav--empty {
  flex: 0 0 1.25rem;
  width: 1.25rem;
  visibility: hidden;
}

.menu-line:last-child {
  margin-bottom: 0;
}

.menu-line__title {
  flex: 0 1 auto;
  min-width: 0;
  font-weight: 500;
  color: var(--color-text);
}

.menu-line__dots {
  flex: 1 1 auto;
  min-width: 1rem;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  position: relative;
  top: -0.25em;
  height: 0;
  margin: 0 0.2rem;
}

.menu-line__price {
  flex: 0 0 auto;
  font-weight: 600;
  color: var(--color-burgundy);
  white-space: nowrap;
}

.section--burgundy .menu-line__title,
.lightbox__lines .menu-line__title {
  color: var(--color-white);
}

.section--burgundy .menu-line__dots,
.lightbox__lines .menu-line__dots {
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.section--burgundy .menu-line__price,
.lightbox__lines .menu-line__price {
  color: var(--color-gold);
}

/* Quality */
.quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.quality__visual {
  border: 1px solid var(--color-gold-dim);
  padding: 0.5rem;
  min-height: 320px;
}

.quality__collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 0.45rem;
  align-content: start;
  height: 100%;
  min-height: 0;
}

.quality__collage img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  max-height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .quality__collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .quality__collage img {
    max-height: 130px;
  }
}

.quality__content h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin: 0 0 1rem;
  color: var(--color-burgundy);
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0.04em;
}

.quality__quote {
  margin: 0 0 0.5rem;
  padding: 0 0 0 1.1rem;
  border-left: 4px solid var(--color-gold);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
}

.quality__quote p {
  margin: 0;
}

.quality__quote-attr {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--color-text-muted);
  margin: 0 0 1.1rem;
}

.quality__note {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 1.25rem;
}

.quality__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.quality__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.quality__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-red-cta);
  font-weight: 700;
}

.quality__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  font-family: var(--font-heading);
}

.quality__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
}

/* Contact form */
.form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-wrap label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.form-wrap input,
.form-wrap textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  padding: 0.65rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 2px;
}

.form-wrap input::placeholder,
.form-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-wrap textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-actions {
  text-align: center;
  margin-top: 1.5rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.t-card {
  background: var(--color-burgundy);
  color: var(--color-white);
  padding: 1.5rem 1.25rem 1.25rem;
  border-radius: 6px;
  position: relative;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.t-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 3rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.t-card__stars {
  color: var(--color-gold);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.t-card p {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.t-card__author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.t-card__name {
  font-size: 0.8rem;
  font-weight: 600;
}

.t-card__region {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* Testimonial di atas latar burgundy: kartu krem agar kontras */
.section--burgundy .t-card {
  background: var(--color-cream);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.section--burgundy .t-card::before {
  color: rgba(99, 17, 17, 0.1);
}

.section--burgundy .t-card__stars {
  color: var(--color-burgundy);
}

.section--burgundy .t-card p,
.section--burgundy .t-card__name {
  color: var(--color-text);
}

.section--burgundy .t-card__region {
  color: #6a5a50;
}

/* Kontak: alamat, telepon, peta */
.contact-block {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-block__lede {
  margin-bottom: 2rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.contact__info {
  min-width: 0;
  text-align: left;
}

.contact__info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.4rem 1.25rem 1.3rem;
  background: var(--color-cream-dark);
  border: 1px solid rgba(99, 17, 17, 0.12);
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.contact__info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 6px 6px 0 0;
  background: var(--color-gold);
  opacity: 0.9;
  pointer-events: none;
}

.contact__info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact__row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem 1rem;
  margin: 0;
  padding: 1.15rem 0;
}

.contact__row + .contact__row {
  border-top: 1px solid rgba(99, 17, 17, 0.1);
}

.contact__row:first-child {
  padding-top: 0.1rem;
}

.contact__row:last-of-type {
  padding-bottom: 0;
}

.contact__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-burgundy);
  background: var(--color-cream);
  border: 1px solid rgba(99, 17, 17, 0.12);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.contact__icon svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}

.contact__row-body {
  flex: 1;
  min-width: 0;
}

.contact__label {
  font-size: 0.65rem;
  margin: 0 0 0.35rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  font-weight: 600;
  font-family: var(--font-body);
}

.contact__value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
}

.contact__row--phone .contact__value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.2rem;
  row-gap: 0.2rem;
}

.contact__address {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
  font-style: normal;
}

.contact__phone {
  color: var(--color-burgundy);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.contact__phone:hover {
  color: var(--color-red-cta);
  text-decoration: underline;
}

.contact__phone-sep {
  color: var(--color-text-muted);
  font-weight: 400;
}

.contact__info-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(99, 17, 17, 0.1);
}

.contact__map-btn {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 1px 4px rgba(99, 17, 17, 0.12);
}

.contact__map-btn:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 2px 8px rgba(99, 17, 17, 0.18);
}

.contact__map-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__map-hint {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  padding-left: 0.05rem;
}

.contact__map-wrap {
  position: relative;
  width: 100%;
  min-height: 260px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(99, 17, 17, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.contact__map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 800px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__map-wrap {
    order: 2;
    min-height: 220px;
  }
}

/* Footer — selaras burgundy + emas, bukan cokelat netral */
.site-footer {
  --footer-text: rgba(255, 247, 240, 0.82);
  --footer-mute: rgba(255, 240, 228, 0.58);
  background: linear-gradient(165deg, #3a1515 0%, #2a0e0e 45%, #1c0808 100%);
  color: var(--footer-mute);
  padding: 3rem 0 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.site-footer h3 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: var(--footer-text);
  text-decoration: none;
}

.site-footer a:hover {
  color: #f0d878;
  text-decoration: none;
}

.footer-center .brand {
  margin-bottom: 0.75rem;
}

.footer-center p {
  margin: 0 0 1rem;
  line-height: 1.5;
  font-size: 0.8rem;
  color: var(--footer-mute);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--footer-mute, rgba(255, 240, 228, 0.58));
}

.site-footer .contact-line a[href^="tel:"] {
  color: #f0d060;
  font-weight: 600;
}

.site-footer .contact-line a[href^="tel:"]:hover {
  color: #fff3c4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-line__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  color: #e0bc4a;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 7px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.contact-line__icon svg {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 1rem 1.5rem;
  font-size: 0.7rem;
  color: rgba(255, 240, 228, 0.42);
  letter-spacing: 0.04em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 900px;
  max-height: 90vh;
  align-items: flex-start;
}

.lightbox__inner img {
  max-width: min(420px, 90vw);
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__lines {
  color: #eee;
  flex: 1;
  min-width: 200px;
}

.lightbox__lines h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin: 0 0 0.75rem;
}

.lightbox__lines .menu-line__dots {
  border-color: rgba(255, 255, 255, 0.35);
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1001;
}

/* Menu full page */
.page-menu .menu-page-header {
  padding: calc(var(--header-h) + 2rem) 0 1.5rem;
  text-align: center;
  background: var(--color-burgundy);
  color: var(--color-white);
}

.page-menu .menu-page-header h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}

.page-menu .menu-page-header p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 32rem;
  margin-inline: auto;
}

.menu-book {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.menu-cat {
  margin-bottom: 2.5rem;
}

.menu-cat h2 {
  font-size: 1.1rem;
  color: var(--color-burgundy);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 0.35rem;
  margin: 0 0 0.5rem;
}

.menu-cat__en {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-family: var(--font-body);
  margin: 0 0 1rem;
}

.menu-book .menu-line {
  font-size: 0.9rem;
  color: var(--color-text);
}

.menu-book .menu-line__title {
  color: var(--color-text);
  font-weight: 400;
}

.menu-book .menu-line__dots {
  border-color: rgba(0, 0, 0, 0.2);
}

.menu-book .menu-line__price {
  color: var(--color-burgundy);
}

/* Navigasi bawah — hanya tampil di lebar sempit */
.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  align-items: stretch;
  justify-content: space-around;
  gap: 0.1rem;
  min-height: 3.5rem;
  padding: 0.3rem 0.15rem;
  padding-bottom: calc(0.3rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #2e1212 0%, #1a0808 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.28);
}

.bottom-nav__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  padding: 0.2rem 0.05rem;
  color: rgba(255, 240, 228, 0.52);
  text-decoration: none;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.bottom-nav__item:hover:not(.is-active),
.bottom-nav__item:focus-visible:not(.is-active) {
  color: #f0d060;
  text-decoration: none;
  outline: none;
}

.bottom-nav__item.is-active {
  position: relative;
  color: #fff5cc;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.22) 0%, rgba(201, 162, 39, 0.08) 100%);
  box-shadow: inset 0 2px 0 0 #c9a227;
  text-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.35);
}

.bottom-nav__item.is-active .bottom-nav__label {
  color: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.bottom-nav__item.is-active .bottom-nav__icon svg {
  color: #f0d66a;
  filter: drop-shadow(0 0.5px 0.5px rgba(0, 0, 0, 0.4));
}

.bottom-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.bottom-nav__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .quality {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: calc(3.55rem + env(safe-area-inset-bottom, 0px));
  }

  .bottom-nav {
    display: flex;
  }

  /* Sembunyi bawah bila lightbox (beranda) terbuka */
  body:has(.lightbox.is-open) .bottom-nav {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  .nav-toggle {
    display: block;
  }

  /* Bar atas selaras latar menu dropdown (burgundy penuh) */
  .site-header:has(.nav.is-open) {
    background: var(--color-burgundy-dark);
    backdrop-filter: none;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-burgundy-dark);
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .header-cta--desktop {
    display: none;
  }

  .nav .btn {
    width: 100%;
  }
}

@media (min-width: 901px) {
  .header-cta--mobile {
    display: none;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .featured-row {
    grid-template-columns: 72px 1fr;
  }

  .featured__thumb {
    width: 72px;
    height: 72px;
  }
}

@media (min-width: 901px) {
  .arches {
    flex-wrap: nowrap;
  }
}
