/* VALORA CINEMATIC AGENCY - DESIGN SYSTEM */

:root {
  --c-void: #0A0A0A;
  --c-neutral: #EAEAEA;
  --c-pristine: #FFFFFF;
  --c-accent: #C5A880;
  --c-onyx-muted: rgba(10, 10, 10, 0.6);
  --c-alabaster-muted: rgba(252, 252, 251, 0.5);
  --c-border-light: rgba(255, 255, 255, 0.1);
  --c-border-dark: rgba(10, 10, 10, 0.1);
  
  --f-sans: 'Inter', sans-serif;
  --f-serif: 'Playfair Display', serif;
  
  --e-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --e-bezier: cubic-bezier(0.85, 0, 0.15, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-sans);
  background-color: var(--c-pristine);
  color: var(--c-void);
  overflow-x: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
}

/* Lock body scroll when mobile menu is open */
body.nav-open {
  overflow: hidden;
  height: 100vh;
}

::selection {
  background: var(--c-accent);
  color: var(--c-void);
}

a {
  text-decoration: none;
  color: inherit;
}

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  background-color: var(--c-void);
  z-index: 9000;
  display: flex; justify-content: center; align-items: center;
  color: var(--c-pristine);
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 4px;
}
.preloader-text {
  overflow: hidden;
  display: flex; gap: 10px;
}
.brand-reveal, .preloader-slash {
  display: inline-block;
  transform: translateY(100%);
}
.preloader-custom { gap: clamp(10px, 2vw, 16px); }
.brand-svg-preloader { height: clamp(28px, 5vw, 48px); width: auto; }
.preloader-title { font-size: clamp(20px, 4vw, 32px); }

.italic-muted {
  font-family: var(--f-serif); font-style: italic; font-weight: 400; color: #9CA3AF;
}

/* GLOBAL EFFECTS */
.film-grain {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  pointer-events: none; z-index: 9999;
  opacity: 0.03;
  touch-action: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 32px 5vw;
  background: transparent;
  color: var(--c-pristine);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--e-smooth);
}

.navbar.is-scrolled {
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(32px) saturate(120%);
  -webkit-backdrop-filter: blur(32px) saturate(120%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 24px 5vw;
}

.nav-container {
  display: flex; justify-content: space-between; align-items: center;
}

.brand-logo { display: flex; align-items: center; justify-content: flex-start; gap: 12px; text-decoration: none; color: currentColor; }
.brand-logo svg { height: 28px; width: auto; transition: all 0.4s var(--e-smooth); }
.brand-text { font-family: var(--f-sans); font-weight: 600; font-size: 20px; letter-spacing: 0.15em; display: flex; align-items: center; gap: 12px; transition: all 0.4s var(--e-smooth); white-space: nowrap; }

.navbar.is-scrolled .brand-logo svg { height: 22px; }
.navbar.is-scrolled .brand-text { font-size: 16px; gap: 10px; }

/* Logo Animation */
@keyframes pulseLogoGeo {
    0% { transform: scale(1) translateY(0); opacity: 1; }
    50% { transform: scale(0.95) translateY(2px); opacity: 0.7; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.logo-animated-geo {
    animation: pulseLogoGeo 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-links { display: flex; align-items: center; gap: 3vw; }
.nav-link { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-link:hover { color: var(--c-accent); }
.nav-divider { width: 1px; height: 16px; background-color: rgba(255,255,255,0.3); }

/* =========================================================================
   HAMBURGER MENU (Mobile)
   ========================================================================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 10001;
  background: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-pristine);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
/* Active X state */
.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================================================
   MOBILE NAV OVERLAY
   ========================================================================= */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(48px) saturate(120%);
  -webkit-backdrop-filter: blur(48px) saturate(120%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close button inside overlay */
.mobile-nav-close {
  position: absolute;
  top: 28px; right: 5vw;
  background: none;
  background-color: transparent;
  border: none;
  color: var(--c-pristine);
  cursor: pointer;
  padding: 4px;
  opacity: 0.8;
  z-index: 10002;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-nav-close:hover,
.mobile-nav-close:active {
  opacity: 1;
  transform: rotate(90deg);
}

.overlay-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.m-link {
  font-family: var(--f-sans);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--c-pristine);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.m-link:hover { opacity: 1; color: var(--c-accent); }

.m-login-btn {
  margin-top: 16px;
  width: 220px;
  justify-content: center;
  text-align: center;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: clip;
  background-color: var(--c-void);
}

.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  z-index: 1;
}
.hero-bg.active { opacity: 1; z-index: 2; }

.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 100%);
  z-index: 3;
}

.hero-typography-layer {
  position: relative;
  z-index: 4;
  padding: 0 5vw;
  width: 100%;
  margin-top: 10vh;
}

h1.hero-title {
  color: var(--c-pristine);
  font-family: var(--f-sans);
  text-transform: uppercase;
  font-size: clamp(4rem, 10vw, 12rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin-bottom: 40px;
}
.title-word { display: inline-block; transform: translateY(100%); }
.title-dot { color: var(--c-accent); display: inline-block; transform: translateY(100%); }
.hero-title-line { overflow: hidden; }

.hero-subtext-container { max-width: 500px; opacity: 0; transform: translateY(20px); }
.hero-subtext { color: var(--c-pristine); font-size: 1.1rem; line-height: 1.6; opacity: 0.8; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 32px;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--c-pristine);
  transition: all 0.4s var(--e-smooth);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover { background: var(--c-pristine); color: var(--c-void); border-color: var(--c-pristine); }
.btn-solid { background: var(--c-accent); color: var(--c-void); border: 1px solid var(--c-accent); }
.btn-solid:hover { background: transparent; color: var(--c-accent); }

.dark-mode-btn { width: 100%; display: flex; justify-content: space-between; border-color: rgba(255,255,255,0.2); }
.dark-mode-btn:hover { background: var(--c-pristine); color: var(--c-void); }

/* =========================================================================
   METHODOLOGY
   ========================================================================= */
.methodology-section {
  position: relative;
  background-position: center;
  background-size: cover;
  color: var(--c-pristine);
}

.section-overlay-dark {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.85);
}

.relative-z { position: relative; z-index: 2; }

.meth-container { padding: 15vh 5vw; max-width: 1800px; margin: 0 auto; }
.meth-title { font-family: var(--f-sans); text-transform: uppercase; font-weight: 600; font-size: clamp(3rem, 6vw, 6rem); line-height: 1; letter-spacing: -0.04em; margin-bottom: 10vh; }
.meth-content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-bottom: 15vh; align-items: center; }

.large-body { font-size: clamp(1.2rem, 2vw, 1.8rem); line-height: 1.5; font-weight: 300; margin-bottom: 32px; }
.large-body.muted { color: var(--c-alabaster-muted); font-size: clamp(1rem, 1.5vw, 1.35rem); }

/* SVG Animation */
.arch-illustration { width: 100%; height: auto; display: block; overflow: visible; }
.data-line-animated { stroke-dasharray: 800; stroke-dashoffset: 800; transition: stroke-dashoffset 2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.data-line-animated.draw { stroke-dashoffset: 0; }
.pulse-node { transform-origin: center; animation: pulse 3s infinite alternate cubic-bezier(0.4, 0, 0.2, 1); }

@keyframes pulse {
    0% { r: 4; fill-opacity: 0.5; stroke-width: 1; }
    100% { r: 8; fill-opacity: 1; stroke-width: 2.5; filter: drop-shadow(0 0 8px var(--c-accent)); }
}

.meth-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4vw; border-top: 1px solid var(--c-border-light); padding-top: 64px; }
.pillar-number { font-family: var(--f-serif); font-size: 1.5rem; color: var(--c-accent); margin-bottom: 16px; }
.pillar-title { font-size: 1.2rem; font-weight: 500; margin-bottom: 16px; }
.pillar-desc { font-size: 0.95rem; color: var(--c-alabaster-muted); line-height: 1.6; }


/* =========================================================================
   CMA REPORTS
   ========================================================================= */
.reports-intro { position: relative; padding: 20vh 5vw; text-align: center; color: var(--c-pristine); background-color: transparent; }
.reports-glass-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(10,10,10,0.5); backdrop-filter: blur(48px) saturate(140%); -webkit-backdrop-filter: blur(48px) saturate(140%); z-index: 1; }
.reports-content-z { position: relative; z-index: 2; }
h2.section-massive-title { font-family: var(--f-sans); font-weight: 600; text-transform: uppercase; font-size: clamp(4rem, 8vw, 10rem); line-height: 0.9; letter-spacing: -0.05em; margin-bottom: 24px; color: var(--c-pristine); }
.reports-sub { font-size: 1.25rem; color: #9CA3AF; }

.cma-parallax-section {
  position: relative;
  min-height: 120vh;
  background-position: center;
  background-size: cover;
  background-color: var(--c-void);
  padding: 15vh 5vw;
  display: flex;
  align-items: center;
}

.cma-parallax-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10,10,10,0.4);
}

.cma-content-wrapper {
  position: relative; z-index: 2;
  width: 100%; max-width: 1400px; margin: 0 auto;
}

.glass-panel {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 80px; border-radius: 4px; box-shadow: 0 40px 100px rgba(0,0,0,0.2);
  width: 100%;
}

.panel-header { margin-bottom: 40px; }
.cma-location { font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; color: var(--c-accent); margin-bottom: 16px; }
.cma-address { font-family: var(--f-serif); font-size: clamp(2rem, 3vw, 3.5rem); color: var(--c-void); line-height: 1.1; }

.cma-specs-row { display: flex; flex-wrap: wrap; gap: 32px; border-bottom: 1px solid var(--c-border-dark); padding-bottom: 40px; margin-bottom: 56px; }
.spec-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--c-onyx-muted); }
.spec-pill svg { width: 18px; stroke: var(--c-accent); }

.cma-valuation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; }

.val-primary { border-right: 1px solid var(--c-border-dark); }

.tiny-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; color: var(--c-onyx-muted); margin-bottom: 16px; text-transform: uppercase; }
.bottom-space { margin-bottom: 32px; display: block; }
.val-figure { font-family: var(--f-serif); font-size: clamp(3rem, 4.5vw, 5.5rem); font-weight: 500; line-height: 1; margin-bottom: 16px; color: var(--c-void); }
.val-range { font-size: 1rem; color: var(--c-accent); font-weight: 500; }

.val-secondary { display: grid; grid-template-columns: auto 1fr; gap: 64px; }

.mini-gauge { width: 80px; height: 80px; transform: rotate(-90deg); }
.gauge-bg { stroke: rgba(0,0,0,0.1); stroke-width: 2; }
.gauge-animate { stroke: var(--c-void); stroke-width: 2; stroke-linecap: square; transition: stroke-dashoffset 2s cubic-bezier(0.2,0.8,0.2,1); }

.dyn-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 8px; color: var(--c-onyx-muted); border-bottom: 1px dashed rgba(0,0,0,0.1); padding-bottom: 4px; }
.dyn-row strong { color: var(--c-void); font-weight: 500; font-family: var(--f-sans); font-variant-numeric: tabular-nums; }
.text-positive { color: #2a8b5e !important; }

.data-table { border-top: 2px solid var(--c-void); font-size: 0.9rem; }
.t-row { display: grid; grid-template-columns: 2fr 1fr 1.5fr; border-bottom: 1px solid var(--c-border-dark); }
.t-head { background: rgba(0,0,0,0.03); color: var(--c-onyx-muted); font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.t-cell { padding: 20px 16px; display: flex; align-items: center; color: var(--c-void); }
.font-tab { font-variant-numeric: tabular-nums; font-weight: 500; }

.pill { padding: 6px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 6px; }
.pill::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; }

.status-sold { background: rgba(10,10,10,0.06); border: 1px solid rgba(10,10,10,0.1); color: var(--c-void); }
.status-sold::before { background-color: var(--c-void); opacity: 0.4; }

.status-active { background: rgba(197, 168, 128, 0.15); border: 1px solid rgba(197, 168, 128, 0.3); color: #a88a61; }
.status-active::before { background-color: #a88a61; box-shadow: 0 0 8px #a88a61; animation: pillPulseActive 2s infinite cubic-bezier(0.4, 0, 0.2, 1); }

@keyframes pillPulseActive {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.7); }
  70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 6px rgba(197, 168, 128, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(197, 168, 128, 0); }
}

.status-pending { background: rgba(42, 139, 94, 0.1); border: 1px solid rgba(42, 139, 94, 0.3); color: #2a8b5e; }
.status-pending::before { background-color: #2a8b5e; box-shadow: 0 0 8px #2a8b5e; animation: pillPulsePending 2s infinite cubic-bezier(0.4, 0, 0.2, 1); animation-delay: 0.5s; }

@keyframes pillPulsePending {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(42, 139, 94, 0.7); }
  70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 6px rgba(42, 139, 94, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(42, 139, 94, 0); }
}


/* =========================================================================
   ADVISORY & FOOTER
   ========================================================================= */
.advisory-section { position: relative; padding-top: 20vh; display: flex; flex-direction: column; align-items: center; background-position: center; background-size: cover; color: var(--c-pristine); }
.advisory-title { font-family: var(--f-sans); text-transform: uppercase; font-weight: 600; font-size: clamp(3rem, 6vw, 6rem); text-align: center; line-height: 1; letter-spacing: -0.04em; margin-bottom: 80px; }
.advisory-form-wrapper { width: 100%; max-width: 600px; margin-bottom: 20vh; }

.agency-form .input-line { position: relative; margin-bottom: 48px; }
.agency-form input { width: 100%; background: none; border: none; padding: 16px 0; color: white; font-size: 1.25rem; font-family: var(--f-sans); outline: none; }
.agency-form label { position: absolute; left: 0; top: 16px; color: rgba(255,255,255,0.4); pointer-events: none; transition: all 0.3s var(--e-bezier); font-size: 1.1rem; }
.line-focus { position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,0.2); }
.line-focus::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 1px; background: var(--c-accent); transition: width 0.4s var(--e-bezier); }

.agency-form input:focus ~ label, .agency-form input:not(:placeholder-shown) ~ label { top: -20px; font-size: 0.8rem; color: var(--c-accent); letter-spacing: 1px; }
.agency-form input:focus ~ .line-focus::after, .agency-form input:not(:placeholder-shown) ~ .line-focus::after { width: 100%; }

.agency-footer { width: 100%; border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 5vw; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; align-items: start; }
.logo-mark { font-size: 1.2rem; font-weight: 500; letter-spacing: 4px; display: block; margin-bottom: 16px; }
.f-desc, .legal-text { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.f-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-link { font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: white; transition: color 0.3s; }
.footer-link:hover { color: var(--c-accent); }
.f-info { text-align: right; }

::placeholder { color: transparent; }

/* GSAP REVEALS */
.gs-reveal { opacity: 0; visibility: hidden; }
.gs-stagger { opacity: 0; visibility: hidden; }


/* =========================================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ========================================================================= */
@media (max-width: 1024px) {
  /* Navigation */
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  /* Methodology */
  .meth-content-split { grid-template-columns: 1fr; }
  .meth-container { padding: 10vh 5vw; }

  /* CMA Panels */
  .glass-panel { padding: 40px 24px; }
  .cma-parallax-section { padding: 10vh 5vw; min-height: auto; }
  .cma-valuation-grid { grid-template-columns: 1fr; gap: 40px; }
  .val-primary { border-right: none; border-bottom: 1px solid var(--c-border-dark); padding-bottom: 40px; }
  .val-secondary { grid-template-columns: 1fr; gap: 32px; }
  .cma-specs-row { gap: 16px; }

  /* Hero */
  .hero-typography-layer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 5vw;
  }
  h1.hero-title {
    font-size: clamp(3rem, 11vw, 5rem);
    text-align: center;
    margin-bottom: 24px;
  }
  .hero-title-line { justify-content: center; display: flex; }
  .hero-subtext-container {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-subtext { text-align: center; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Section titles */
  h2.section-massive-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .meth-title { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.1; margin-bottom: 6vh; }
  .advisory-title { font-size: clamp(2.5rem, 10vw, 4rem); }

  /* Tables */
  .table-scroller { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table { min-width: 500px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .f-links { justify-content: center; }
  .f-info { text-align: center; }

  /* Pillars */
  .meth-pillars { grid-template-columns: 1fr; }
}


/* =========================================================================
   RESPONSIVE — Phone (max-width: 480px)
   ========================================================================= */
@media (max-width: 480px) {
  .navbar { padding: 20px 5vw; }
  .brand-text { font-size: 14px; letter-spacing: 0.1em; gap: 6px; }
  .brand-logo svg { height: 22px; }

  .hero-typography-layer { margin-top: 15vh; }
  h1.hero-title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-subtext { font-size: 0.95rem; }

  .reports-intro { padding: 10vh 5vw; }

  .cma-parallax-section { padding: 8vh 4vw; }
  .glass-panel { padding: 28px 16px; }
  .val-figure { font-size: clamp(2rem, 8vw, 3rem); }
  .cma-specs-row { gap: 12px; padding-bottom: 24px; margin-bottom: 32px; }
  .spec-pill { font-size: 0.8rem; }
  .cma-valuation-grid { gap: 24px; margin-bottom: 40px; }

  .advisory-form-wrapper { padding: 32px 16px !important; }
  .advisory-section { padding-top: 12vh; }

  .t-row { grid-template-columns: 1fr 1fr; padding: 12px 0; gap: 8px; }
  .t-head { display: none; }
  .t-cell { padding: 8px 12px; font-size: 0.8rem; }

  .f-links { gap: 20px; flex-direction: column; }
}
