/* ==========================================================================
   UNIQUE INTERIO - LUXURY EDITORIAL DESIGN SYSTEM & STYLESHEET
   Agency Grade • Asymmetric Layouts • 3D Micro-Interactions • 60fps Smooth
   Palette: Deep Navy (#1a2d4a, #0e1b2e), Warm Gold (#c9a961, #dfb76c), Soft Rose (#d4a5a5)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --navy-950: #08111d;
  --navy-900: #0e1b2e;
  --navy-850: #13243d;
  --navy-800: #1a2d4a;
  --navy-700: #233c62;
  --navy-600: #2f4d7a;
  --navy-100: #e4ecf7;
  --navy-50:  #f0f5fc;

  --gold-600: #a88338;
  --gold-500: #c9a961;
  --gold-400: #dfb76c;
  --gold-300: #ebd08d;
  --gold-200: #f5e4ba;
  --gold-100: #faf3e2;
  --gold-gradient: linear-gradient(135deg, #dfb76c 0%, #c9a961 50%, #a88338 100%);
  --gold-glow: 0 8px 30px rgba(201, 169, 97, 0.35);

  --rose-600: #b87d7d;
  --rose-500: #cfa6a6;
  --rose-400: #d4a5a5;
  --rose-300: #e4c4c4;
  --rose-100: #faf3f3;

  --white: #ffffff;
  --off-white: #fafafa;
  --bg-slate: #f4f6f9;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #1a1e24;

  /* Typography Font Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* --- TYPOGRAPHY MODULAR SCALE (1.25 Major Third Scale) --- */
  --text-xs: 0.75rem;                          /* 12px - Overlays, badges, tags */
  --text-sm: 0.875rem;                         /* 14px - Nav links, button labels */
  --text-base: 1rem;                           /* 16px - Base paragraph */
  --text-md: 1.125rem;                         /* 18px - Subtitles, lead copy */
  --text-lg: 1.25rem;                          /* 20px - Card titles, h4 */
  --text-xl: 1.5rem;                           /* 24px - Section h3 */
  --text-2xl: 1.875rem;                        /* 30px - Subsection headers */
  --text-3xl: 2.25rem;                         /* 36px - Section h2 desktop */
  --text-4xl: clamp(2.25rem, 3.8vw, 2.85rem);  /* ~40-45px - Featured headers */
  --text-hero: clamp(2.85rem, 5.2vw, 4.25rem); /* Hero H1: majestic, balanced, not oversized */

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* --- 8PX BASED SPACING SCALE --- */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(14, 27, 46, 0.05);
  --shadow-md: 0 10px 30px rgba(14, 27, 46, 0.08);
  --shadow-lg: 0 18px 45px rgba(14, 27, 46, 0.12);
  --shadow-xl: 0 25px 65px rgba(14, 27, 46, 0.2);
  --shadow-gold: 0 12px 35px rgba(201, 169, 97, 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.25s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1320px;
  --navbar-height: 84px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

svg {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--navy-950);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-700);
  border-radius: 4px;
  border: 2px solid var(--navy-950);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-500);
}

::selection {
  background-color: var(--gold-400);
  color: var(--navy-950);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

ul, ol {
  list-style: none;
}

/* Custom Cursor Dot & Ring */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--gold-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.1s linear;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 169, 97, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, transform 0.15s ease-out;
}

body:hover .cursor-ring.active {
  width: 54px;
  height: 54px;
  border-color: var(--gold-400);
  background: rgba(201, 169, 97, 0.1);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================================================
   UTILITY & LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7.5rem 0;
  position: relative;
}

.section-bg-navy {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
}

.section-bg-slate {
  background-color: var(--bg-slate);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.8rem;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.3);
}

.section-tag::before {
  content: '✦';
  font-size: 0.75rem;
  color: var(--gold-400);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-bg-navy .section-title,
.testimonials-section .section-title {
  color: var(--white);
}

.title-underline {
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 1.1rem auto 0;
  border-radius: var(--radius-full);
  position: relative;
}

.title-underline::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 8px var(--gold-400);
}

.title-underline.left {
  margin-left: 0;
}
.title-underline.left::after {
  left: 20px;
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--gray-600);
  margin-top: 1.2rem;
  font-weight: 400;
}

.section-bg-navy .section-subtitle,
.testimonials-section .section-subtitle {
  color: var(--gray-300);
}

/* ==========================================================================
   BUTTON SYSTEM (MATCHED WEIGHT & CORNER GEOMETRY)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  min-height: 52px;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy-950);
  border: 1.5px solid rgba(201, 169, 97, 0.7);
  box-shadow: 0 4px 18px rgba(201, 169, 97, 0.3);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: 0.5s ease;
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.45);
  color: var(--navy-950);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold svg {
  transition: transform 0.3s var(--ease-spring);
}

.btn-gold:hover svg {
  transform: translateX(4px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-outline-white:hover {
  background: rgba(201, 169, 97, 0.12);
  color: var(--gold-300);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 15px rgba(201, 169, 97, 0.2);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
  border: 1.5px solid rgba(201, 169, 97, 0.35);
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  background: var(--navy-700);
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1.25rem;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}

.btn-lg {
  min-height: 54px;
  padding: 0.95rem 2.25rem;
  font-size: var(--text-sm);
  letter-spacing: 0.09em;
}

/* ==========================================================================
   NAVIGATION BAR (HARMONIZED SPACING & ALIGNED ACTIVE INDICATOR)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  background: transparent;
  z-index: 1000;
  transition: background 0.4s var(--ease-out), height 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(14, 27, 46, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  height: 72px;
  box-shadow: 0 12px 35px rgba(8, 17, 29, 0.45);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

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

/* ==========================================================================
   BRAND LOGO PILL & MORPH SLOT (HERO-TO-NAVBAR FLIGHT)
   ========================================================================== */
.nav-logo-slot {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 140px;
  height: 48px;
  flex-shrink: 0;
}

.brand-logo-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(201, 169, 97, 0.5);
  flex-shrink: 0;
  transform-origin: center center;
  will-change: transform, box-shadow, border-color;
  z-index: 1001;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-logo-pill.docked {
  border: 1px solid rgba(201, 169, 97, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.brand-logo-pill.docked:hover {
  transform: translateY(-2px) !important;
  border-color: var(--gold-400);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.35);
}

.brand-logo-pill.at-hero:hover {
  border-color: var(--gold-400);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 169, 97, 0.3);
}

.nav-brand-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-brand-img {
  height: 34px;
}

/* Nav Menu (Even Horizontal Rhythm across all 9 links) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.6rem);
  margin: 0 var(--space-4);
}

.nav-mobile-header,
.nav-mobile-footer {
  display: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 17, 29, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 998;
}

.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: var(--space-2) 0;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold-300);
  font-weight: 600;
}

/* Nav Right Actions (Breathing Room for CTA) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.btn-header-quote {
  padding: 0.6rem 1.3rem;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  z-index: 1002;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(201, 169, 97, 0.2);
  border-color: var(--gold-400);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION (CINEMATIC, MODULAR TYPOGRAPHY & RIGID 8PX VERTICAL RHYTHM)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 8.5rem 0 6rem;
  overflow: hidden;
  background-color: var(--navy-950);
}

/* Parallax Animated Background */
.hero-bg-layer {
  position: absolute;
  inset: -20px;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  animation: heroBgZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroBgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, rgba(8, 17, 29, 0.75) 0%, rgba(14, 27, 46, 0.94) 100%);
  pointer-events: none;
}

/* Floating Ambient Geometric Shapes (Mouse Parallax) */
.hero-floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(1px);
  transition: transform 0.2s linear;
}

.shape-1 {
  top: 15%;
  right: 12%;
  width: 240px;
  height: 240px;
  border: 1.5px dashed rgba(201, 169, 97, 0.35);
  animation: spinSlow 40s linear infinite;
}

.shape-2 {
  bottom: 20%;
  left: 8%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(212, 165, 165, 0.3);
  animation: floatUp 8s ease-in-out infinite alternate;
}

.shape-3 {
  top: 40%;
  left: 20%;
  width: 16px;
  height: 16px;
  background: var(--gold-400);
  box-shadow: 0 0 20px var(--gold-400);
  border-radius: 50%;
  animation: pulseGlow 3s infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-25px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Standardized Hero Logo Anchor (Placeholder for Morphing Logo) */
.hero-ornate-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-8);
  min-height: 96px;
  position: relative;
  pointer-events: none;
}

.hero-ornate-badge-placeholder {
  width: 240px;
  height: 76px;
  visibility: hidden;
  pointer-events: none;
}

.hero-body-left {
  text-align: left;
  max-width: 780px;
  margin: 0 auto;
}

/* Proportional Editorial Headline Scale */
.hero-title {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
  color: var(--white);
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px) rotate(3deg);
  animation: charFadeIn 0.8s var(--ease-out) forwards;
}

@keyframes charFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* Tagline Badge with Clean Step in Modular Scale */
.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.35);
  color: var(--gold-300);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(16px);
  animation: slideUpFade 0.9s var(--ease-out) 0.35s forwards;
}

/* Constrained Paragraph Measure (~58ch) & Relaxed Leading */
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: rgba(255, 255, 255, 0.88);
  max-width: 58ch;
  margin-bottom: var(--space-8);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 0.9s var(--ease-out) 0.5s forwards;
}

.hero-subtitle span,
.hero-subtitle strong {
  color: var(--gold-300);
  font-weight: 600;
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Matched CTA Button Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: slideUpFade 0.9s var(--ease-out) 0.65s forwards;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 5;
  animation: bounceSlow 2.5s infinite;
}

.hero-scroll-indicator svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-400);
}

@keyframes bounceSlow {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -8px); }
  60% { transform: translate(-50%, -4px); }
}

/* ==========================================================================
   BRAND & FOUNDER PROFILE ("THE FACE OF THE BRAND") STYLES
   ========================================================================== */
.about-founder-section {
  position: relative;
  background-color: var(--off-white);
  padding: 6.5rem 0;
  overflow: hidden;
}

.about-ambient-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 169, 97, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 4.8rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Column: Visual Asset & Luxury Portrait Frame */
.founder-visual-column {
  position: relative;
}

.founder-portrait-wrapper {
  position: relative;
  max-width: 490px;
  margin: 0 auto;
}

/* Offset Architectural Backdrop Border Frame */
.founder-backdrop-frame {
  position: absolute;
  top: -18px;
  left: -18px;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.5s var(--ease-out);
}

.founder-portrait-wrapper:hover .founder-backdrop-frame {
  transform: scale(1.02) translate(4px, 4px);
  border-color: var(--gold-300);
}

.founder-glow-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.25) 0%, transparent 75%);
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
}

.founder-image-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(201, 169, 97, 0.45);
  background-color: var(--navy-900);
  z-index: 2;
}

.founder-portrait-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 590px;
  display: block;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}

.founder-portrait-wrapper:hover .founder-portrait-img {
  transform: scale(1.04);
}

.portrait-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(8, 17, 29, 0.7) 100%);
  pointer-events: none;
}

/* Floating Overlay Badges */
.founder-overlay-badge {
  position: absolute;
  z-index: 10;
  background: rgba(14, 27, 46, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--gold-400);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.35rem;
  box-shadow: 0 16px 36px rgba(8, 17, 29, 0.4), var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.founder-overlay-badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 42px rgba(8, 17, 29, 0.5), 0 0 25px rgba(201, 169, 97, 0.5);
}

/* Badge 1: 15+ Years Legacy (Top-Left) */
.badge-legacy-floating {
  top: 25px;
  left: -28px;
  animation: floatBadgeSlow 5s ease-in-out infinite;
}

.overlay-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
  flex-shrink: 0;
}

.overlay-badge-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.overlay-badge-text {
  display: flex;
  flex-direction: column;
}

.overlay-badge-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
}

.overlay-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-top: 3px;
}

/* Badge 2: Official Hettich Certified Trust Badge (Bottom-Right) */
.badge-hettich-floating {
  bottom: 30px;
  right: -28px;
  max-width: 280px;
  animation: floatBadgeSlow 6s ease-in-out infinite 1.5s;
}

@keyframes floatBadgeSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.hettich-shield-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #1a2d4a 0%, #0e1b2e 100%);
  border: 1px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.hettich-shield-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hettich-badge-content {
  display: flex;
  flex-direction: column;
}

.hettich-badge-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-400);
}

.hettich-badge-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.hettich-badge-sub {
  font-size: 0.72rem;
  color: var(--gray-300);
  font-weight: 500;
  margin-top: 2px;
}

/* Founder Portrait Nameplate */
.founder-portrait-nameplate {
  position: absolute;
  bottom: 16px;
  left: 18px;
  background: rgba(8, 17, 29, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 169, 97, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.nameplate-crown {
  display: flex;
  align-items: center;
  color: var(--gold-400);
}

.nameplate-crown svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.nameplate-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  margin-right: 4px;
}

.nameplate-title {
  font-size: 0.72rem;
  color: var(--gold-300);
}

/* Right Column: Authentic Brand Narrative */
.founder-narrative-column {
  position: relative;
}

/* Eyebrow Badge Pill */
.section-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.1rem;
}

.section-eyebrow-pill.center {
  margin: 0 auto 1.1rem;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-300);
  border-color: rgba(201, 169, 97, 0.35);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 8px var(--gold-500);
}

.founder-main-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.22;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

/* Founder Role Card */
.founder-role-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--white);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
  margin: 1.4rem 0 1.6rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.founder-role-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.role-avatar-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-500);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.founder-name-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
}

.founder-title-text {
  font-size: 0.86rem;
  color: var(--gray-600);
  font-weight: 600;
  margin-top: 2px;
}

.founder-origin-tag {
  margin-left: auto;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 169, 97, 0.35);
  white-space: nowrap;
}

.founder-lead-paragraph {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.founder-lead-paragraph strong {
  color: var(--navy-950);
  font-weight: 700;
}

.founder-secondary-paragraph {
  font-size: 0.98rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* 3 Key Metric Badges Strip */
.founder-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2.3rem;
}

.metric-badge-card {
  background: var(--white);
  padding: 1.25rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.metric-badge-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.metric-badge-card.highlight-badge-card {
  background: linear-gradient(150deg, #ffffff 0%, #faf6ec 100%);
  border: 1.5px solid rgba(201, 169, 97, 0.45);
  position: relative;
  overflow: hidden;
}

.metric-badge-card.highlight-badge-card::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 55px;
  height: 55px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.metric-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  min-height: 38px;
}

.metric-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 97, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  flex-shrink: 0;
}

.metric-badge-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.metric-badge-icon.gold-filled {
  background: var(--gold-gradient);
  color: var(--navy-950);
  box-shadow: 0 4px 10px rgba(201, 169, 97, 0.3);
}

.metric-badge-value {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}

.metric-specialist-pill {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  background: var(--navy-950);
  color: var(--gold-400);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(14, 27, 46, 0.15);
  line-height: 1.2;
}

.metric-specialist-pill .pill-mini-icon {
  width: 10px;
  height: 10px;
  fill: var(--gold-400);
  flex-shrink: 0;
}

.metric-badge-label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.metric-badge-desc {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.45;
}

/* Founder Actions CTA Row */
.founder-actions-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   AWARDS & RECOGNITION SECTION (REFINED LUXURY EDITORIAL GRID)
   ========================================================================== */
.awards-section-wrapper {
  background-color: #FBFBFA;
  position: relative;
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
}

.awards-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  box-sizing: border-box;
}

/* Section Header */
.awards-header-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.awards-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a88338;
  font-weight: 700;
  margin-bottom: 12px;
}

.awards-main-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.awards-lead-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  font-weight: 400;
}

/* 3-Column Awards Grid */
.awards-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  box-sizing: border-box;
}

/* Award Card */
.award-luxury-card {
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.award-luxury-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.45);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}

/* Media/Image Container with strict asset sizing constraints */
.award-media-frame {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: #F4F4F2;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.award-media-asset {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.award-luxury-card:hover .award-media-asset {
  transform: scale(1.03);
}

/* Card Typography */
.award-card-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.award-tag-pill {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #8C733E;
  background: #FAF5EA;
  border: 1px solid rgba(201, 169, 97, 0.25);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.award-card-headline {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.35;
  margin-bottom: 8px;
}

.award-citation-text {
  font-size: 14px;
  line-height: 1.55;
  color: #666666;
  margin: 0;
  margin-top: auto;
}

.giant-stat-sub {
  font-size: 0.8rem;
  color: var(--gold-300);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE LAYOUT FOR FOUNDER & AWARDS SECTIONS
   ========================================================================== */
@media (max-width: 1100px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
  
  .founder-visual-column {
    max-width: 520px;
    margin: 0 auto;
  }

  .badge-legacy-floating {
    left: -15px;
  }

  .badge-hettich-floating {
    right: -15px;
  }

}

@media (max-width: 768px) {
  .about-founder-section {
    padding: 4.5rem 0;
  }

  .badge-legacy-floating {
    top: 10px;
    left: -5px;
    padding: 0.7rem 1rem;
  }

  .badge-legacy-floating .overlay-badge-num {
    font-size: 1.2rem;
  }

  .badge-hettich-floating {
    bottom: 10px;
    right: -5px;
    padding: 0.7rem 1rem;
    max-width: 240px;
  }

  .founder-role-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .founder-origin-tag {
    margin-left: 0;
  }

  .founder-metrics-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .awards-content-container {
    padding: 60px 20px;
  }

  .awards-editorial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .award-media-frame {
    height: 200px;
  }

  .awards-main-heading {
    font-size: 28px;
  }
}

/* ==========================================================================
   SERVICES SECTION (INTERACTIVE 3D TILT CARDS & STAGGER)
   ========================================================================== */
.services-section {
  background-color: var(--bg-slate);
  perspective: 1200px;
}

.services-staggered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.service-card-3d {
  background: var(--navy-800);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 169, 97, 0.25);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card-3d:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(14, 27, 46, 0.3), var(--gold-glow);
  border-color: var(--gold-400);
}

/* Card Header */
.service-3d-header {
  padding: 2.2rem 2.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.service-icon-gold-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
  border: 2px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(201, 169, 97, 0.2);
  transition: transform 0.4s var(--ease-spring), background 0.3s ease;
}

.service-card-3d:hover .service-icon-gold-circle {
  transform: scale(1.1) rotate(10deg);
  background: var(--gold-500);
}

.service-icon-gold-circle svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-300);
  transition: fill 0.3s ease;
}

.service-card-3d:hover .service-icon-gold-circle svg {
  fill: var(--navy-950);
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.service-card-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  font-weight: 700;
}

/* Card Body */
.service-3d-body {
  padding: 2rem 2.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  color: var(--gray-300);
}

.service-card-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-300);
  margin-bottom: 1.8rem;
}

.service-list-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 1rem;
  display: block;
}

.service-items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.2rem;
  margin-bottom: 2.2rem;
}

.service-item-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.9;
  transform: translateX(0);
  transition: transform 0.3s var(--ease-out), color 0.3s ease;
}

.service-card-3d:hover .service-item-row {
  transform: translateX(4px);
}

.service-item-row svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card-cta {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   HETTICH CERTIFICATION & CREDIBILITY ANCHOR
   ========================================================================== */
.hettich-cert-section {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.hettich-cert-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hettich-card-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hettich-quote-col {
  position: relative;
}

.hettich-badge-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.hettich-brand-logo-pill {
  display: inline-flex;
  flex-direction: column;
  background: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hettich-brand-name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 900;
  color: #1a2d4a;
  line-height: 1;
  letter-spacing: -0.5px;
}

.hettich-brand-sub {
  font-size: 0.58rem;
  font-weight: 800;
  color: #a88338;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hettich-cert-tag {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
}

.hettich-quote-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hettich-signoff {
  font-size: 0.95rem;
  color: var(--gold-300);
  font-weight: 500;
}

.hettich-signoff strong {
  color: var(--white);
  font-weight: 700;
}

.hettich-pillars-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hettich-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.hettich-pillar-item:hover {
  transform: translateX(6px);
  border-color: var(--gold-400);
  background: rgba(201, 169, 97, 0.08);
}

.hettich-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.35);
}

.hettich-pillar-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hettich-pillar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.hettich-pillar-desc {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.5;
}

/* ==========================================================================
   SEASON SAFFRON WALKTHROUGH FILMS
   ========================================================================== */
.films-section {
  background-color: var(--off-white);
  padding: 6.5rem 0;
}

.films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.film-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.film-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

.film-thumbnail-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--navy-900);
}

.film-thumb-img,
.film-thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.film-card:hover .film-thumb-img,
.film-card:hover .film-thumb-video {
  transform: scale(1.06);
}

.film-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 29, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.film-card:hover .film-play-overlay,
.film-card.playing .film-play-overlay {
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

.film-play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
  transition: transform 0.35s var(--ease-spring), opacity 0.35s ease;
}

.film-card:hover .film-play-btn,
.film-card.playing .film-play-btn {
  transform: scale(0.65);
  opacity: 0;
}

.film-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--navy-950);
  margin-left: 3px;
}

.film-duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(8, 17, 29, 0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 169, 97, 0.35);
}

.film-card-content {
  padding: 1.5rem 1.6rem 1.8rem;
}

.film-track-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-600);
  text-transform: uppercase;
}

.film-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0.3rem 0 0.45rem;
}

.film-card-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ==========================================================================
   CONNECTIONS & REFERRAL NETWORK SECTION
   ========================================================================== */
.connections-section {
  background-color: var(--bg-slate);
  padding: 6.5rem 0;
}

.connections-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
}

.connection-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.connection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-400);
}

.connection-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.connection-badge-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.connection-badge-icon.give {
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-600);
  border: 1.5px solid rgba(201, 169, 97, 0.35);
}

.connection-badge-icon.ask {
  background: rgba(26, 45, 74, 0.1);
  color: var(--navy-800);
  border: 1.5px solid rgba(26, 45, 74, 0.25);
}

.connection-badge-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.connection-card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-600);
}

.connection-card-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
}

.connection-card-lead {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.connection-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.connection-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.connection-row:hover {
  transform: translateX(4px);
  border-color: var(--gold-400);
  background: #ffffff;
}

.connection-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy-700);
  margin-top: 6px;
  flex-shrink: 0;
}

.connection-dot.gold {
  background: var(--gold-500);
  box-shadow: 0 0 8px rgba(201, 169, 97, 0.6);
}

.connection-row strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-900);
}

.connection-row span {
  display: block;
  font-size: 0.84rem;
  color: var(--gray-600);
  margin-top: 2px;
}

/* ==========================================================================
   PROJECTS GALLERY (MASONRY & ACTIVE SLIDER TABS)
   ========================================================================== */
.projects-filter-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.projects-filter-pill-bar {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 6px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  gap: 6px;
}

.filter-tab-btn {
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.3s var(--ease-out);
}

.filter-tab-btn:hover {
  color: var(--navy-900);
}

.filter-tab-btn.active {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(14, 27, 46, 0.25);
}

/* Masonry Grid */
.projects-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-masonry-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-900);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.project-masonry-card.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.project-masonry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.project-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.project-masonry-card:hover .project-img-inner {
  transform: scale(1.08);
}

.project-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 29, 0) 35%, rgba(8, 17, 29, 0.94) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
  color: var(--white);
  transition: opacity 0.4s ease;
}

.project-badge-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.4rem;
}

.project-badge-tag.accent-saffron {
  color: #ff9e54;
}

.project-badge-tag.accent-gold {
  color: var(--gold-400);
}

.project-badge-tag.accent-terracotta {
  color: #f28b74;
}

.project-badge-tag.accent-forest {
  color: #72cca1;
}

.project-heading-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.project-location-tag {
  font-size: 0.85rem;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.project-location-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-400);
}

/* ==========================================================================
   TESTIMONIALS SECTION (EDITORIAL CAROUSEL)
   ========================================================================== */
/* ==========================================================================
   TESTIMONIALS SECTION (LUXURY EDITORIAL SPOTLIGHT SHOWCASE)
   ========================================================================== */
.testimonials-section {
  position: relative;
  background: linear-gradient(180deg, #0e1b2e 0%, #08111d 100%);
  color: var(--white);
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.testimonials-glow-top,
.testimonials-glow-bottom {
  display: none !important;
}

/* Trust Strip */
.testimonials-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: rgba(14, 27, 46, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(201, 169, 97, 0.45);
  border-radius: var(--radius-full);
  padding: 1.15rem 2.8rem;
  max-width: 860px;
  margin: 0 auto 3.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.trust-stars-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-stars-row svg {
  width: 17px;
  height: 17px;
  fill: #f5b041;
}

.trust-score-val {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
  margin-left: 6px;
}

.trust-label-text {
  font-size: 0.78rem;
  color: #e2e8f0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.trust-strip-divider {
  width: 1px;
  height: 38px;
  background: rgba(201, 169, 97, 0.35);
}

.trust-stat-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #f0c265;
  line-height: 1;
}

.trust-badge-flex {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-shield-icon {
  width: 18px;
  height: 18px;
  fill: #f0c265;
}

.trust-shield-text {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
}

/* Stage & Showcase Card */
.testimonials-stage {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-showcase-card {
  flex: 1;
  position: relative;
  background: rgba(22, 38, 62, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 169, 97, 0.08);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-showcase-card:hover {
  border-color: rgba(201, 169, 97, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(201, 169, 97, 0.14);
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.slide-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.slide-project-tag {
  font-size: 0.85rem;
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.slide-project-tag .tag-pin {
  font-size: 0.95rem;
}

.slide-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #55e6a5;
  background: rgba(85, 230, 165, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(85, 230, 165, 0.25);
}

.slide-verified-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.slide-stars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.stars-gold-icons {
  display: flex;
  gap: 5px;
}

.stars-gold-icons svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-400);
  filter: drop-shadow(0 2px 4px rgba(201, 169, 97, 0.4));
}

.slide-rating-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.5px;
}

.slide-quote-body {
  position: relative;
  margin-bottom: 2.2rem;
}

.quote-ornament {
  position: absolute;
  top: -24px;
  left: -20px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(201, 169, 97, 0.18);
  line-height: 1;
  pointer-events: none;
}

.slide-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.65;
  color: #f5f7fb;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.slide-quote-text strong {
  color: var(--gold-300);
  font-weight: 600;
}

.slide-client-footer {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.client-avatar-monogram {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  background: var(--gold-gradient);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(201, 169, 97, 0.35);
  flex-shrink: 0;
}

.client-details {
  flex: 1;
}

.client-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.client-role {
  font-size: 0.84rem;
  color: var(--gray-400);
  margin-top: 3px;
}

.client-scope-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold-300);
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.28);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* Stage Nav Arrows */
.stage-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(22, 38, 62, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(201, 169, 97, 0.35);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stage-nav-btn:hover {
  background: var(--gold-gradient);
  color: var(--navy-950);
  border-color: var(--gold-300);
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(201, 169, 97, 0.4);
}

.stage-nav-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Quick-Select Patron Chips */
.testimonials-patron-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.8rem;
}

.patron-chip-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 8px;
  color: var(--gray-300);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease-out);
}

.patron-chip-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 97, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}

.patron-chip-btn.active {
  background: rgba(201, 169, 97, 0.16);
  border-color: var(--gold-400);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.25);
}

.patron-chip-btn .chip-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patron-chip-btn.active .chip-avatar {
  box-shadow: 0 2px 8px rgba(201, 169, 97, 0.5);
}

.patron-chip-btn .chip-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.patron-chip-btn .chip-label small {
  color: var(--gold-400);
  font-weight: 400;
  margin-left: 4px;
}

/* Responsive Testimonials Adjustments */
@media (max-width: 860px) {
  .testimonials-trust-strip {
    flex-direction: column;
    border-radius: var(--radius-lg);
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
  }

  .trust-strip-divider {
    width: 60%;
    height: 1px;
  }

  .testimonials-stage {
    flex-direction: column;
  }

  .testimonial-showcase-card {
    padding: 2rem 1.6rem;
    min-height: auto;
  }

  .stage-nav-btn {
    display: none;
  }

  .slide-client-footer {
    flex-wrap: wrap;
  }

  .client-scope-pill {
    margin-left: auto;
  }
}

/* ==========================================================================
   CONTACT US SECTION (SPLIT + FLOATING LABELS)
   ========================================================================== */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: start;
}

/* Floating Label Form */
.contact-form-editorial {
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form-floating-group {
  position: relative;
  margin-bottom: 2.2rem;
}

.floating-input {
  width: 100%;
  padding: 0.8rem 0;
  font-size: 1rem;
  color: var(--navy-900);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gray-300);
  outline: none;
  transition: border-color 0.3s ease;
}

.floating-input:focus {
  border-bottom-color: var(--gold-500);
}

.floating-label {
  position: absolute;
  top: 0.8rem;
  left: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-select:focus ~ .floating-label,
.floating-select:valid ~ .floating-label {
  top: -18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 1px;
}

.floating-select {
  width: 100%;
  padding: 0.8rem 0;
  font-size: 1rem;
  color: var(--navy-900);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gray-300);
  outline: none;
  cursor: pointer;
}

.floating-select:focus {
  border-bottom-color: var(--gold-500);
}

textarea.floating-input {
  resize: vertical;
  min-height: 100px;
}

/* Right: Info Cards & Map */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-lift-card {
  background: var(--white);
  padding: 1.6rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-lift-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-600);
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-600);
}

.contact-card-val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
}

/* Studio Credential Banner */
.studio-credential-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.studio-cred-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.studio-cred-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.8rem;
}

.studio-cred-text {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER (MODERN 4-COLUMN WITH GOLD ACCENTS)
   ========================================================================== */
.footer {
  background-color: var(--navy-950);
  color: var(--gray-400);
  padding: 6rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-4col-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.footer-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.4rem;
  border: 1px solid rgba(201, 169, 97, 0.4);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link-item {
  font-size: 0.92rem;
  color: var(--gray-400);
  transition: var(--transition-fast);
}

.footer-link-item:hover {
  color: var(--gold-400);
  transform: translateX(5px);
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.4s var(--ease-spring), background 0.3s ease, color 0.3s ease;
}

.footer-social-btn:hover {
  transform: rotate(360deg) scale(1.1);
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-400);
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & BACK TO TOP)
   ========================================================================== */
.floating-actions-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.btn-back-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 169, 97, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease-out);
}

.btn-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-back-to-top:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  transform: translateY(-3px);
}

.btn-back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-widget-wrap {
  position: relative;
}

.btn-whatsapp-float {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform var(--transition-fast);
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp-float:hover {
  transform: scale(1.08);
}

.btn-whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background-color: #ff3b30;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* WhatsApp Quick Chat Popover */
.whatsapp-popover {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: var(--transition-normal);
  z-index: 1000;
}

.whatsapp-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-popover-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-popover-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.wa-popover-sub {
  font-size: 0.78rem;
  color: #a7f3d0;
}

.wa-popover-close {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  line-height: 1;
}

.wa-popover-close:hover {
  color: var(--white);
}

.wa-popover-body {
  padding: 1.4rem;
  background: #f0f2f5;
}

.wa-chat-bubble {
  background: var(--white);
  padding: 1rem;
  border-radius: 0 14px 14px 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 1.2rem;
  line-height: 1.45;
}

.wa-quick-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wa-quick-btn {
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  text-align: left;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-quick-btn:hover {
  background: var(--gold-100);
  border-color: var(--gold-400);
  color: var(--navy-950);
}

.wa-quick-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-600);
}

/* ==========================================================================
   MODALS (LIGHTBOX & CONSULTATION)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 17, 29, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(25px) scale(0.95);
  transition: var(--transition-normal);
}

.modal-backdrop.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--navy-900);
  color: var(--white);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Lightbox */
.lightbox-dialog {
  max-width: 980px;
  background: var(--navy-950);
  color: var(--white);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 65vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-height: 65vh;
  width: 100%;
  object-fit: contain;
}

.lightbox-details {
  padding: 2.2rem;
}

.lightbox-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.4rem 0 0.8rem;
}

.lightbox-desc {
  font-size: 0.98rem;
  color: var(--gray-300);
  line-height: 1.65;
}

/* Film Walkthrough Dialog */
.film-dialog {
  max-width: 780px;
  background: var(--navy-950);
  color: var(--white);
  border: 1px solid rgba(201, 169, 97, 0.35);
  overflow: hidden;
}

.film-modal-header {
  padding: 2.2rem 2.2rem 1.2rem;
}

.film-modal-duration {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(201, 169, 97, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.6rem;
}

.film-modal-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.film-modal-desc {
  font-size: 0.95rem;
  color: var(--gray-300);
}

.film-modal-player-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 60vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.film-modal-active-video {
  width: 100%;
  height: 100%;
  max-height: 60vh;
  object-fit: contain;
  background: #000;
  display: block;
  outline: none;
}

.film-modal-footer {
  padding: 1.5rem 2.2rem;
  background: rgba(14, 27, 46, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--navy-900);
  color: var(--white);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--gold-400);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  animation: slideInToast 0.4s var(--ease-out) forwards;
  max-width: 380px;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-400);
  flex-shrink: 0;
}

/* ==========================================================================
   SCROLL REVEAL (INTERSECTION OBSERVER)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (COMPREHENSIVE MULTI-VIEWPORT AUDIT)
   ========================================================================== */

/* --- 1. Large Laptops / Small Desktops (<= 1200px) --- */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 0.78rem;
    padding: var(--space-1) 0;
  }
  .nav-actions {
    margin-left: var(--space-2);
  }
  .btn-header-quote {
    padding: 0.55rem 1.05rem;
    font-size: 0.72rem;
  }
  .about-founder-grid {
    gap: 3.5rem;
  }
}

/* --- 2. Tablets & Small Screens (<= 1024px) --- */
@media (max-width: 1024px) {
  /* Navigation Drawer */
  .nav-toggle {
    display: flex;
    z-index: 1002;
  }
  .nav-actions .btn-header-quote {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: rgba(14, 27, 46, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.75rem 2.5rem;
    gap: 0;
    transform: translateX(105%);
    transition: transform 0.4s var(--ease-out);
    border-left: 1px solid rgba(201, 169, 97, 0.25);
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.75);
    margin: 0;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  }
  .nav-mobile-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-300);
    letter-spacing: 0.05em;
  }
  .nav-mobile-close {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--white);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav-mobile-close:hover {
    background: rgba(201, 169, 97, 0.2);
    color: var(--gold-400);
  }
  .nav-menu .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.9rem 1rem;
    min-height: 48px;
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold-300);
    padding-left: 1.35rem;
  }
  .nav-menu .nav-link::after {
    display: none;
  }
  .nav-mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.75rem;
  }
  .nav-mobile-footer .btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-mobile-meta {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
  }

  /* Section Grids Tablet Reflow */
  .about-founder-grid,
  .contact-split-grid,
  .hettich-card-grid,
  .connections-dual-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .films-grid,
  .projects-masonry-grid,
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .footer-4col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* --- 3. Tablets Portrait & Large Mobiles (<= 768px) --- */
@media (max-width: 768px) {
  /* Fluid Spacing & Section Padding */
  .section {
    padding: 4.5rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }
  
  /* Hero Reflow */
  .hero-section {
    padding: 7rem 0 4.5rem;
    min-height: auto;
  }
  .hero-body-left {
    text-align: center;
  }
  .hero-title {
    font-size: clamp(2.1rem, 7.5vw, 3.2rem);
    text-align: center;
  }
  .hero-tagline-badge {
    margin: 0 auto var(--space-4);
  }
  .hero-subtitle {
    margin: 0 auto var(--space-6);
    font-size: 0.98rem;
    line-height: 1.65;
  }
  .hero-cta-group {
    justify-content: center;
    gap: var(--space-3);
  }
  .hero-cta-group .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .hero-ornate-badge-wrap {
    min-height: 72px;
    margin-bottom: var(--space-6);
  }
  .hero-ornate-badge-placeholder {
    width: 180px;
    height: 56px;
  }
  .nav-logo-slot {
    min-width: 110px;
    height: 42px;
  }

  /* About Founder Reflow */
  .founder-portrait-wrapper {
    max-width: 420px;
  }
  .founder-backdrop-frame {
    display: none;
  }
  .badge-legacy-floating {
    top: 12px;
    left: 12px;
    padding: 0.65rem 1rem;
  }
  .badge-hettich-floating {
    bottom: 12px;
    right: 12px;
    max-width: 230px;
    padding: 0.65rem 1rem;
  }
  .founder-role-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.2rem;
  }
  .founder-origin-tag {
    margin-left: 0;
  }
  .founder-metrics-strip {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .founder-actions-row {
    flex-direction: column;
    width: 100%;
  }
  .founder-actions-row .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  /* Services Grid Stack */
  .services-staggered-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .service-items-list {
    grid-template-columns: 1fr;
  }
  .service-card-3d {
    padding: 2rem 1.6rem;
  }

  /* Hettich Card Stack */
  .hettich-cert-card {
    padding: 2.2rem 1.5rem;
  }
  .hettich-quote-headline {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .hettich-quote-col,
  .hettich-pillars-col {
    width: 100%;
  }

  /* Films & Projects Stack */
  .films-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .projects-masonry-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .project-masonry-card.wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  /* Awards Grid */
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .awards-content-container {
    padding: 4rem 1.25rem;
  }

  /* Contact & Form Stack */
  .contact-split-grid {
    gap: 2.5rem;
  }
  .contact-form-editorial {
    padding: 2rem 1.4rem;
  }
  .form-row.two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .form-submit-btn {
    min-height: 52px;
  }

  /* Footer Stack */
  .footer-4col-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* --- 4. Small Mobile Phones (<= 480px / 375px) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero-title {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
  }
  .hero-tagline-badge span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
  .section-title {
    font-size: 1.65rem;
  }
  .founder-main-headline {
    font-size: 1.6rem;
  }
  .founder-lead-paragraph {
    font-size: 0.95rem;
  }
  
  /* Filter bar horizontal touch scroll */
  .projects-filter-pill-bar {
    padding: 4px;
    gap: 4px;
    justify-content: flex-start;
  }
  .filter-tab-btn {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
  }

  /* Modals sizing on mobile */
  .modal-dialog {
    width: 95%;
    padding: 1.75rem 1.2rem;
    border-radius: var(--radius-lg);
  }

  /* WhatsApp widget adjustment */
  .floating-whatsapp-btn {
    bottom: 18px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}
