/* ==========================================================================
   Shine Doors  — Aurelian Precision Design System
   Design generated via Stitch MCP — "The Architectural Vault"
   ========================================================================== */

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  /* Surface Hierarchy */
  --surface: #06122b;
  --surface-dim: #06122b;
  --surface-container-lowest: #020d26;
  --surface-container-low: #0f1b34;
  --surface-container: #131f38;
  --surface-container-high: #1e2943;
  --surface-container-highest: #29344f;
  --surface-bright: #2e3953;

  /* Primary Gold */
  --primary: #ffd46e;
  --primary-container: #e6b73e;
  --primary-fixed: #ffdf99;
  --primary-dim: #f0c046;

  /* Secondary Gold */
  --secondary: #eac252;
  --secondary-container: #b08c1f;

  /* On-Colors */
  --on-surface: #d9e2ff;
  --on-surface-variant: #d2c5af;
  --on-primary: #3f2e00;
  --on-background: #d9e2ff;

  /* Outline */
  --outline: #9a8f7b;
  --outline-variant: #4e4635;

  /* Tertiary */
  --tertiary: #c0dcff;

  /* Status */
  --success: #2ad38b;
  --danger: #ff6578;

  /* Spacing & Layout */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --max-width: 1280px;

  /* Shadows */
  --shadow-ambient: 0 20px 50px rgba(2, 13, 38, 0.4);
  --shadow-card: 0 8px 32px rgba(2, 13, 38, 0.3);
  --shadow-gold: 0 0 0 1px rgba(255, 212, 110, 0.15), 0 8px 24px rgba(230, 183, 62, 0.12);
  --shadow-gold-hover: 0 0 0 1px rgba(255, 212, 110, 0.3), 0 0 20px rgba(230, 183, 62, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--on-surface);
  background: var(--surface);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Epilogue', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  color: var(--on-surface-variant);
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

/* ── Label / Eyebrow ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--primary);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
  letter-spacing: 0.02em;
}

.btn::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 200%;
  left: -60%;
  top: -50%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 130%;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--on-primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold-hover);
}

.btn-outline {
  color: var(--on-surface);
  background: transparent;
  border: 1px solid var(--outline-variant);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(255, 212, 110, 0.05);
}

.btn-ghost {
  color: var(--primary);
  background: transparent;
  padding: 8px 0;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.btn-ghost::after {
  display: none;
}

.btn-ghost:hover {
  filter: brightness(1.2);
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #020d26;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 18, 43, 0.8);
  backdrop-filter: blur(20px);
  border-color: rgba(255, 212, 110, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.logo-mark {
  width: 72px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--surface-container-high), var(--surface-container));
  border: 1.5px solid var(--primary-container);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-mark img {
  width: 86%;
  object-fit: cover;
  display: block;
}

.logo-title {
  display: grid;
  gap: 2px;
  line-height: 1.15;
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--on-surface-variant);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-title strong {
  font-family: 'Epilogue', sans-serif;
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 700;
}

.logo-title span {
  font-size: 0.7rem;
  color: var(--on-surface-variant);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: var(--on-surface-variant);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.02em;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--primary);
  background: rgba(255, 212, 110, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  color: var(--on-surface-variant);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--outline-variant);
  background: var(--surface-container);
  color: var(--on-surface);
  font-size: 0;
  position: relative;
}

.menu-toggle::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--on-surface);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -4px);
  box-shadow: 0 4px 0 var(--on-surface), 0 8px 0 var(--on-surface);
  transition: all 0.3s ease;
}

/* ── Hero — Garage Door Scroll Reveal ────────────────────────────────────── */
.hero-door {
  position: relative;
  height: 600vh;
  /* tall scroll canvas */
  background: var(--surface-container-lowest);
}

.hero-door__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

/* ── Interior (behind the door) ──────────── */
.hero-door__interior {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-door__interior-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: brightness(0.4);
  transition: transform 0.1s linear;
}

.hero-door__interior-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%,
      transparent 20%,
      rgba(2, 13, 38, 0.7) 80%);
  pointer-events: none;
}

/* ── Mid-text ("Something For You") ──────── */
.hero-door__midtext {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  text-align: center;
  pointer-events: none;
  opacity: 0;
}

.hero-door__midtext-line {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  padding-bottom: 0.25em;
  margin-bottom: -0.25em;
}

.hero-door__midtext-line span {
  display: inline-block;
  font-family: 'Epilogue', sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 800;
  color: var(--primary);
  text-shadow:
    0 0 60px rgba(255, 212, 110, 0.3),
    0 4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(150%);
  opacity: 0;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* ── The Door Panel ──────────────────────── */
.hero-door__panel {
  position: absolute;
  inset: 0;
  z-index: 5;
  will-change: transform;
  /* The door starts fully covering the viewport */
  transform: translateY(0);
}

.hero-door__panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-door__segments {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
}

.hero-door__segment-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 15%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.06) 85%,
      transparent 100%);
}

.hero-door__edge {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6),
      transparent);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* ── Hero Content (final reveal) ─────────── */
.hero-door__content {
  position: absolute;
  bottom: 12%;
  left: 6%;
  z-index: 10;
  max-width: 700px;
  opacity: 0;
  pointer-events: none;
}

.hero-door__content.is-active {
  pointer-events: auto;
}

.hero-door__title {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-top: 12px;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-door__title-line {
  display: block;
  transform: translateY(60px);
  opacity: 0;
  filter: blur(8px);
}

.hero-door__title-line--gold {
  color: var(--primary);
}

.hero-door__sub {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
}

.hero-door__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* ── Ambient Gold Glow ───────────────────── */
.hero-door__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 800px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse,
      rgba(255, 212, 110, 0.06) 0%,
      transparent 60%);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

/* ── Scroll Indicator ────────────────────── */
.hero-door__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.hero-door__scroll-text {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-door__scroll-icon {
  margin-bottom: 2px;
  animation: floatIcon 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.hero-door__scroll-icon svg {
  color: var(--primary);
  width: 32px;
  height: 32px;
  opacity: 1;
}

.hero-door__scroll-icon .wheel-anim {
  animation: mouseWheel 1.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

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

@keyframes mouseWheel {
  0% {
    transform: translateY(-2px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* ── Vignette ────────────────────────────── */
.hero-door__vignette {
  position: absolute;
  inset: 0;
  z-index: 8;
  background: radial-gradient(ellipse at center,
      transparent 40%,
      var(--surface-container-lowest) 100%);
  pointer-events: none;
  opacity: 0;
}


/* ── Sections (shared) ───────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.section--alt {
  background: var(--surface-container-low);
}

.section-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--on-surface);
  margin-top: 16px;
  line-height: 1.08;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ── About Section ───────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-reveal-content,
.about-reveal-media,
.about-reveal-stat {
  opacity: 0;
}

.about-reveal-content {
  transform: translateX(-56px);
  filter: blur(8px);
}

.about-reveal-media {
  transform: translateX(56px) scale(0.96);
  filter: blur(8px);
  transform-origin: center center;
  will-change: transform, opacity, filter;
}

.about-reveal-stat {
  transform: translateY(28px);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}

.about-content h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--on-surface);
  margin-top: 14px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-content .btn {
  margin-top: 12px;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  will-change: transform;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
}

.about-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 212, 110, 0.1);
  pointer-events: none;
}

/* ── Services Section ────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-grid .service-card:last-child {
  grid-column: span 1;
}

.service-card {
  padding: 32px 24px;
  background: var(--surface-container);
  border-radius: var(--radius-md);
  border-top: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-hover);
  border-top-color: var(--primary-container);
}

.service-card--highlight {
  border-top-color: var(--primary);
  background: linear-gradient(180deg, rgba(255, 212, 110, 0.04), var(--surface-container));
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255, 212, 110, 0.12), rgba(255, 212, 110, 0.04));
  border: 1px solid rgba(255, 212, 110, 0.15);
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.18rem;
  color: var(--on-surface);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: var(--surface-container);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-hover);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--on-surface-variant);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card blockquote::before {
  content: '"';
  font-family: 'Epilogue', serif;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 0;
  display: block;
  margin-bottom: 8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  display: grid;
  place-items: center;
  color: var(--on-primary);
  font-weight: 800;
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  color: var(--on-surface);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--on-surface-variant);
}

/* ── Why Choose Us ───────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  padding: 32px 24px;
  background: var(--surface-container);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-hover);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(255, 212, 110, 0.1), rgba(255, 212, 110, 0.03));
  border: 1px solid rgba(255, 212, 110, 0.15);
  color: var(--primary);
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--on-surface);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Contact CTA ─────────────────────────────────────────────────────────── */
.contact-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.contact-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.contact-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 18, 43, 0.85), rgba(6, 18, 43, 0.7));
}

.contact-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta__inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #fff;
  margin-top: 14px;
  margin-bottom: 16px;
}

.contact-cta__inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.contact-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta__info {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta__info a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.contact-cta__info a:hover {
  opacity: 0.8;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-container-lowest);
  padding-top: 0;
}

.footer-cta-band {
  padding: 40px;
  background: linear-gradient(135deg, var(--surface-container), var(--surface-container-high));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 212, 110, 0.1);
}

.footer-cta-band h3 {
  font-size: 1.6rem;
  color: var(--on-surface);
}

.footer-cta-band p {
  font-size: 0.88rem;
  margin-top: 4px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tags span {
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-container);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  border: 1px solid var(--outline-variant);
}

.footer-col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: 20px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--outline-variant);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--on-surface-variant);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  font-size: 0.82rem;
  color: var(--on-surface-variant);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--primary);
}

/* ── Custom Cursor ───────────────────────────────────────────────────────── */
.custom-cursor,
.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
}

.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.custom-cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 212, 110, 0.4);
  transition: width 0.25s ease, height 0.25s ease;
}

.custom-cursor.active,
.custom-cursor-follower.active {
  width: 48px;
  height: 48px;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none !important;
}

/* ── Reveal Animations ───────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(6px);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(6px);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(4px);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

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

  .custom-cursor,
  .custom-cursor-follower {
    display: none !important;
  }

  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button {
    cursor: auto !important;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    background: rgba(6, 18, 43, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    gap: 32px;
    border-top: 1px solid rgba(255, 212, 110, 0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    font-size: 1.3rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-phone,
  .nav-actions .btn,
  .logo-subtitle {
    display: none;
  }

  .hero-door__title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero-door__content {
    bottom: 8%;
    left: 5%;
    right: 5%;
  }

  .hero-door__midtext-line span {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

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

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

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

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

  .footer-cta-band {
    flex-direction: column;
    text-align: center;
    transform: none;
    margin-bottom: 32px;
  }

  .contact-cta {
    padding: 80px 0;
  }

  .contact-cta__info {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 80px 0;
  }

}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-door__actions {
    flex-direction: column;
  }

  .hero-door__actions .btn {
    width: 100%;
  }

  .contact-cta__actions {
    flex-direction: column;
  }

  .contact-cta__actions .btn {
    width: 100%;
  }
}

/* ── Floating Phone CTA (mobile) ─────────────────────────────────────────── */
.phone-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: none;
}

.phone-float a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: var(--on-primary);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 24px rgba(230, 183, 62, 0.3);
  transition: transform 0.2s ease;
}

.phone-float a:hover {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .phone-float {
    display: block;
  }
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Service list (for services page compat) ─────────────────────────────── */
.service-block {
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--surface-container);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-hover);
}

.service-block h3 {
  color: var(--on-surface);
  margin-bottom: 8px;
}

.service-block p {
  font-size: 0.92rem;
}

.service-meta {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 8px;
}

.list li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--on-surface-variant);
  font-size: 0.95rem;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--surface-container);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  box-shadow: var(--shadow-gold-hover);
}

.panel.light {
  background: linear-gradient(180deg, #fdf9ee, #f2ead1);
  color: var(--surface);
}

.panel.light h2,
.panel.light h3,
.panel.light p,
.panel.light li {
  color: var(--surface-container-lowest);
}

.offer-band {
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--surface-container);
  border: 1px solid rgba(255, 212, 110, 0.15);
}

.offer-band h3 {
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-full {
  padding: 140px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero-full .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--on-primary);
  font-size: 0.78rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.hero-full h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--on-surface);
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.timeline {
  padding-left: 20px;
  border-left: 2px solid var(--outline-variant);
}

.timeline-item {
  padding: 16px 0;
}

.timeline-item h4 {
  color: var(--on-surface);
  font-size: 1rem;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.9rem;
}

/* ── Footer styles (compatible both old and new) ─────────────────────────── */
.impressive-footer {
  background: var(--surface-container-lowest);
  padding-top: 0;
  margin-top: 80px;
}

.impressive-footer-shell {
  padding-top: 0;
}

.impressive-footer-cta {
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--surface-container), var(--surface-container-high));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 212, 110, 0.1);
}

.impressive-footer-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.impressive-footer-cta h3 {
  font-size: 1.4rem;
  color: var(--on-surface);
}

.impressive-footer-btn {
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: var(--on-primary);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impressive-footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}

.impressive-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.impressive-footer-brand h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.impressive-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.impressive-footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.impressive-footer-tags span {
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-container);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  border: 1px solid var(--outline-variant);
}

.impressive-footer-grid section h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: 18px;
}

.impressive-footer-grid section li {
  margin-bottom: 10px;
}

.impressive-footer-grid section a {
  font-size: 0.88rem;
  color: var(--on-surface-variant);
  transition: color 0.2s;
}

.impressive-footer-grid section a:hover {
  color: var(--primary);
}

.impressive-footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--outline-variant);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.impressive-footer-bottom p {
  font-size: 0.78rem;
  color: var(--on-surface-variant);
}

.impressive-footer-social {
  display: flex;
  gap: 16px;
}

.impressive-footer-social a {
  font-size: 0.82rem;
  color: var(--on-surface-variant);
  transition: color 0.2s;
}

.impressive-footer-social a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .impressive-footer {
    margin-top: 120px;
  }

  .impressive-footer-cta {
    flex-direction: column;
    text-align: center;
    transform: none;
    margin-bottom: 36px;
  }

  .impressive-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .split-layout {
    grid-template-columns: 1fr;
  }

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

/* ── Mobile Call Bar ─────────────────────────────────────────────────────── */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--surface-container-lowest);
  border-top: 1px solid var(--outline-variant);
  z-index: 90;
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-call {
    display: block;
  }

  .mobile-call .btn {
    width: 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════════════ */
/* ── 3D Product Viewer — Premium Interactive Model ─────────────────────── */
/* ═════════════════════════════════════════════════════════════════════════ */

.section-3d-viewer {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--surface), var(--surface-container-low));
  overflow: hidden;
}

.section-3d-viewer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 800px;
  height: 600px;
  transform: translate(-50%, -30%);
  background: radial-gradient(ellipse,
      rgba(255, 212, 110, 0.08) 0%,
      transparent 70%);
  pointer-events: none;
}

.section-3d-viewer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse,
      rgba(192, 220, 255, 0.05) 0%,
      transparent 70%);
  pointer-events: none;
}

.viewer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* 3D Canvas Container */
#product-3d-viewer {
  position: relative;
  width: 100%;
  min-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--surface-container-high) 0%,
      var(--surface-container) 100%);
  border: 1px solid rgba(255, 212, 110, 0.1);
  box-shadow: 0 20px 60px rgba(2, 13, 38, 0.4),
              inset 0 0 40px rgba(255, 212, 110, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#product-3d-viewer.loaded {
  box-shadow: 0 20px 60px rgba(2, 13, 38, 0.4),
              inset 0 0 40px rgba(255, 212, 110, 0.08);
  border-color: rgba(255, 212, 110, 0.15);
}

#product-3d-viewer canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #06122b 0%, #0f1b34 100%);
}

/* 3D Viewer Controls Info */
.viewer-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.viewer-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.viewer-title .eyebrow {
  margin-bottom: 0;
}

.viewer-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--on-surface);
  line-height: 1.1;
}

.viewer-title p {
  font-size: 1.05rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* Interaction Guide */
.interaction-guide {
  padding: 24px;
  background: var(--surface-container);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.interaction-guide h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.control-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.control-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 212, 110, 0.1);
  border: 1px solid rgba(255, 212, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
}

.control-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.control-text strong {
  font-size: 0.9rem;
  color: var(--on-surface);
  display: block;
}

.control-text span {
  font-size: 0.8rem;
  color: var(--on-surface-variant);
  display: block;
}

/* Features List */
.viewer-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-text strong {
  font-size: 0.9rem;
  color: var(--on-surface);
}

.feature-text span {
  font-size: 0.85rem;
  color: var(--on-surface-variant);
}

/* CTA Button */
.viewer-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.viewer-cta .btn {
  margin-top: 8px;
}

/* Loading State */
.viewer-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 18, 43, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#product-3d-viewer.loaded .viewer-loading {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 212, 110, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .viewer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #product-3d-viewer {
    min-height: 500px;
  }

  .interaction-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .control-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .control-icon {
    width: 36px;
    height: 36px;
  }

  .control-text strong,
  .control-text span {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .section-3d-viewer {
    padding: 80px 0;
  }

  .viewer-container {
    gap: 32px;
  }

  #product-3d-viewer {
    min-height: 400px;
  }

  .viewer-title h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .interaction-guide {
    grid-template-columns: 1fr;
  }

  .viewer-features {
    gap: 12px;
  }

  .feature-item {
    gap: 10px;
  }

  .feature-text strong {
    font-size: 0.85rem;
  }

  .feature-text span {
    font-size: 0.8rem;
  }

  .viewer-cta {
    gap: 8px;
  }

  .viewer-cta .btn {
    width: 100%;
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .section-3d-viewer::before {
    width: 400px;
    height: 300px;
  }

  #product-3d-viewer {
    min-height: 320px;
  }

  .interaction-guide {
    padding: 16px;
  }

  .control-item {
    gap: 10px;
  }

  .control-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .feature-item {
    gap: 8px;
  }

  .feature-icon {
    font-size: 0.75rem;
  }
}