/* ==========================================================================
   NAFIYA SKIN CARE — BESPOKE BOUTIQUE DESIGN SYSTEM
   Location: Ruko Ijo (Utara RSUD), Tempuran, Bangunsari, Dolopo, Madiun
   Aesthetic: High-End Editorial, Warm Porcelain, Cashmere & Rosewood
   Zero Generic AI Slop / Artisanal Craftsmanship
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BESPOKE COLOR SYSTEM & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces & Ambient Backgrounds */
  --bg-color: #FAF6F4;
  --surface: #FAF6F4;
  --surface-warm: #FFF9F7;
  --surface-cream: #F4EBE6;
  --surface-card: #FFFFFF;
  --surface-subtle: #F6ECE8;

  /* Brand Signature Colors */
  --primary: #7A4854;            /* Deep velvet rosewood */
  --primary-hover: #633742;      /* Rich dark berry rosewood */
  --primary-soft: #D99EA9;       /* Soft blush accent */
  --primary-light: #F4DFE4;      /* Delicate tint */
  --primary-glow: rgba(122, 72, 84, 0.08);

  /* Secondary & Accents */
  --secondary: #8E5664;
  --gold-accent: #C29B72;        /* Subtle warm champagne gold */
  
  /* Text & Typography Colors */
  --text-main: #241D1F;          /* Deep espresso charcoal */
  --text-muted: #5A4C50;         /* Warm slate brown */
  --text-light: #8A7A7E;         /* Soft muted caption */
  --on-primary: #FFFFFF;

  /* Editorial Borders & Dividers */
  --border-hairline: rgba(122, 72, 84, 0.12);
  --border-focus: rgba(122, 72, 84, 0.35);
  --border-light: rgba(36, 29, 31, 0.06);

  /* Typography Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Layout */
  --container-width: 1180px;
  --gutter-desktop: 32px;
  --gutter-mobile: 20px;
  --section-pad-desktop: 108px;
  --section-pad-mobile: 68px;
  --header-height: 84px;

  /* Radii & Elevations */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 4px 20px rgba(36, 29, 31, 0.04);
  --shadow-soft: 0 10px 30px rgba(36, 29, 31, 0.06);
  --shadow-elevated: 0 20px 48px rgba(36, 29, 31, 0.09);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & FOUNDATION
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   3. EDITORIAL TYPOGRAPHY HIERARCHY
   -------------------------------------------------------------------------- */
.display-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--text-main);
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--text-main);
}

.heading-md {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-main);
}

.heading-sm {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-main);
}

.sub-lead {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
}

.body-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 400;
}

.meta-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background-color: var(--primary);
}

.text-accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   4. LAYOUT & GRID UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-desktop);
  padding-right: var(--gutter-desktop);
}

.section-spacing {
  padding-top: var(--section-pad-desktop);
  padding-bottom: var(--section-pad-desktop);
}

.bg-warm {
  background-color: var(--surface-warm);
}

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

.bg-subtle {
  background-color: var(--surface-subtle);
}

.hairline-divider-top {
  border-top: 1px solid var(--border-hairline);
}

.hairline-divider-bottom {
  border-bottom: 1px solid var(--border-hairline);
}

/* --------------------------------------------------------------------------
   5. BESPOKE BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary);
  color: var(--on-primary);
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(122, 72, 84, 0.22);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 8px 22px rgba(122, 72, 84, 0.32);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid rgba(122, 72, 84, 0.35);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 11px;
}

.badge-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-subtle);
}

.badge-social-proof .stars {
  color: var(--primary);
  font-size: 16px;
  letter-spacing: -2px;
}

.badge-social-proof .rating-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   6. HEADER & BESPOKE NAVBAR
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(250, 246, 244, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-hairline);
  z-index: 100;
  transition: var(--transition);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logomark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-item {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.25s ease, left 0.25s ease;
}

.nav-item:hover, .nav-item.active {
  color: var(--primary);
}

.nav-item.active::after, .nav-item:hover::after {
  width: 100%;
  left: 0;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger button */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 101;
  background: transparent;
}

.hamburger-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Slide Down Menu */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(36, 29, 31, 0.4);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.is-active {
  display: block;
  opacity: 1;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 85vh;
  background-color: var(--surface-warm);
  padding: calc(var(--header-height) + 16px) var(--gutter-mobile) 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 20px 48px rgba(36, 29, 31, 0.15);
  border-bottom: 1px solid var(--border-hairline);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.35s;
  overflow-y: auto;
}

.mobile-menu-drawer.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-item {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-main);
  padding: 12px 0;
  border-bottom: 1px solid rgba(122, 72, 84, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* --------------------------------------------------------------------------
   7. HERO SECTION (EDITORIAL ASYMMETRY)
   -------------------------------------------------------------------------- */
.hero-editorial {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: var(--section-pad-desktop);
  background: radial-gradient(circle at 80% 20%, rgba(217, 158, 169, 0.15) 0%, transparent 60%),
              var(--bg-color);
}

.hero-grid-2col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-narrative {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.hero-photo-frame {
  position: relative;
  height: 68vh;
  min-height: 480px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform: translateY(16px);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-photo-frame:hover img {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   8. CHAPTER / PHILOSOPHY SECTION (01)
   -------------------------------------------------------------------------- */
.chapter-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 68px;
  align-items: center;
}

.chapter-media-wrap {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.chapter-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chapter-text-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 48px;
  border-left: 1px solid var(--border-hairline);
}

.chapter-ghost-number {
  font-family: var(--font-serif);
  font-size: 88px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: -44px;
  left: 20px;
  user-select: none;
}

/* --------------------------------------------------------------------------
   9. EDITORIAL SPA TREATMENT MENU
   -------------------------------------------------------------------------- */
.menu-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.menu-list-wrap {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-hairline);
}

.menu-list-row {
  display: grid;
  grid-template-columns: 2.2fr 3fr 1.2fr;
  align-items: center;
  padding: 30px 20px;
  border-bottom: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
  text-decoration: none;
  gap: 24px;
}

.menu-list-row:hover {
  background-color: rgba(122, 72, 84, 0.03);
}

.menu-item-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-main);
  transition: color var(--transition);
}

.menu-list-row:hover .menu-item-title {
  color: var(--primary);
}

.menu-item-badge {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   10. PILLARS OF CARE (4 ATTRIBUTES)
   -------------------------------------------------------------------------- */
.pillars-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.pillar-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-pill);
  background-color: rgba(122, 72, 84, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.pillar-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

/* --------------------------------------------------------------------------
   11. BESPOKE GALLERY SHOWCASE & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-composition {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 24px;
}

.gallery-large-frame {
  height: 440px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  position: relative;
}

.gallery-side-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery-small-frame {
  height: 208px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  position: relative;
}

.gallery-large-frame img, .gallery-small-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-large-frame:hover img, .gallery-small-frame:hover img {
  transform: scale(1.03);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(24, 18, 20, 0.94);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox-modal.is-active {
  display: flex;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  max-width: 920px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-elevated);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: 17px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--primary);
}

/* --------------------------------------------------------------------------
   12. AUTHENTIC GOOGLE REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card-bespoke {
  background-color: var(--surface-card);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-hairline);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--primary);
  font-size: 16px;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.review-quote {
  font-family: var(--font-sans);
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.review-author-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.review-author-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
}

.review-source-tag {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   13. PHYSICAL LOCATION & WAYFINDING CARD
   -------------------------------------------------------------------------- */
.wayfinding-box {
  background-color: var(--surface-warm);
  border-radius: var(--radius-xl);
  padding: 56px;
  border: 1px solid var(--border-hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-subtle);
}

.wayfinding-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wayfinding-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.wayfinding-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.map-embed-container {
  height: 380px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-hairline);
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   14. FLOATING ACTION BUTTON (ELEGANT CIRCLE)
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background-color: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(122, 72, 84, 0.35);
  z-index: 95;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px) scale(1.05);
}

.floating-whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   15. FOOTER ARCHITECTURE
   -------------------------------------------------------------------------- */
.footer-bespoke {
  background-color: var(--surface-cream);
  padding-top: var(--section-pad-mobile);
  padding-bottom: 32px;
  border-top: 1px solid var(--border-hairline);
}

.footer-grid-3col {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-item {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav-item:hover {
  color: var(--primary);
}

.footer-bottom-row {
  border-top: 1px solid var(--border-hairline);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE REFINEMENTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-photo-frame {
    height: 48vh;
    transform: none;
  }

  .chapter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chapter-text-wrap {
    padding-left: 0;
    border-left: none;
  }

  .chapter-ghost-number {
    display: none;
  }

  .menu-list-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .pillars-grid-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .reviews-grid-3col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wayfinding-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .footer-grid-3col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter-desktop: 20px;
    --section-pad-desktop: 64px;
    --section-pad-mobile: 48px;
    --header-height: 72px;
  }

  .nav-links-desktop, .header-action .btn-primary {
    display: none;
  }

  .hamburger-toggle {
    display: flex;
  }

  .display-title {
    font-size: 36px;
  }

  .heading-lg {
    font-size: 28px;
  }

  .heading-md {
    font-size: 22px;
  }

  .gallery-composition {
    grid-template-columns: 1fr;
  }

  .gallery-large-frame, .gallery-side-stack, .gallery-small-frame {
    height: 250px;
  }

  .pillars-grid-4col {
    grid-template-columns: 1fr;
  }

  .hero-actions-row .btn-primary, .hero-actions-row .btn-outline {
    width: 100%;
    text-align: center;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
