/* =========================================================
   DÉCAF. — NEW ERA COFFEE
   Luxury Bento-Grid & Kiosk Menu Design System
   ========================================================= */

:root {
  --cream: #FAF6F0;
  --ink: #1C1512;
  --caramel: #B87B44;
  --caramel-deep: #966133;
  --tan: #ECE4D8;
  --line: rgba(190, 165, 145, 0.28);
  --font-display: 'Fraunces', 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Jost', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --bg-page: var(--cream);
  --bg-bento: #F2ECE1;
  --bg-bento-sub: #F0E9DD;
  --bg-card: #FFFFFF;
  --bg-pill: var(--tan);
  
  --ink-primary: var(--ink);
  --ink-secondary: #584A42;
  --ink-muted: #8E8077;
  --ink-light: #B8ADA4;
  
  --accent-caramel: var(--caramel);
  --accent-espresso: #241A14;
  
  --border-line: var(--line);
  --border-subtle: rgba(190, 165, 145, 0.16);
  
  --font-serif: var(--font-display);
  --font-sans: var(--font-body);
  
  --shadow-sm: 0 2px 10px rgba(35, 25, 20, 0.04);
  --shadow-md: 0 8px 24px rgba(35, 25, 20, 0.08);
  --shadow-drawer: 0 16px 48px rgba(25, 18, 14, 0.2);
  
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

html, body {
  background-color: var(--bg-page);
  color: var(--ink-primary);
  font-family: var(--font-sans);
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

.kiosk-app {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   HEADER (Big Centered Logo + RU/UZ language switch)
   ========================================================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-line);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.header-right {
  justify-content: flex-end;
}

/* BIG CENTERED LOGO */
.header-center-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease;
  user-select: none;
  flex: 2;
}

.header-center-logo:hover {
  transform: scale(1.02);
}

.big-logo-img {
  height: 62px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

/* Action Buttons */
.header-action-btn {
  background: transparent;
  border: 1px solid var(--border-line);
  color: var(--ink-primary);
  height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-action-btn:hover {
  background: var(--bg-pill);
  border-color: var(--ink-primary);
}

.header-action-btn:active {
  transform: scale(0.96);
}

.cart-btn {
  position: relative;
  padding: 0 14px;
}

.cart-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--ink-primary);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-page);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-counter.bump {
  transform: scale(1.35);
}

/* Dual Language Switcher (RU / UZ Only) */
.lang-switch-pill {
  display: flex;
  align-items: center;
  background: var(--bg-pill);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
}

.lang-pill-btn {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.lang-pill-btn.active {
  background: var(--ink-primary);
  color: #FAF6F0;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   PAGE BODY & BENTO HERO GRID (Reference 2 Style)
   ========================================================= */
.page-body {
  flex: 1;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 24px 20px 80px;
}

.bento-hero-section {
  margin-bottom: 28px;
}

.bento-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.bento-card {
  background: var(--bg-bento);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.2s ease;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: #EEE7DC;
}

.bento-card-main {
  grid-column: span 2;
  grid-row: span 2;
  background: #EFE8DC;
  padding: 36px 32px;
}

.bento-main-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.22;
  font-weight: 600;
  color: var(--ink-primary);
  max-width: 320px;
}

.bento-sub-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-primary);
  letter-spacing: -0.01em;
  z-index: 2;
}

.bento-img-wrap {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-img-dish {
  width: 240px;
  height: 240px;
  right: -10px;
  bottom: -15px;
}

/* =========================================================
   STICKY CATEGORY NAV (Image-only chips, NO emoji icons!)
   ========================================================= */
.sticky-cat-nav {
  position: sticky;
  top: 67px;
  z-index: 50;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0 16px;
  margin-bottom: 24px;
}

.cat-nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 14px 4px;
}

.cat-nav-inner::-webkit-scrollbar {
  display: none;
}

.category-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFDF9;
  border: 1px solid var(--border-line);
  padding: 8px 18px 8px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-primary);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.cat-chip-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--bg-pill);
  flex-shrink: 0;
}

.cat-chip-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-chip:hover {
  border-color: var(--ink-primary);
  transform: translateY(-1px);
}

.category-chip.active {
  background: var(--ink-primary);
  border-color: var(--ink-primary);
  color: #FAF6F0;
  box-shadow: var(--shadow-md);
}

.category-chip.active .cat-chip-avatar {
  border: 2px solid #FAF6F0;
}

/* =========================================================
   MENU CATEGORIES & ITEM CARDS
   ========================================================= */
.menu-content-area {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.category-section-block {
  scroll-margin-top: 150px;
}

.section-title-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.section-title-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--ink-primary);
  white-space: nowrap;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border-line);
}

.items-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.menu-item-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-item-card.oos {
  opacity: 0.55;
}

.item-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-bento);
  position: relative;
}

.item-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item-card:hover .item-card-photo img {
  transform: scale(1.04);
}

.item-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.item-card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-primary);
  line-height: 1.25;
}

.item-card-desc {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.item-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-primary);
}

.item-card-add-btn {
  background: var(--bg-pill);
  border: 1px solid var(--border-line);
  color: var(--ink-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-item-card:hover .item-card-add-btn {
  background: var(--ink-primary);
  color: #FAF6F0;
  border-color: var(--ink-primary);
}

/* =========================================================
   MODAL & DRAWER STYLES
   ========================================================= */
.modal-backdrop, .drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 12, 0.65);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-sheet {
  background: #FFFDF9;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-drawer);
  max-height: 90vh;
  overflow-y: auto;
  animation: popIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close, .drawer-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--bg-pill);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--ink-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-photo {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  background: var(--bg-bento) center/cover no-repeat;
  margin-bottom: 20px;
}

.modal-item-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink-primary);
  margin-bottom: 8px;
}

.modal-item-desc {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.modal-price-row {
  display: flex;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-line);
}

.modal-price-badge {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-caramel-deep, #966133);
}

.modal-options-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.opt-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opt-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-primary);
  letter-spacing: 0.04em;
}

.opt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.opt-pill {
  background: var(--bg-pill);
  border: 1px solid var(--border-line);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-primary);
  cursor: pointer;
  transition: all 0.15s ease;
}

.opt-pill.active {
  background: var(--ink-primary);
  color: #FFF;
  border-color: var(--ink-primary);
}

.modal-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quantity-picker {
  display: flex;
  align-items: center;
  background: var(--bg-pill);
  border-radius: var(--radius-full);
  padding: 4px 8px;
  gap: 14px;
}

.qty-btn {
  background: #FFF;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-value {
  font-size: 15px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

.add-to-order-btn {
  flex: 1;
  background: var(--ink-primary);
  color: #FFF;
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.add-to-order-btn:hover {
  background: #2D231E;
}

/* Cart Drawer Panel */
.drawer-backdrop {
  justify-content: flex-end;
  padding: 0;
}

.cart-drawer-panel {
  background: #FFFDF9;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-drawer);
  animation: slideLeft 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header-title-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.cart-total-badge {
  background: var(--bg-pill);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-drawer-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border-line);
  background: #FFFDF9;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-type-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-pill);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}

.type-tab {
  background: transparent;
  border: none;
  padding: 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  border-radius: 9px;
  cursor: pointer;
}

.type-tab.active {
  background: #FFF;
  color: var(--ink-primary);
  box-shadow: var(--shadow-sm);
}

.table-input-container input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-line);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
  background: var(--bg-page);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-total-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
}

.cart-total-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-primary);
}

.cart-checkout-btn {
  background: var(--ink-primary);
  color: #FFF;
  border: none;
  border-radius: var(--radius-full);
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 18px rgba(28, 21, 18, 0.25);
  transition: background 0.2s ease;
}

.cart-checkout-btn:hover {
  background: #2D231E;
}

/* Search Sheet */
.search-sheet {
  background: #FFFDF9;
  width: 100%;
  max-width: 560px;
  height: 80vh;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.search-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-page);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-full);
  padding: 12px 18px;
  margin-bottom: 20px;
}

.search-header-row input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink-primary);
  outline: none;
}

.search-close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink-muted);
}

.search-results-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Toast */
.app-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: rgba(28, 21, 18, 0.94);
  backdrop-filter: blur(8px);
  color: #FFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */
@media (max-width: 900px) {
  .bento-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .bento-card-main {
    grid-column: span 2;
    grid-row: span 1;
    padding: 24px;
  }
  .bento-img-dish {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 600px) {
  .main-header {
    padding: 10px 16px;
  }
  .big-logo-img {
    height: 48px;
    max-width: 220px;
  }
  .btn-text-hide-mobile {
    display: none;
  }
  .page-body {
    padding: 16px 14px 60px;
  }
  .bento-container {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
    gap: 10px;
  }
  .bento-card {
    padding: 14px;
  }
  .bento-sub-title {
    font-size: 13px;
  }
  .bento-img-wrap {
    width: 90px;
    height: 90px;
  }
  .items-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .item-card-body {
    padding: 12px;
  }
  .item-card-title {
    font-size: 14px;
  }
}

/* =========================================================
   FOOTER (4 Columns Desktop -> 1 Column Mobile)
   ========================================================= */
.site-footer {
  margin-top: 48px;
  background-color: var(--tan);
  color: var(--ink);
  font-family: var(--font-body);
  border-top: 1px solid var(--line);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1.3fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 16px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: var(--ink);
  opacity: 0.85;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--caramel);
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--ink);
}

.footer-contact-item a {
  color: var(--caramel);
  font-weight: 600;
  text-decoration: none;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: var(--cream);
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: var(--caramel);
  color: var(--cream);
  border-color: var(--caramel);
}

.footer-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 160px;
  background: var(--cream);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 28px;
  text-align: center;
}

.footer-divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.65;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 20px;
  }
}

/* =========================================================
   PAGES: /about AND /faq STYLES
   ========================================================= */
.standalone-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 20px 60px;
  width: 100%;
}

.page-hero-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.page-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.page-hero-body {
  padding: 32px;
}

.page-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-text-content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  opacity: 0.9;
  white-space: pre-line;
}

/* FAQ Accordion Details/Summary */
.faq-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-details[open] {
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 22px;
  color: var(--caramel);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-details[open] .faq-summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer-body {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.88;
  border-top: 1px solid rgba(190, 165, 145, 0.12);
  padding-top: 14px;
}

/* Teaser / Main Page Sections */
.main-faq-section {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-top: 40px;
}

.main-section-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--ink);
}

.main-teaser-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
  align-items: center;
}

.teaser-about-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.btn-link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--caramel);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  margin-top: 14px;
  transition: gap 0.2s ease;
}

.btn-link-more:hover {
  gap: 10px;
}

@media (max-width: 700px) {
  .main-teaser-about {
    grid-template-columns: 1fr;
  }
}

