/*
Theme Name: Spero Project Theme
Theme URI: https://speroproject.com/
Author: Spero Design Studio
Author URI: https://speroproject.com/
Description: Official WordPress Theme for Spero Project. Inspired by Tandjung Sari Hotel editorial sophistication and built for Spero's brand foundation: "Create value where others see none." Fully customizable by non-technical clients.
Version: 1.0.0
Text Domain: spero
*/

/* ==========================================================================
   SPERO PROJECT — OFFICIAL HORIZONTAL DESIGN SYSTEM & STYLESHEET
   Direct Re-creation of Tandjung Sari Hotel Layout Architecture & Experience
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Primary Spero Palette */
  --deep-forest: #263F32;
  --forest: #385743;
  --bone: #F4F0E7;
  --white: #FFFFFF;
  --ink: #1F2923;

  /* Secondary Accent Palette */
  --sage: #82947B;
  --clay: #B66A50;
  --ochre: #C49A4A;
  --dust: #8D9790;

  /* UI & Border Tokens */
  --border-light: rgba(31, 41, 35, 0.12);
  --border-dark: rgba(244, 240, 231, 0.15);

  /* Typography Stack */
  --font-headline: 'Canela', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-headline-italic: 'Canela Italic', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Suisse Int\'l', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Dimensions */
  --sidebar-width: 64px;
  --header-height-mobile: 64px;

  /* Easing */
  --ease-editorial: cubic-bezier(0.24, 0.43, 0.15, 0.97);
  --transition-slow: 0.8s var(--ease-editorial);
  --transition-medium: 0.4s ease;
}

/* --------------------------------------------------------------------------
   02. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; /* Desktop horizontal canvas locks window scroll */
  background-color: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

img, video {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   03. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .font-headline {
  font-family: var(--font-headline);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.font-editorial-italic {
  font-family: var(--font-headline-italic);
  font-style: italic;
}

.h1-hero {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.08;
}

.h2-editorial {
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.12;
}

.h3-section {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.25rem;
  display: block;
  font-weight: 500;
}

.body-large {
  font-size: 1rem; /* approx 16px */
  line-height: 1.7;
  opacity: 0.85;
  font-weight: 400;
}

.caption {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

.link-editorial {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.link-editorial::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-slow);
}

.link-editorial:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --------------------------------------------------------------------------
   04. DESKTOP FIXED SIDEBAR NAVIGATION (REF: TANDJUNG SARI)
   -------------------------------------------------------------------------- */
#desktop-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background-color: var(--deep-forest);
  color: var(--bone);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2.25rem 0;
  border-right: 1px solid var(--border-dark);
}

.sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.sidebar-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--bone);
}

.sidebar-logo-text {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

.sidebar-menu-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: var(--bone);
}

.menu-burger-icon {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-burger-icon span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--bone);
  transition: transform var(--transition-medium);
}

.menu-vertical-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

.sidebar-contact {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   05. SLIDING MENU DRAWER (REF: TANDJUNG SARI)
   -------------------------------------------------------------------------- */
#menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  display: flex;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.8s;
}

#menu-drawer.active {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.menu-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

#menu-drawer.active .menu-overlay-backdrop {
  opacity: 1;
}

.menu-drawer-panel {
  position: relative;
  margin-left: var(--sidebar-width);
  width: calc(100vw - var(--sidebar-width));
  height: 100%;
  background-color: var(--deep-forest);
  color: var(--bone);
  display: grid;
  grid-template-columns: 38% 62%;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  z-index: 2;
}

#menu-drawer.active .menu-drawer-panel {
  transform: translateX(0);
}

.menu-preview-column {
  border-right: 1px solid var(--border-dark);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(0,0,0,0.18);
}

.menu-preview-card {
  width: 100%;
  height: 65%;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-links-column {
  padding: 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.menu-primary-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.menu-nav-link {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  color: var(--bone);
  opacity: 0.45;
  transition: opacity var(--transition-medium), transform var(--transition-medium);
  display: inline-block;
}

.menu-nav-link:hover, .menu-nav-link.active {
  opacity: 1;
  transform: translateX(14px);
}

.menu-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--border-dark);
  padding-top: 2.5rem;
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   06. MOBILE HEADER (< 768px)
   -------------------------------------------------------------------------- */
#mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-mobile);
  background-color: var(--deep-forest);
  color: var(--bone);
  z-index: 1000;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-dark);
}

/* --------------------------------------------------------------------------
   07. DESKTOP HORIZONTAL SCROLL CANVAS & VIEWPORT ENGINE
   -------------------------------------------------------------------------- */
#horizontal-viewport {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  width: calc(100vw - var(--sidebar-width));
  height: 100vh;
  overflow: hidden;
  background-color: var(--bone);
}

#horizontal-track {
  display: flex;
  height: 100vh;
  width: max-content;
  will-change: transform;
}

/* Panel Base Configuration */
.panel {
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border-light);
  overflow: hidden;
}

/* Specific Panel Widths & Layouts (Recreating Tandjung Sari Editorial Rhythm) */

/* Panel 01 — Hero (100vw) */
.panel-hero {
  width: calc(100vw - var(--sidebar-width));
  background-color: var(--deep-forest);
  color: var(--bone);
  align-items: flex-end;
  padding-bottom: 6rem;
  padding-left: 6rem;
  border-right: none;
}

.panel-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.panel-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(38,63,50,0.3) 0%, rgba(38,63,50,0.85) 100%);
  z-index: 2;
}

.panel-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero-desktop-text {
  display: inline;
}

.hero-mobile-text {
  display: none;
}

.material-header-wrap,
.products-header-wrap {
  width: 100%;
}

.material-header-row,
.products-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

/* Panel 02 — Intro / Our Belief (110vw) */
.panel-intro {
  width: 110vw;
  background-color: var(--bone);
  padding: 0 8rem;
  display: grid;
  grid-template-columns: 3.5fr 7.5fr;
  gap: 8.5rem;
  align-content: center;
}

.intro-heading-col {
  display: flex;
  flex-direction: column;
}

.intro-content-col {
  display: flex;
  flex-direction: column;
}

/* Panel 03 — Material & Second Life (145vw) */
.panel-material {
  width: 145vw;
  background-color: var(--white);
  padding: 0 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizontal-material-row {
  display: grid;
  grid-template-columns: 3.5fr 3.5fr 3.5fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.material-item-frame {
  width: 100%;
  height: 48vh;
  background-color: var(--bone);
  margin-bottom: 1.5rem;
}

/* Panel 04 — People & Possibility (120vw) */
.panel-people {
  width: 120vw;
  background-color: var(--bone);
  padding: 0 6rem;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-content: center;
}

.people-hero-frame {
  width: 100%;
  height: 68vh;
}

/* Panel 05 — Craft & Design (130vw) */
.panel-craft {
  width: 130vw;
  background-color: var(--deep-forest);
  color: var(--bone);
  padding: 0 7rem;
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 6rem;
  align-content: center;
}

.craft-visual-frame {
  width: 100%;
  height: 60vh;
}

/* Panel 06 — Products & Design Showcase (140vw) */
.panel-products {
  width: 140vw;
  background-color: var(--bone);
  padding: 0 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizontal-product-row {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 5rem;
  margin-top: 3.5rem;
}

.product-item-frame {
  width: 100%;
  height: 46vh;
  border: 1px solid var(--border-light);
  background-color: var(--white);
}

/* Panel 07 — Projects (110vw) */
.panel-projects {
  width: 110vw;
  background-color: var(--white);
  padding: 0 6rem;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 5rem;
  align-content: center;
}

/* Panel 08 — Journal / Stories (130vw) */
.panel-journal {
  width: 130vw;
  background-color: var(--bone);
  padding: 0 6rem;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 5rem;
  align-content: center;
}

/* Panel 09 — Tactile Gallery (150vw) */
.panel-gallery {
  width: 150vw;
  background-color: var(--white);
  padding: 0 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizontal-gallery-strip {
  display: flex;
  gap: 2.5rem;
  height: 55vh;
  margin-top: 3rem;
}

.gallery-strip-item {
  height: 100%;
  flex-shrink: 0;
}

.strip-w-wide { width: 45vw; }
.strip-w-tall { width: 28vw; }
.strip-w-square { width: 32vw; }

/* Panel 10 — Closing Statement & Footer (100vw) */
.panel-closing {
  width: calc(100vw - var(--sidebar-width));
  background-color: var(--deep-forest);
  color: var(--bone);
  display: grid;
  grid-template-rows: 55% 45%;
  padding: 0;
  border-right: none;
}

.closing-hero-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 4rem;
  border-bottom: 1px solid var(--border-dark);
}

.brand-principle-text {
  font-family: var(--font-headline-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.15vw, 2.35rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 1500px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.footer-bottom-half {
  background-color: #1a2c23;
  padding: 3rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-instagram-link {
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
  text-decoration: none;
}

.footer-instagram-link:hover {
  color: var(--bone);
  opacity: 1;
  background-color: rgba(244, 240, 231, 0.08);
  transform: translateY(-2px);
}

.footer-instagram-link svg {
  pointer-events: none;
  width: 22px;
  height: 22px;
  display: block;
}

/* --------------------------------------------------------------------------
   08. SPERO REAL ASSET PLACEHOLDER FRAMEWORK
   -------------------------------------------------------------------------- */
.spero-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--bone);
  background-image: 
    linear-gradient(45deg, rgba(38,63,50,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(38,63,50,0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(38,63,50,0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(38,63,50,0.03) 75%);
  background-size: 24px 24px;
  border: 1px dashed var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--forest);
}

.spero-image-placeholder.dark-theme {
  background-color: rgba(255,255,255,0.04);
  border-color: var(--border-dark);
  color: var(--bone);
}

.spero-image-placeholder svg {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  opacity: 0.6;
  fill: currentColor;
}

.placeholder-asset-tag {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.placeholder-asset-desc {
  font-size: 0.8125rem;
  opacity: 0.8;
  max-width: 280px;
  line-height: 1.4;
}

.placeholder-drive-badge {
  margin-top: 0.75rem;
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  background-color: rgba(38,63,50,0.08);
  border-radius: 2px;
}

.spero-image-placeholder.dark-theme .placeholder-drive-badge {
  background-color: rgba(244,240,231,0.1);
}

/* Real Photography Display Rules */
.hero-bg img,
.material-item-frame img,
.people-hero-frame img,
.craft-visual-frame img,
.product-item-frame img,
.gallery-strip-item img,
.project-visual-frame img,
.journal-visual-frame img,
.menu-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.material-item-frame,
.people-hero-frame,
.craft-visual-frame,
.product-item-frame,
.gallery-strip-item,
.project-visual-frame,
.journal-visual-frame {
  overflow: hidden;
  position: relative;
}

/* --------------------------------------------------------------------------
   09. INTERACTIVE CLIENT CMS STUDIO (LIVE PREVIEW DEMO)
   -------------------------------------------------------------------------- */
#cms-studio-toggle-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  background-color: var(--deep-forest);
  color: var(--bone);
  padding: 12px 20px;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-dark);
}

#cms-studio-panel {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 380px;
  max-height: 520px;
  background-color: var(--white);
  color: var(--ink);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  z-index: 2000;
  display: none;
  flex-direction: column;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

#cms-studio-panel.active {
  display: flex;
}

.cms-panel-header {
  background-color: var(--deep-forest);
  color: var(--bone);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cms-panel-header h4 {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cms-panel-body {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cms-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cms-field-group label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest);
}

.cms-field-group input, .cms-field-group textarea {
  width: 100%;
  padding: 8px 12px;
  font-size: 0.875rem;
  border: 1px solid var(--border-light);
  background-color: var(--bone);
  border-radius: 4px;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   10. RESPONSIVE MOBILE ADAPTATION (< 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  html, body {
    overflow-y: auto !important; /* Allow normal mobile vertical touch scroll */
  }

  #desktop-sidebar {
    display: none !important;
  }

  #mobile-header {
    display: flex !important;
  }

  #horizontal-viewport {
    position: relative;
    left: 0;
    width: 100vw;
    height: auto;
    overflow-y: auto;
    padding-top: var(--header-height-mobile);
  }

  #horizontal-track {
    display: block;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .panel {
    width: 100% !important;
    height: auto !important;
    min-height: 80vh;
    padding: 4rem 1.5rem !important;
    display: block !important;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .panel-hero {
    min-height: 90vh;
    display: flex !important;
    align-items: flex-end !important;
    padding-bottom: 4rem !important;
  }

  .panel-intro, .panel-people, .panel-craft, .panel-projects, .panel-journal {
    display: block !important;
  }

  .horizontal-material-row, .horizontal-product-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .horizontal-gallery-strip {
    flex-direction: column;
    height: auto;
  }

  .strip-w-wide, .strip-w-tall, .strip-w-square {
    width: 100%;
    height: 350px;
  }

  .people-hero-frame {
    height: 380px !important;
    margin-bottom: 2rem;
  }

  .craft-visual-frame {
    height: 340px !important;
    margin-top: 2rem;
  }

  .project-visual-frame {
    height: 360px !important;
    margin-bottom: 2rem;
  }

  .journal-visual-frame {
    height: 320px !important;
    margin-bottom: 1.5rem;
  }

  .panel-journal > div:nth-child(2) {
    border-left: none !important;
    padding-left: 0 !important;
    margin-top: 2rem !important;
  }

  .panel-projects > div:nth-child(2) {
    padding-left: 0 !important;
  }

  .panel-closing {
    display: block !important;
  }

  /* 1. HERO HEADLINE: Exactly two lines on mobile, visually strong */
  .hero-desktop-text {
    display: none !important;
  }

  .hero-mobile-text {
    display: block !important;
    white-space: normal;
  }

  .panel-hero .h1-hero {
    font-size: clamp(2rem, 8.4vw, 2.35rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
  }

  .hero-line-2 {
    display: inline-block;
    white-space: nowrap;
  }

  /* 2. MATERIAL & SECOND LIFE: Headline + Body side by side */
  .material-eyebrow {
    white-space: nowrap !important;
    margin-bottom: 1.25rem !important;
    display: block;
  }

  .material-header-row {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    gap: 1.25rem !important;
    align-items: start !important;
    width: 100% !important;
    margin-bottom: 2.5rem !important;
  }

  .material-heading-col .h2-editorial {
    font-size: clamp(1.5rem, 5.2vw, 1.85rem) !important;
    line-height: 1.14 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
  }

  .material-desc-col p {
    font-size: clamp(0.8125rem, 2.8vw, 0.875rem) !important;
    line-height: 1.55 !important;
    opacity: 0.82 !important;
    margin: 0 !important;
  }

  /* 5. WHAT WE MAKE: Eyebrow on one line, Headline + Text side by side */
  .products-eyebrow {
    white-space: nowrap !important;
    margin-bottom: 1.25rem !important;
    display: block;
  }

  .products-header-row {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    gap: 1.25rem !important;
    align-items: start !important;
    width: 100% !important;
    margin-bottom: 2.5rem !important;
  }

  .products-heading-col .h2-editorial {
    font-size: clamp(1.5rem, 5.2vw, 1.85rem) !important;
    line-height: 1.14 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
  }

  .products-desc-col p {
    font-size: clamp(0.8125rem, 2.8vw, 0.875rem) !important;
    line-height: 1.55 !important;
    opacity: 0.82 !important;
    margin: 0 !important;
  }

  .intro-heading-col {
    margin-bottom: 2.5rem;
  }

  /* 6. BRAND PRINCIPLE: Full editorial italic */
  .brand-principle-text {
    white-space: normal !important;
    font-size: clamp(1.25rem, 4.5vw, 1.85rem) !important;
    line-height: 1.35 !important;
    font-family: var(--font-headline-italic) !important;
    font-style: italic !important;
  }

  .menu-drawer-panel {
    margin-left: 0;
    width: 100vw;
    grid-template-columns: 1fr;
  }

  .menu-preview-column {
    display: none;
  }

  .menu-links-column {
    padding: 6rem 2rem 3rem 2rem;
  }

  .menu-nav-link {
    font-size: 2.25rem;
  }
}
