/* Kafe Santai D'Sungai Derga — shared stylesheet. Design tokens + components + responsive rules. */

:root {
  --bg-dark: #123C2F;
  --bg-dark-2: #174E3D;
  --bg-dark-3: #0D2A21;
  --bg-dark-4: #1D5F4B;
  --bg-purple: #202522;
  --cream: #F7F2E7;
  --cream-alt: #EFE9D8;
  --off-white: #FFFDF8;
  --sage: #71856F;
  --gold: #C89B3C;
  --gold-light: #E4C787;
  --brown-gold: #9C7B2E;
  --ink: #3C3728;
  --ink-soft: #544D3D;
  --ink-faint: #6B6453;
  --whatsapp: #25D366;

  --shadow-sm: 0 6px 18px rgba(13, 42, 33, 0.18);
  --shadow-md: 0 10px 30px rgba(13, 42, 33, 0.24);

  --container: 1280px;
  --section-x: 20px;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
}

@media (min-width: 576px) { :root { --section-x: 32px; } }
@media (min-width: 860px) { :root { --section-x: 48px; } }
@media (min-width: 1200px) { :root { --section-x: 64px; } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
h1, h2, h3, h4 { margin: 0; font-weight: 600; font-family: var(--font-heading); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: var(--font-body); }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 999;
  font-weight: 700;
  font-size: 14px;
}
.skip-link:focus { left: 0; top: 0; }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--section-x); padding-right: var(--section-x); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 16px 26px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--gold); color: var(--bg-dark); }
.btn-primary:hover { background: var(--gold-light); color: var(--bg-dark); }
.btn-outline-light { border-color: rgba(246, 241, 228, 0.7); color: var(--cream); }
.btn-outline-light:hover { background: rgba(246, 241, 228, 0.12); color: var(--cream); }
.btn-outline-dark { border-color: var(--bg-dark-2); color: var(--bg-dark-2); }
.btn-outline-dark:hover { background: var(--bg-dark-2); color: var(--cream); }
.btn-dark { background: var(--bg-dark); color: var(--off-white); }
.btn-dark:hover { background: var(--bg-dark-2); color: var(--off-white); }
.btn-whatsapp::before { content: "\2726\FE0E "; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(18, 60, 47, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 74, 0.22);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--section-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Fraunces', Georgia, serif; font-size: 21px; font-weight: 600; letter-spacing: 0.01em; color: var(--cream); }
.brand-tagline { font-size: 9px; letter-spacing: 0.22em; color: var(--gold); font-weight: 700; margin-top: 2px; }

.main-nav { display: none; align-items: center; gap: clamp(14px, 1.8vw, 26px); }
.nav-link {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--cream);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-link:hover { color: var(--gold); }
.nav-link.is-active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-item-dropdown { position: relative; }
.nav-dropdown-caret { font-size: 8px; margin-left: 3px; opacity: 0.7; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-dark-2);
  border: 1px solid rgba(201, 162, 74, 0.3);
  border-radius: 8px;
  padding: 6px;
  margin-top: 10px;
  min-width: 140px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 70;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--cream);
  border-radius: 4px;
  white-space: nowrap;
}
.nav-dropdown-link:hover { background: rgba(201, 162, 74, 0.14); color: var(--gold); }
.nav-dropdown-link.is-active { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  width: 46px; height: 46px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border: 1px solid rgba(246, 241, 228, 0.28); border-radius: 4px; cursor: pointer;
  background: transparent;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--cream); display: block; }

.mobile-nav { display: none; flex-direction: column; padding: 8px var(--section-x) 24px; gap: 2px; border-top: 1px solid rgba(201, 162, 74, 0.18); }
.mobile-nav.is-open { display: flex; }
.mobile-nav-link { padding: 15px 4px; font-size: 12.5px; letter-spacing: 0.14em; color: var(--cream); border-bottom: 1px solid rgba(246, 241, 228, 0.08); }
.mobile-nav-link.is-active { color: var(--gold); }
.mobile-nav-sublink {
  padding: 12px 4px 12px 22px;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: rgba(246, 241, 228, 0.75);
  border-bottom: 1px solid rgba(246, 241, 228, 0.08);
}
.mobile-nav-sublink::before { content: "\2014\A0"; color: var(--gold); }
.mobile-nav-sublink.is-active { color: var(--gold); }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .header-actions .nav-toggle, .header-actions .btn-mobile-book { display: none; }
  .mobile-nav { display: none !important; }
}
@media (max-width: 1023px) {
  .main-nav .btn { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark-2);
}
.hero.hero-center { align-items: center; justify-content: center; text-align: center; }
.hero.hero-short { min-height: min(56vh, 480px); align-items: center; text-align: center; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media.hero-slider img { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-media.hero-slider img.is-active { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; pointer-events: none; }
.hero-scrim-side { background: linear-gradient(90deg, rgba(8,25,20,0.92) 0%, rgba(8,25,20,0.62) 45%, rgba(8,25,20,0.22) 100%); }
.hero-scrim-side-right { background: linear-gradient(270deg, rgba(14,16,15,0.94) 0%, rgba(14,16,15,0.68) 50%, rgba(14,16,15,0.26) 100%); }
.hero-scrim-flat { background: rgba(8, 28, 22, 0.72); }
.hero-scrim-bottom { background: linear-gradient(180deg, rgba(10,7,18,0.35) 0%, rgba(10,7,18,0.68) 45%, rgba(10,7,18,0.9) 100%); }
.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 150px) var(--section-x) clamp(56px, 7vw, 96px);
}
.hero-content.hero-content-narrow { max-width: 900px; }
.hero-content.hero-content-mid { max-width: 1000px; }
.hero-eyebrow,
.hero-title,
.hero-lede,
.hero-tag {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hero-eyebrow { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-light); display: block; line-height: 1; }
.hero-title { font-size: clamp(36px, 6vw, 76px); font-weight: 700; line-height: 1.08; letter-spacing: -0.005em; margin-top: 8px; text-transform: uppercase; max-width: 13em; }
.hero-title .accent { color: var(--gold); }
.hero-lede { margin-top: 20px; font-size: clamp(16px, 1.6vw, 19px); font-weight: 500; line-height: 1.65; color: var(--cream); }
.hero-lede.italic { font-family: var(--font-heading); font-weight: 500; font-style: italic; color: var(--gold-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; justify-content: inherit; }
.hero-tag { margin-top: 18px; font-size: clamp(13px, 1.6vw, 16px); font-weight: 600; letter-spacing: 0.3em; color: var(--cream); }

/* ===== Sections ===== */
.section { padding: clamp(56px, 7vw, 110px) var(--section-x); }
.section-sm { padding: clamp(40px, 5vw, 64px) var(--section-x); }
.section-cream { background: var(--cream); color: var(--ink); }
.section-cream-alt { background: var(--cream-alt); }
.section-dark { background: var(--bg-dark-2); }
.section-dark-2 { background: var(--bg-dark-4); }
.section-purple { background: var(--bg-purple); }

.kicker { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); display: block; line-height: 1; }
.section-cream .kicker, .section-cream-alt .kicker { color: var(--brown-gold); }
.section-title { font-size: clamp(28px, 4vw, 46px); line-height: 1.1; text-transform: uppercase; margin-top: 8px; }
.section-cream .section-title { color: var(--bg-dark-2); }
.section-title-lg { font-size: clamp(30px, 5vw, 56px); }
.section-title-sm { font-size: clamp(24px, 3.4vw, 38px); }
.section-body { margin-top: 18px; font-size: 16.5px; line-height: 1.75; color: rgba(246, 241, 228, 0.86); max-width: 38em; }
.section-cream .section-body { color: var(--ink-soft); }
.section-header-center { text-align: center; }
.section-header-center .section-body { margin-left: auto; margin-right: auto; }

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

/* ===== Pillars / cards with photo + caption ===== */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.pillar-card { position: relative; border-radius: 14px; overflow: hidden; min-height: 340px; background: var(--bg-dark-2); }
.pillar-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pillar-caption { position: absolute; inset: auto 0 0 0; background: linear-gradient(180deg, rgba(27,42,24,0) 0%, rgba(27,42,24,0.94) 38%); padding: 56px 18px 20px; }
.pillar-caption h3 { font-size: 21px; color: var(--gold-light); line-height: 1.1; }
.pillar-caption p { margin-top: 6px; font-size: 13.5px; line-height: 1.55; color: rgba(246, 241, 228, 0.88); }

/* ===== Signature / menu dish cards ===== */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.dish-grid.dish-grid-menu { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.dish-card { background: var(--off-white); border: 1px solid rgba(23, 78, 61, 0.12); border-radius: 14px; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dish-card-dark { position: relative; border-radius: 12px; overflow: hidden; min-height: 290px; background: var(--bg-dark-3); }
.dish-card-dark img, .dish-card-dark .photo-pending { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dish-card-dark .pillar-caption { padding: 60px 18px 18px; }
.dish-card-dark .pillar-caption h3 { font-size: 22px; color: var(--cream); }
.dish-photo { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.dish-photo img, .dish-photo .photo-pending { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dish-card:hover .dish-photo img { transform: scale(1.05); }

.stock-tag {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: rgba(13, 42, 33, 0.72); color: rgba(246, 241, 228, 0.92);
  font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
}
.dish-info { padding: 20px; }
.dish-info h3 { font-size: 19px; color: var(--bg-dark-2); line-height: 1.25; }
.dish-cat { font-size: 11px; letter-spacing: 0.16em; font-weight: 700; color: var(--brown-gold); margin-bottom: 8px; }

.photo-pending {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(155deg, #1B2A18 0%, #14200F 100%);
  color: rgba(246, 241, 228, 0.55);
  font-size: 11px; letter-spacing: 0.1em; font-weight: 700; text-transform: uppercase;
  padding: 12px;
}
.photo-pending span { display: block; }
.photo-pending .pp-icon { font-size: 20px; margin-bottom: 6px; opacity: 0.7; }

/* ===== Chips (filters) ===== */
.chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; }
.chip {
  font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; padding: 12px 18px; border-radius: 999px;
  cursor: pointer; white-space: nowrap; border: 1px solid rgba(201, 162, 74, 0.5);
  color: var(--cream); background: transparent;
}
.chip.is-active { color: var(--bg-dark); background: var(--gold); }

/* ===== Stats row ===== */
.stats-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 32px; }
.stat-big { font-size: 24px; font-weight: 700; color: var(--gold); text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55); }
.stat-small { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: var(--cream); margin-top: 4px; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }

/* ===== On-photo text (headings/body sitting directly on a background image) ===== */
.on-photo .kicker { text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55); }
.on-photo .section-title { font-weight: 700; color: var(--cream); text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.5); }
.on-photo .section-body { color: var(--cream); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); }

/* ===== Perfect-for band ===== */
.perfect-for { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 64px); }
.perfect-for-label { font-size: 11px; letter-spacing: 0.2em; color: var(--brown-gold); font-weight: 700; }
.perfect-for-item { font-family: var(--font-heading); font-size: clamp(20px, 2.6vw, 30px); color: var(--bg-dark-2); text-transform: uppercase; }

/* ===== Gallery grid ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 36px; }
.gallery-grid.gallery-grid-sm { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gallery-item { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; background: #E3DCC6; }
.gallery-item.square { aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Timeline / info rows ===== */
.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(20px, 3vw, 36px); margin-top: clamp(32px, 4vw, 56px); }
.timeline-item { border-top: 1px solid rgba(201, 162, 74, 0.4); padding-top: 20px; }
.timeline-num { font-size: 30px; color: var(--gold); }
.timeline-body { margin-top: 12px; font-size: 16px; line-height: 1.7; color: rgba(246, 241, 228, 0.88); }

.info-rows { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.info-row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(246, 241, 228, 0.14); padding-bottom: 12px; }
.info-row-k { font-size: 11px; letter-spacing: 0.14em; color: rgba(246, 241, 228, 0.6); font-weight: 700; }
.info-row-v { font-size: 15px; color: var(--cream); text-align: right; }

.boat-card { border: 1px solid rgba(201, 162, 74, 0.35); border-radius: 16px; padding: clamp(24px, 3vw, 36px); background: rgba(246, 241, 228, 0.04); }
.boat-card h3 { font-size: 28px; color: var(--gold-light); }
.boat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: clamp(30px, 4vw, 50px); }

.offer-card { background: var(--off-white); border: 1px solid rgba(23, 78, 61, 0.12); border-radius: 14px; overflow: hidden; }
.offer-photo { aspect-ratio: 4/3; background: #E3DCC6; }
.offer-photo img { width: 100%; height: 100%; object-fit: cover; }
.offer-body { padding: 22px; }
.offer-kicker { font-size: 11px; letter-spacing: 0.2em; color: var(--brown-gold); font-weight: 700; }
.offer-text { margin-top: 10px; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }

/* ===== Experience cards: photo + overlapping icon badge + text ===== */
.experience-card { background: var(--off-white); border: 1px solid rgba(23, 78, 61, 0.12); border-radius: 14px; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.experience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.experience-card-photo { aspect-ratio: 4/3; position: relative; }
.experience-card-photo img, .experience-card-photo .photo-pending { width: 100%; height: 100%; object-fit: cover; }
.experience-card-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--bg-dark-2); border: 3px solid var(--off-white);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  margin: -26px auto 0; position: relative; box-shadow: var(--shadow-sm);
}
.experience-card-body { padding: 20px 20px 24px; text-align: center; }
.experience-card-body h3 { font-size: 19px; color: var(--bg-dark-2); }
.experience-card-body p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

.badge-pill { display: inline-block; margin-top: 12px; background: var(--gold); color: var(--bg-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 7px 14px; border-radius: 999px; }
.badge-pill-light { background: rgba(201, 162, 74, 0.16); color: var(--gold-light); }

.facility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.pick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 16px; }

/* ===== Facility cards: line-icon badge + title row, text below ===== */
.facility-card { background: var(--off-white); border: 1px solid rgba(23, 78, 61, 0.1); border-radius: 12px; padding: 24px 22px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.facility-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(201, 162, 74, 0.4); }
.facility-card-head { display: flex; align-items: center; gap: 14px; }
.facility-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: rgba(201, 162, 74, 0.12); color: var(--brown-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 17px; font-weight: 700;
}
.facility-icon svg { width: 21px; height: 21px; }
.facility-card h3 { font-size: 15px; color: var(--bg-dark-2); line-height: 1.3; }
.facility-card p { margin-top: 12px; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }

/* ===== Pick cards: photo + title + text + CTA, on dark background ===== */
.pick-card { background: rgba(246, 241, 228, 0.045); border: 1px solid rgba(201, 162, 74, 0.22); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.pick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 74, 0.5); }
.pick-card-photo { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.pick-card-photo img, .pick-card-photo .photo-pending { width: 100%; height: 100%; object-fit: cover; }
.pick-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pick-card-body h3 { font-size: 18px; color: var(--cream); }
.pick-card-body p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: rgba(246, 241, 228, 0.75); flex: 1; }
.pick-card-body .btn { margin-top: 16px; align-self: flex-start; padding: 12px 18px; font-size: 10.5px; }

/* ===== Value icon list: small icon + label pairs ===== */
.value-icon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.value-icon-item { display: flex; align-items: center; gap: 10px; }
.value-icon-item .icon { font-size: 20px; flex-shrink: 0; }
.value-icon-item span:last-child { font-size: 14px; font-weight: 500; color: var(--ink); }

/* ===== Trust row: small icon + label, inline ===== */
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(16px, 3vw, 36px); margin-top: 28px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; color: rgba(246, 241, 228, 0.85); }
.trust-item .icon { font-size: 16px; }

.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-photo { aspect-ratio: 3/4; border-radius: 12px; overflow: hidden; }
.about-photo.offset { margin-top: 28px; }
.about-photo img, .about-photo .photo-pending { width: 100%; height: 100%; object-fit: cover; }

.quote-line { margin-top: clamp(40px, 5vw, 70px); text-align: center; font-family: var(--font-heading); font-style: italic; font-size: clamp(20px, 3vw, 32px); color: var(--bg-dark-2); }
.quote-line-alt { font-family: var(--font-heading); font-style: italic; font-size: clamp(17px, 2.4vw, 26px); color: var(--gold-light); line-height: 1.5; margin-top: 20px; }

.note-box { margin-top: 28px; font-size: 13.5px; line-height: 1.7; color: var(--ink-faint); border-left: 2px solid var(--gold); padding-left: 16px; max-width: 56em; }
.note-box-dark { color: rgba(246, 241, 228, 0.62); border-left-color: rgba(201, 162, 74, 0.6); }

/* ===== Info band (waktu operasi / lokasi CTA) ===== */
.info-band-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(24px, 3vw, 48px); align-items: center; }
.info-band-label { font-size: 10.5px; letter-spacing: 0.2em; color: var(--gold); font-weight: 700; }
.info-band-value { margin-top: 10px; font-size: 15.5px; line-height: 1.6; color: rgba(246, 241, 228, 0.9); }

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 56px); }
.contact-block { display: flex; flex-direction: column; gap: 26px; }
.contact-label { font-size: 10.5px; letter-spacing: 0.2em; color: var(--brown-gold); font-weight: 700; }
.contact-value { margin-top: 10px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.contact-value a { color: var(--bg-dark-2); }
.map-embed { min-height: 380px; border-radius: 16px; overflow: hidden; border: 0; width: 100%; height: 100%; }
.map-wrap { min-height: 380px; border-radius: 16px; overflow: hidden; background: #E3DCC6; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-dark-3); padding: clamp(48px, 6vw, 80px) var(--section-x) 32px; border-top: 1px solid rgba(201, 162, 74, 0.2); }
.footer-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(28px, 4vw, 56px); }
.footer-brand-row { display: flex; align-items: center; gap: 12px; }
.footer-brand-row img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.footer-desc { margin-top: 18px; font-size: 14px; line-height: 1.7; color: rgba(246, 241, 228, 0.6); max-width: 26em; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(246, 241, 228, 0.28); color: var(--cream);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-heading { font-size: 10.5px; letter-spacing: 0.2em; color: var(--cream); font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.footer-links a, .footer-links span { font-size: 14px; color: rgba(246, 241, 228, 0.7); }
.footer-hours { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer-hours span { font-size: 14px; color: rgba(246, 241, 228, 0.7); }
.footer-hours .is-closed { color: var(--gold); }
.footer-bottom {
  max-width: var(--container); margin: clamp(36px, 4vw, 56px) auto 0; padding-top: 22px;
  border-top: 1px solid rgba(246, 241, 228, 0.1); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}
.footer-bottom span { font-size: 12.5px; color: rgba(246, 241, 228, 0.5); }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(48px, 6vw, 80px); }
