/* ═══════════════════════════════════════════════════════════════
   MIAN ABDULLAH ART PRESS — MASTER DESIGN SYSTEM
   $50K Premium Storytelling Website — style.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── ACCESSIBILITY: Skip Navigation ─── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 99999;
  padding: 0.75rem 1.5rem;
  background: var(--color-brand-red, #A62B38);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm, 6px) var(--radius-sm, 6px);
  transition: top 0.2s ease;
}
.skip-nav:focus {
  top: 0;
}

/* ─── DESIGN TOKENS (Logo-Derived Palette: Crimson Red, Charcoal, Warm Gold) ─── */
:root {
  /* Brand Primary — Logo Charcoal & Deep Obsidian */
  --color-primary: #0D0E12;
  /* Deep Obsidian Black */
  --color-primary-soft: #161820;
  /* Rich Dark Charcoal */
  --color-primary-lighter: #202430;
  /* Elevated Slate Dark */

  /* Logo Crimson Red Palette — Extracted from MAAP Logo */
  --color-brand-red: #A62B38;
  /* Deep Logo Crimson Red */
  --color-brand-red-light: #C83546;
  /* Bright Crimson Red */
  --color-brand-red-dark: #7E1C27;
  /* Rich Dark Wine Crimson */
  --color-brand-red-glow: rgba(166, 43, 56, 0.3);

  /* Logo Slate Charcoal Palette — Extracted from MAAP Logo */
  --color-brand-charcoal: #2A2C30;
  /* Official Logo Charcoal Block */
  --color-brand-slate: #4A4D54;
  /* Soft Slate Accent */

  /* Luxury Gold Accent — Warm Luxury Highlights */
  --color-accent: #C9A84C;
  /* Antique Gold */
  --color-accent-light: #E0C168;
  /* Soft Gold */
  --color-accent-glow: rgba(201, 168, 76, 0.2);

  /* Neutral Scales */
  --color-white: #FAFAFA;
  /* Off-white */
  --color-gray-100: #F4F5F8;
  /* Light section background */
  --color-gray-200: #E1E4EC;
  /* Light borders */
  --color-gray-400: #9AA1B0;
  /* Secondary text on dark */
  --color-gray-600: #4B5262;
  /* Body text on light */
  --color-gray-800: #1B1E28;
  /* Primary text on light */

  /* Functional */
  --color-success: #10B981;
  --color-overlay: rgba(13, 14, 18, 0.8);

  /* Gradients */
  --gradient-hero: radial-gradient(ellipse at 50% 30%, #241318 0%, #161820 55%, #0D0E12 100%);
  --gradient-red: linear-gradient(135deg, #A62B38 0%, #C83546 50%, #DC4557 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #D4B968 50%, #E8D48B 100%);
  --gradient-crimson-gold: linear-gradient(135deg, #A62B38 0%, #C9A84C 100%);
  --gradient-card: linear-gradient(145deg, rgba(22, 24, 32, 0.95) 0%, rgba(18, 20, 26, 0.9) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  --gradient-glass-red: linear-gradient(135deg, rgba(166, 43, 56, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Spacing (8px base grid) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 5rem;
  --space-2xl: 6.5rem;
  --space-section: clamp(4.5rem, 8vw, 7rem);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Layout */
  --nav-height: 80px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.3s var(--ease-out-expo);
  --transition-medium: 0.6s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

/* Custom Luxury Dark Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0D0E12;
}

::-webkit-scrollbar-thumb {
  background: rgba(166, 43, 56, 0.5);
  border-radius: 5px;
  border: 2px solid #0D0E12;
}

::-webkit-scrollbar-thumb:hover {
  background: #A62B38;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--color-white);
  background-color: var(--color-primary);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

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

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

ul,
ol {
  list-style: none;
}

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

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

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.3s var(--ease-out-expo);
}

.skip-link:focus {
  top: 0;
}

/* Screen Reader Only — Visible to SEO crawlers and screen readers, hidden visually */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible for keyboard nav */
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: width 0.2s var(--ease-out-expo),
    height 0.2s var(--ease-out-expo);
}

.cursor__ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(250, 250, 250, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: width 0.35s var(--ease-out-expo),
    height 0.35s var(--ease-out-expo),
    border-color 0.35s var(--ease-out-expo);
}

.cursor.is-hovering .cursor__dot {
  width: 0;
  height: 0;
}

.cursor.is-hovering .cursor__ring {
  width: 60px;
  height: 60px;
  border-color: var(--color-accent);
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
  }

  /* Only hide default cursor when JS confirms custom cursor is active */
  body.custom-cursor-active {
    cursor: none;
  }

  body.custom-cursor-active .custom-cursor-target {
    cursor: none;
  }
}

/* ─── UTILITY CLASSES ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gradient-crimson-gold);
  border-radius: 2px;
}

.section-label--center {
  justify-content: center;
}

.section-label--center::before {
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-title--dark {
  color: var(--color-gray-800);
}

.section-title--light {
  color: var(--color-white);
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-gray-400);
  max-width: 600px;
}

.section-subtitle--dark {
  color: var(--color-gray-600);
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-crimson-gold);
  border-radius: 2px;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ─── LOGO BRANDING VARIATIONS ─── */
.preloader__logo-wrapper {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
}

.preloader__svg-logo {
  height: clamp(140px, 20vw, 220px);
  width: auto;
  max-width: 90vw;
  filter: drop-shadow(0 0 35px var(--color-brand-red-glow)) drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
}

.navbar__logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.navbar__brand:hover .navbar__logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
}

.mobile-menu__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.75rem;
  transition: transform var(--transition-fast);
}

.footer__brand-link:hover .footer__logo {
  transform: scale(1.04);
}

/* ─── PRELOADER ─── */
body.preloader-active #main-content,
body.preloader-active .header {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

#main-content {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s var(--ease-out-expo);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  transition: transform 1s var(--ease-out-expo) 0.2s, opacity 0.8s var(--ease-out-expo) 0.4s;
}

.preloader.hide {
  transform: translateY(-100%);
  pointer-events: none;
}

.preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.9rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.preloader__name .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: preloaderLetterIn 0.5s var(--ease-out-expo) forwards;
}

.preloader__line {
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  margin: 1rem 0;
  animation: preloaderLineExpand 0.8s var(--ease-out-expo) 1.6s forwards;
}

.preloader__est {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--color-gray-400);
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out-expo) 2s forwards;
}

/* ─── HEADER — Ultra-Minimal Modern ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s var(--ease-out-expo),
    transform 0.6s var(--ease-out-expo),
    padding 0.5s var(--ease-out-expo),
    background 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo),
    backdrop-filter 0.5s var(--ease-out-expo);
}

.header.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease-out-expo),
    transform 0.6s var(--ease-out-expo),
    padding 0.5s var(--ease-out-expo),
    background 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo),
    backdrop-filter 0.5s var(--ease-out-expo);
}

.header.scrolled {
  padding: 0.7rem 0;
  background: rgba(13, 14, 18, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Brand / Logo */
.header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo {
  height: clamp(32px, 4vh, 42px);
  width: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease-out-expo), filter 0.4s var(--ease-out-expo);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
}

.header__brand:hover .header__logo {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(166, 43, 56, 0.35));
}

/* Navigation Links */
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 0.3rem;
}

.header__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 450;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: color 0.3s var(--ease-out-expo),
    background 0.3s var(--ease-out-expo);
  white-space: nowrap;
}

.header__link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.header__link.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

/* CTA Button */
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-white);
  background: var(--color-brand-red);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: none;
  transition: background 0.3s var(--ease-out-expo),
    transform 0.2s var(--ease-out-expo),
    box-shadow 0.3s var(--ease-out-expo);
  flex-shrink: 0;
  white-space: nowrap;
}

.header__cta svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.header__cta:hover {
  background: var(--color-brand-red-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(166, 43, 56, 0.4);
}

.header__cta:hover svg {
  transform: translateX(3px);
}

/* ─── HAMBURGER (Minimal 2-line) ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.4s var(--ease-out-expo);
  border-radius: 2px;
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 14, 18, 0.97);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.mobile-menu__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
  animation: logoPulseGlow 4s ease-in-out infinite;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu__link {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-white);
  background: var(--color-brand-red);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__cta:hover {
  background: var(--color-brand-red-light);
  box-shadow: 0 4px 16px rgba(166, 43, 56, 0.4);
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(8rem, 14vh, 10rem) 0 clamp(6rem, 10vh, 8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;
  filter: brightness(0.9) contrast(1.05) saturate(0.95);
  transform: scale(1.03);
  transition: transform 1.5s var(--ease-out-expo);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 14, 18, 0.7) 0%, rgba(13, 14, 18, 0.25) 40%, rgba(13, 14, 18, 0.5) 75%, rgba(13, 14, 18, 0.95) 100%),
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(13, 14, 18, 0.6) 70%);
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  will-change: transform;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -5vh;
  will-change: transform, opacity;
}

/* Hero Label with Live Dot */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-red);
  box-shadow: 0 0 8px rgba(166, 43, 56, 0.6);
  animation: heroDotPulse 2s ease-in-out infinite;
}

@keyframes heroDotPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(166, 43, 56, 0.6);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 16px rgba(166, 43, 56, 0.9);
  }
}

/* Hero Title */
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 1.75rem;
}

.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.25em;
  margin-bottom: -0.25em;
  padding-top: 0.1em;
  margin-top: -0.1em;
}

.hero__title .word-inner {
  display: inline-block;
  transform: translateY(135%);
  transition: transform 0.8s var(--ease-out-expo);
}

.hero__title .word-inner.visible {
  transform: translateY(0);
}

.hero__title-accent {
  color: var(--color-brand-red);
  font-style: italic;
}

/* Hero Subtitle */
.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Bottom Stats Strip */
.hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(13, 14, 18, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero__bottom-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.hero__bottom-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.hero__bottom-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

/* Hero animation initial states */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
}

.hero-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--gradient-red);
  color: var(--color-white);
  border: 1px solid rgba(201, 168, 76, 0.4);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--color-brand-red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-crimson-gold);
  border-color: var(--color-accent);
  box-shadow: 0 8px 30px var(--color-brand-red-glow), 0 0 15px rgba(201, 168, 76, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.btn-ghost:hover {
  color: var(--color-white);
  border-color: var(--color-brand-red-light);
}

.btn-ghost:hover::before {
  transform: scaleX(1);
}

/* Hero Floating Scroll Widget (Bottom Right) */
.hero__scroll-widget {
  position: absolute;
  bottom: 6rem;
  right: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.hero__scroll-widget.hero-anim {
  opacity: 0;
  transform: translateY(20px);
}

.hero__scroll-widget.hero-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__scroll-widget.fade-out {
  opacity: 0;
  transform: translateY(15px);
}

.hero__scroll-widget-img {
  width: 120px;
  height: 120px;
  animation: breatheScale 3.5s ease-in-out infinite;
  opacity: 0.85;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
  cursor: pointer;
}

.hero__scroll-widget:hover .hero__scroll-widget-img {
  opacity: 1;
  transform: scale(1.1);
  animation-play-state: paused;
}

@keyframes breatheScale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5));
  }
}

/* ─── HERITAGE SECTION ─── */
.heritage {
  background: var(--color-white);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
  contain: layout style paint;
}

.heritage::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(166, 43, 56, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.heritage::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  z-index: 1;
}

.heritage__grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.heritage__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-gray-100);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.heritage__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.heritage__image-wrapper:hover .heritage__image {
  transform: scale(1.03);
}

.heritage__image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(10, 10, 10, 0.9);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 3px solid var(--color-accent);
}

/* CEO / Founder Name Highlight */
.heritage__highlight {
  color: var(--color-accent);
  font-weight: 600;
}

.heritage__content {
  max-width: 540px;
}

.heritage__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

.heritage__text p+p {
  margin-top: 1.25rem;
}

.heritage__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--color-brand-red);
  background: rgba(166, 43, 56, 0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.value-card:hover {
  background: rgba(166, 43, 56, 0.2);
  transform: translateX(6px);
  border-left-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(166, 43, 56, 0.15);
}

.value-card__icon {
  color: var(--color-brand-red);
  font-size: 1.1rem;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.value-card:hover .value-card__icon {
  transform: scale(1.25) rotate(15deg);
  color: var(--color-accent);
}

.value-card__name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-800);
}

/* ─── STATS SECTION ─── */
.stats {
  background: var(--color-primary);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(166, 43, 56, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 2px solid var(--color-accent);
  position: relative;
  transition: all var(--transition-fast);
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.stat-item:hover::after {
  opacity: 1;
}

.stat-item__number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.stat-item__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gray-400);
}

/* ─── SERVICES SECTION ─── */
.services {
  background: var(--color-white);
  padding: var(--space-section) 0;
  contain: layout style paint;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  z-index: 1;
}

.services__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 2;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--color-white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-crimson-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(166, 43, 56, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 43, 56, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(166, 43, 56, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-brand-red-light);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(166, 43, 56, 0.3));
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-gray-800);
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.service-card__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-gray-600);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.service-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  background: rgba(166, 43, 56, 0.15);
  color: var(--color-brand-red-light);
  border: 1px solid rgba(166, 43, 56, 0.25);
  transition: all var(--transition-fast);
}

.service-card:hover .service-tag {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.35);
  color: var(--color-accent);
}

/* ─── ARSENAL SECTION ─── */
.arsenal {
  background: var(--color-primary);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
  contain: layout style paint;
}

.arsenal::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(166, 43, 56, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.arsenal::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.arsenal__grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.arsenal__header {
  max-width: 600px;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.arsenal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1025px) {
  .arsenal__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .machine-card {
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
  }
}

.machine-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.machine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 43, 56, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.machine-card:hover {
  border-color: rgba(166, 43, 56, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 30px var(--color-brand-red-glow);
}

.machine-card:hover::before {
  opacity: 1;
}

.machine-card__badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  background: rgba(166, 43, 56, 0.2);
  color: var(--color-brand-red-light);
  border: 1px solid rgba(166, 43, 56, 0.3);
  margin-bottom: 1.25rem;
}

.machine-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.machine-card__spec {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-gray-400);
  margin-bottom: 1rem;
}

.machine-card__count {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
}

.machine-card__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-gray-400);
}

/* ─── PORTFOLIO SECTION ─── */
.portfolio {
  background: var(--color-white);
  padding: var(--space-section) 0;
  contain: layout style paint;
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(166, 43, 56, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.portfolio::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  z-index: 1;
}

.portfolio__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 2;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.portfolio__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: border-color var(--transition-fast);
}

.portfolio__item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.portfolio__item--tall {
  grid-row: span 2;
}

.portfolio__item--wide {
  grid-column: span 2;
}

.portfolio__item-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease-out-expo);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.portfolio__item-bg span {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  user-select: none;
  transition: transform 0.6s var(--ease-out-expo), color 0.6s var(--ease-out-expo);
}

.portfolio__item:hover .portfolio__item-bg {
  transform: scale(1.05);
}

.portfolio__item:hover .portfolio__item-bg span {
  color: rgba(201, 168, 76, 0.3);
  transform: scale(1.06);
}

.portfolio__item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.portfolio__item:hover .portfolio__item-img {
  transform: scale(1.06);
}

.portfolio__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.2) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.portfolio__item:hover .portfolio__item-overlay {
  opacity: 1;
}

.portfolio__item-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out-expo) 0.05s;
}

.portfolio__item:hover .portfolio__item-type {
  transform: translateY(0);
}

.portfolio__item-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out-expo) 0.1s;
}

.portfolio__item:hover .portfolio__item-label {
  transform: translateY(0);
}

/* ─── PORTFOLIO LIGHTBOX — Vintage Paper Modal ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.lightbox__container {
  position: relative;
  width: 92%;
  max-width: 1100px;
  max-height: 88vh;
  display: flex;
  z-index: 1;
  transform: scale(0.92) translateY(30px);
  transition: transform 0.5s var(--ease-out-expo);
}

.lightbox.is-active .lightbox__container {
  transform: scale(1) translateY(0);
}

.lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 14, 18, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s var(--ease-out-expo);
  backdrop-filter: blur(10px);
}

.lightbox__close:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.lightbox__inner {
  display: flex;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.15);
}

/* --- Lightbox Image Side --- */
.lightbox__image-wrapper {
  flex: 1.2;
  min-height: 420px;
  max-height: 80vh;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.lightbox__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out-expo);
}

.lightbox__image-wrapper:hover .lightbox__image {
  transform: scale(1.04);
}

/* --- Lightbox Paper Side (Yellowish Vintage) --- */
.lightbox__paper {
  flex: 0.9;
  position: relative;
  background:
    linear-gradient(135deg,
      #F5E6C8 0%,
      #F0DDB8 20%,
      #EDD5A4 40%,
      #F2DEBA 60%,
      #F7E8CC 80%,
      #F0D9A8 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lightbox__paper-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

.lightbox__paper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(139, 90, 43, 0.06) 0%, transparent 30%, transparent 70%, rgba(139, 90, 43, 0.08) 100%),
    linear-gradient(90deg, rgba(139, 90, 43, 0.05) 0%, transparent 15%, transparent 85%, rgba(139, 90, 43, 0.05) 100%);
  pointer-events: none;
}

.lightbox__paper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
      rgba(166, 43, 56, 0.4) 0%,
      rgba(201, 168, 76, 0.6) 50%,
      rgba(166, 43, 56, 0.4) 100%);
}

.lightbox__paper-content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

/* Custom scrollbar for paper content */
.lightbox__paper-content::-webkit-scrollbar {
  width: 4px;
}

.lightbox__paper-content::-webkit-scrollbar-track {
  background: transparent;
}

.lightbox__paper-content::-webkit-scrollbar-thumb {
  background: rgba(139, 90, 43, 0.3);
  border-radius: 4px;
}

/* --- Corner Marks (Print Registration Style) --- */
.lightbox__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 2;
}

.lightbox__corner::before,
.lightbox__corner::after {
  content: '';
  position: absolute;
  background: rgba(139, 90, 43, 0.25);
}

.lightbox__corner--tl { top: 14px; left: 14px; }
.lightbox__corner--tl::before { top: 0; left: 0; width: 18px; height: 1.5px; }
.lightbox__corner--tl::after { top: 0; left: 0; width: 1.5px; height: 18px; }

.lightbox__corner--tr { top: 14px; right: 14px; }
.lightbox__corner--tr::before { top: 0; right: 0; width: 18px; height: 1.5px; }
.lightbox__corner--tr::after { top: 0; right: 0; width: 1.5px; height: 18px; }

.lightbox__corner--bl { bottom: 14px; left: 14px; }
.lightbox__corner--bl::before { bottom: 0; left: 0; width: 18px; height: 1.5px; }
.lightbox__corner--bl::after { bottom: 0; left: 0; width: 1.5px; height: 18px; }

.lightbox__corner--br { bottom: 14px; right: 14px; }
.lightbox__corner--br::before { bottom: 0; right: 0; width: 18px; height: 1.5px; }
.lightbox__corner--br::after { bottom: 0; right: 0; width: 1.5px; height: 18px; }

/* --- Paper Top Decorative Line --- */
.lightbox__paper-topline {
  width: 50px;
  height: 2.5px;
  background: linear-gradient(90deg, #A62B38, #C9A84C);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

/* --- Paper Typography --- */
.lightbox__paper-type {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #A62B38;
  margin-bottom: 0.6rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s var(--ease-out-expo) 0.15s;
}

.lightbox.is-active .lightbox__paper-type {
  opacity: 1;
  transform: translateY(0);
}

.lightbox__paper-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  color: #2A1810;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s var(--ease-out-expo) 0.2s;
}

.lightbox.is-active .lightbox__paper-title {
  opacity: 1;
  transform: translateY(0);
}

.lightbox__paper-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(139, 90, 43, 0.35) 0%,
      rgba(201, 168, 76, 0.5) 50%,
      rgba(139, 90, 43, 0.15) 100%);
  margin-bottom: 1.25rem;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo) 0.25s;
}

.lightbox.is-active .lightbox__paper-divider {
  opacity: 1;
}

.lightbox__paper-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #4A3728;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s var(--ease-out-expo) 0.3s;
}

.lightbox.is-active .lightbox__paper-desc {
  opacity: 1;
  transform: translateY(0);
}

/* --- Specs Grid --- */
.lightbox__paper-specs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s var(--ease-out-expo) 0.35s;
}

.lightbox.is-active .lightbox__paper-specs {
  opacity: 1;
  transform: translateY(0);
}

.lightbox__spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.6rem 0.85rem;
  background: rgba(139, 90, 43, 0.06);
  border-radius: 6px;
  border-left: 2.5px solid rgba(166, 43, 56, 0.5);
  transition: all 0.3s var(--ease-out-expo);
}

.lightbox__spec-item:hover {
  background: rgba(139, 90, 43, 0.1);
  border-left-color: #C9A84C;
  transform: translateX(4px);
}

.lightbox__spec-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7A5C3E;
  white-space: nowrap;
  min-width: fit-content;
}

.lightbox__spec-value {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: #3D2B1F;
  line-height: 1.4;
}

/* --- Paper Footer Branding --- */
.lightbox__paper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 90, 43, 0.15);
  margin-top: auto;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo) 0.4s;
}

.lightbox.is-active .lightbox__paper-footer {
  opacity: 1;
}

.lightbox__paper-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: rgba(42, 24, 16, 0.2);
}

.lightbox__paper-est {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(42, 24, 16, 0.2);
}

/* --- Navigation Arrows --- */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 14, 18, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s var(--ease-out-expo);
  backdrop-filter: blur(10px);
}

.lightbox__nav:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.lightbox__nav--prev {
  left: -22px;
}

.lightbox__nav--next {
  right: -22px;
}

.lightbox__nav--prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.lightbox__nav--next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* --- Lightbox Responsive --- */
@media (max-width: 900px) {
  .lightbox__inner {
    flex-direction: column;
    max-height: 85vh;
    overflow-y: auto;
  }

  .lightbox__image-wrapper {
    min-height: 250px;
    max-height: 300px;
    flex: none;
  }

  .lightbox__paper {
    flex: none;
  }

  .lightbox__paper-content {
    padding: 1.75rem;
  }

  .lightbox__close {
    top: -14px;
    right: -8px;
  }

  .lightbox__nav--prev {
    left: 8px;
    top: 140px;
  }

  .lightbox__nav--next {
    right: 8px;
    top: 140px;
  }

  .lightbox__container {
    width: 95%;
  }
}

@media (max-width: 480px) {
  .lightbox__container {
    width: 98%;
  }

  .lightbox__image-wrapper {
    min-height: 200px;
    max-height: 240px;
  }

  .lightbox__paper-content {
    padding: 1.25rem;
  }

  .lightbox__paper-title {
    font-size: 1.2rem;
  }

  .lightbox__nav {
    width: 36px;
    height: 36px;
  }
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
  overflow: hidden;
}

/* ─── TESTIMONIAL SECTION ─── */
.testimonial {
  background: var(--color-primary);
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  contain: layout style paint;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
  animation: testimonialGlow 6s ease-in-out infinite;
}

@keyframes testimonialGlow {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.testimonial::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.testimonial__inner {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.testimonial__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gradient-crimson-gold);
}

.testimonial__inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gradient-crimson-gold);
}

.testimonial__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  background: var(--gradient-crimson-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: 1.5rem;
  user-select: none;
}

.testimonial__text {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.7;
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto 2rem;
  border: none;
}

.testimonial__author {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  font-style: normal;
  position: relative;
  display: inline-block;
}

.testimonial__author::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-crimson-gold);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out-expo);
}

.testimonial__inner:hover .testimonial__author::after {
  transform: scaleX(1);
}

/* ─── CONTACT SECTION ─── */
.contact {
  background: var(--color-primary-soft);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
  contain: layout style paint;
}

.contact::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(166, 43, 56, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.contact__glow {
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__content {
  max-width: 480px;
}

.contact__details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: all var(--transition-fast);
}

.contact__detail:hover .contact__detail-icon {
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.5));
  transform: scale(1.15);
}

.contact__detail-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-gray-400);
  line-height: 1.5;
}

.contact__detail-link {
  transition: color var(--transition-fast);
}

.contact__detail-link:hover {
  color: var(--color-accent);
}

.contact__hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact__hours-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.contact__hours-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-gray-400);
  line-height: 1.7;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form__header {
  margin-bottom: 2rem;
}

.contact-form__title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.contact-form__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--color-gray-400);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-400);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-gray-400);
  opacity: 0.6;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-select option {
  background: var(--color-primary);
  color: var(--color-white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.form-submit__icon {
  transition: transform var(--transition-fast);
}

.form-submit:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.form-submit:hover .form-submit__icon {
  transform: translateX(4px);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit.success {
  background: var(--color-success);
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--color-gray-400);
}

/* Error State for Form Inputs */
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error-message {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 0.35rem;
  display: none;
}

.form-error-message.visible {
  display: block;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--color-primary);
  padding: var(--space-lg) 0 0;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--color-brand-red), var(--color-accent), var(--color-brand-red)) 1;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.footer__brand-link {
  display: inline-block;
  text-decoration: none;
  margin: 0;
}

.footer__logo {
  height: clamp(60px, 10vw, 110px);
  width: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease-out-expo), filter 0.4s var(--ease-out-expo);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.footer__brand-link:hover .footer__logo {
  transform: scale(1.04) translateY(-2px);
  filter: drop-shadow(0 6px 20px rgba(166, 43, 56, 0.5)) drop-shadow(0 0 14px rgba(201, 168, 76, 0.4));
}

.footer__brand-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--color-gray-400);
  line-height: 1.6;
}

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
  position: relative;
  width: fit-content;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__link:hover::after {
  width: 100%;
}

.footer__info {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-gray-400);
  display: block;
}

.footer__info+.footer__info {
  margin-top: 0.85rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer__copyright,
.footer__credit {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-gray-400);
}

/* ─── SCROLL REVEAL COMMON ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  transition: opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
  /* Release GPU layer after animation completes */
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .arsenal__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .portfolio__item--tall {
    grid-row: span 1;
  }

  .portfolio__item--wide {
    grid-column: span 1;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .header__nav,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .cursor {
    display: none !important;
  }

  .heritage__grid {
    grid-template-columns: 1fr;
  }

  .heritage__content {
    max-width: 100%;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .arsenal__grid {
    grid-template-columns: 1fr;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .portfolio__item--tall,
  .portfolio__item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__content {
    max-width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll-widget {
    display: none;
  }

  .hero__bottom {
    gap: 1rem;
    padding: 1rem 1rem;
  }

  .hero__bottom-number {
    font-size: 1.1rem;
  }

  .hero__bottom-label {
    font-size: 0.6rem;
  }

  /* Disable parallax on mobile */
  .hero__content {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .heritage__values {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.75rem;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .machine-card {
    padding: 1.5rem;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}

/* Touch device - show overlays by default */
@media (hover: none) {
  .portfolio__item-overlay {
    opacity: 1;
  }

  .portfolio__item-type,
  .portfolio__item-label {
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════════ */

.contact-page {
  background: var(--color-white);
}

/* Careers overrides contact-page white background */
.careers-page.contact-page {
  background: var(--color-primary);
}

.page-hero {
  background: var(--color-primary-soft);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-details {
  padding: 4rem 0;
  background: var(--color-white);
}

.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--color-gray-100);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
}

.contact-card__icon {
  width: 70px;
  height: 70px;
  background: rgba(166, 43, 56, 0.1);
  color: var(--color-brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.contact-card:hover .contact-card__icon {
  background: var(--color-brand-red);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(166, 43, 56, 0.3);
}

.contact-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--color-gray-800);
  margin-bottom: 0.5rem;
}

.contact-card__text {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.contact-card__action {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quote-section {
  padding: 4rem 0 6rem 0;
  background: var(--color-white);
}

.quote-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.quote-section__map {
  position: sticky;
  top: 120px;
}

.quote-section__map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ─── Section title variants for light backgrounds ─── */
.section-title--dark {
  color: var(--color-gray-900, #111827);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.section-subtitle--dark {
  color: var(--color-gray-600, #4b5563);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Light Theme Overrides for Form */
.quote-form {
  margin-top: 2rem;
}

.quote-form .form-input,
.quote-form .form-select,
.quote-form .form-textarea {
  background-color: var(--color-gray-100);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-gray-800);
}

.quote-form .form-input:focus,
.quote-form .form-select:focus,
.quote-form .form-textarea:focus {
  background-color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.quote-form .form-group label {
  color: var(--color-gray-800);
}

.quote-form .form-input::placeholder,
.quote-form .form-textarea::placeholder {
  color: var(--color-gray-400);
}

.quote-form .form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234B5262' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.quote-form .form-note {
  color: var(--color-gray-600);
  margin-top: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .contact-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .quote-section__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .quote-section__map {
    position: relative;
    top: 0;
    order: 2;
  }

  .quote-section__form {
    order: 1;
  }

  .quote-section__map-wrapper {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .contact-details__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-hero {
    padding: 6rem 0 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════════ */

/* content-visibility: auto — Skip rendering offscreen sections */
.heritage,
.services,
.arsenal,
.portfolio,
.testimonial,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* GPU-accelerated transforms for animated elements */
.portfolio__item-img,
.heritage__image {
  will-change: transform;
  transform: translateZ(0);
}

/* Optimize image rendering */
.portfolio__item-img,
.heritage__image,
.hero__bg-img {
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
}

/* Reduce paint for hover states */
.portfolio__item,
.machine-card,
.service-card {
  will-change: transform;
  isolation: isolate;
}

/* Font rendering optimization */
body {
  text-rendering: optimizeSpeed;
}

h1, h2, h3, .hero__title, .section-title {
  text-rendering: optimizeLegibility;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   WEBMAIL LINK (Header)
   ═══════════════════════════════════════════════════════════ */
.header__webmail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out-expo);
  margin-right: 0.5rem;
}

.header__webmail:hover {
  color: var(--color-accent);
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.06);
}

.header__webmail svg {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.header__webmail:hover svg {
  opacity: 1;
  stroke: var(--color-accent);
}

.mobile-menu__webmail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-400);
  text-decoration: none;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s ease;
}

.mobile-menu__webmail:hover {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .header__webmail {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   CAREERS PAGE
   ═══════════════════════════════════════════════════════════ */

/* ─── WHY JOIN US SECTION ─── */
.careers-why {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
  position: relative;
}

.careers-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.careers-perk {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all 0.4s var(--ease-out-expo);
}

.careers-perk:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.careers-perk__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.careers-perk__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.careers-perk__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-gray-400);
}

/* ─── CURRENT OPENINGS ─── */
.careers-openings {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.careers-openings__status {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.careers-openings__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.careers-openings__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: openingPulse 2s ease-in-out infinite;
}

@keyframes openingPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.careers-openings__badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.careers-openings__heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.careers-openings__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-gray-400);
}

/* ─── Future Openings Card (Template) ─── */
.careers-openings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.careers-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease-out-expo);
}

.careers-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.careers-card__dept {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.careers-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.careers-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-gray-400);
  margin-bottom: 1.25rem;
}

.careers-card__meta {
  display: flex;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin-bottom: 1.25rem;
}

.careers-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.careers-card__apply {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.careers-card__apply:hover {
  opacity: 0.8;
}

/* ─── CV SUBMISSION SECTION ─── */
.careers-apply {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
}

.careers-apply__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.careers-apply__highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.careers-apply__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--color-gray-400);
}

.careers-apply__highlight svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ─── FILE UPLOAD ─── */
.file-upload {
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  background: rgba(255, 255, 255, 0.02);
}

.file-upload:hover,
.file-upload.drag-over {
  border-color: var(--color-accent);
  background: rgba(201, 168, 76, 0.04);
}

.file-upload__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload__content {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.file-upload__icon {
  color: var(--color-gray-500);
  margin-bottom: 0.25rem;
}

.file-upload__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--color-gray-400);
}

.file-upload__text strong {
  color: var(--color-accent);
}

.file-upload__hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.file-upload.has-file {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.04);
}

.file-upload.has-file .file-upload__icon {
  color: #25D366;
}

/* ─── CAREERS RESPONSIVE ─── */
@media (max-width: 1024px) {
  .careers-perks {
    grid-template-columns: repeat(2, 1fr);
  }
  .careers-apply__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .careers-perks {
    grid-template-columns: 1fr;
  }
  .careers-openings__status {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
}

/* ─── CAREERS INFO PANEL (Left side - replaces map) ─── */
.careers-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.careers-status-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.careers-status-box__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.careers-status-box__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.careers-status-box__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.careers-status-box__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-gray-400);
}

/* Process Steps */
.careers-process {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.careers-process__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.careers-process__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.careers-process__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.careers-process__num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-sm);
}

.careers-process__step strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  display: block;
  margin-bottom: 0.15rem;
}

.careers-process__step p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-gray-500);
  margin: 0;
}

/* Info Notes */
.careers-info-notes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.careers-info-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--color-gray-400);
}

.careers-info-note svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ─── CAREERS PAGE: Override contact-page light sections to dark theme ─── */
.careers-page .contact-details {
  background: var(--color-bg-dark, #161820);
}

.careers-page .contact-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.careers-page .contact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-6px);
}

.careers-page .contact-card__icon {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.15);
  color: var(--color-accent);
}

.careers-page .contact-card__title {
  color: var(--color-white, #fff);
}

.careers-page .contact-card__text {
  color: var(--color-gray-400, #9ca3af);
}

/* ─── CAREERS PAGE: Dark quote-section + form overrides ─── */
.careers-page .quote-section {
  background: var(--color-primary-soft, #161820);
}

.careers-page .section-title--dark {
  color: var(--color-white, #fff);
}

.careers-page .section-subtitle--dark {
  color: var(--color-gray-400, #9ca3af);
}

.careers-page .quote-form .form-input,
.careers-page .quote-form .form-select,
.careers-page .quote-form .form-textarea {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white, #fff);
}

.careers-page .quote-form .form-input:focus,
.careers-page .quote-form .form-select:focus,
.careers-page .quote-form .form-textarea:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.careers-page .quote-form .form-group label {
  color: var(--color-gray-300, #d1d5db);
}

.careers-page .quote-form .form-input::placeholder,
.careers-page .quote-form .form-textarea::placeholder {
  color: var(--color-gray-500, #6b7280);
}

.careers-page .quote-form .form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239AA1B0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.careers-page .quote-form .form-note {
  color: var(--color-gray-500, #6b7280);
}