/* ============================================================
   CROWN WEB CO. — Shared Stylesheet
   ============================================================ */
/* Fonts loaded via non-render-blocking preload in each HTML file — no @import needed here */

/* =============================================
   ROOT DESIGN TOKENS (exact from styles.css)
============================================= */
:root {
  --background:        #09090F;
  --surface:           #0E0E14;
  --foreground:        #F2EAD8;
  --muted-foreground:  #7A7A8A;
  --subtle:            #3A3A4A;
  --border:            #1E1E2C;
  --input:             #1E1E2C;

  --gold:              #C9A84C;
  --gold-highlight:    #EDD45A;
  --gold-deep:         #9A7020;
  --gold-dark:         #A8832A;
  --cream:             #F6F4EE;
  --near-black:        #1A1A1A;

  --font-display: "Cinzel", serif;
  --font-sans:    "Raleway", sans-serif;
  --font-script:  "Great Vibes", "Snell Roundhand", cursive;

  --radius: 4px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--background);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: light;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* Tab visibility — pause all animations when tab is hidden */
html.cw-hidden *,
html.cw-hidden *::before,
html.cw-hidden *::after {
  animation-play-state: paused !important;
  transition: none !important;
}

/* =============================================
   LAYOUT UTILITIES
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

/* =============================================
   ALL CW-* KEYFRAMES (exact from source)
============================================= */
@keyframes cw-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cw-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes cw-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes cw-crown-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes cw-crown-glow {
  0%, 100% {
    filter:
      drop-shadow(0 0 12px rgba(201, 168, 76, 0.55))
      drop-shadow(0 0 28px rgba(201, 168, 76, 0.35));
  }
  50% {
    filter:
      drop-shadow(0 0 22px rgba(201, 168, 76, 0.85))
      drop-shadow(0 0 48px rgba(201, 168, 76, 0.55));
  }
}

@keyframes cw-sparkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50%      { opacity: 0.9; transform: scale(1.2); box-shadow: 0 0 12px rgba(237, 212, 90, 0.9); }
}

@keyframes cw-pop-in {
  0%   { opacity: 0; transform: scale(0.85); }
  60%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes cw-ring {
  0%   { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes cw-gold-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.35), 0 0 60px -20px rgba(201,168,76,0.45); }
  50%      { box-shadow: 0 0 0 6px rgba(201,168,76,0.0),  0 0 80px -10px rgba(201,168,76,0.65); }
}

@keyframes cw-border-flow {
  to { background-position: 0 0, 300% 0; }
}

@keyframes cw-hw-cycle {
  0%   { stroke-dashoffset: 2400; fill: transparent; opacity: 1; filter: drop-shadow(0 0 0 rgba(201,168,76,0)); }
  40%  { stroke-dashoffset: 0;    fill: transparent; opacity: 1; filter: drop-shadow(0 0 6px rgba(201,168,76,0.10)); }
  55%  { stroke-dashoffset: 0;    fill: #C9A84C;     opacity: 1; filter: drop-shadow(0 0 18px rgba(201,168,76,0.25)); }
  70%  { stroke-dashoffset: 0;    fill: #C9A84C;     opacity: 1; filter: drop-shadow(0 0 26px rgba(237,212,90,0.32)); }
  100% { stroke-dashoffset: 0;    fill: #C9A84C;     opacity: 0; filter: drop-shadow(0 0 0 rgba(201,168,76,0)); }
}

/* Looping version — draws, glows, fades, then pauses before repeating.
   14s total: ~10s visible, ~4s invisible pause so it never feels intrusive. */
@keyframes cw-hw-loop {
  /* Start invisible so the loop-restart reset is never seen */
  0%, 5%  { stroke-dashoffset: 2400; fill: transparent; opacity: 0; filter: none; }
  /* Fade in while beginning to draw */
  10%     { stroke-dashoffset: 2400; fill: transparent; opacity: 1; filter: drop-shadow(0 0 0 rgba(201,168,76,0)); }
  /* Stroke fully drawn */
  42%     { stroke-dashoffset: 0;    fill: transparent; opacity: 1; filter: drop-shadow(0 0 6px rgba(201,168,76,0.12)); }
  /* Fill with gold */
  55%     { stroke-dashoffset: 0;    fill: #C9A84C;     opacity: 1; filter: drop-shadow(0 0 18px rgba(201,168,76,0.28)); }
  /* Glow peak */
  67%     { stroke-dashoffset: 0;    fill: #C9A84C;     opacity: 1; filter: drop-shadow(0 0 28px rgba(237,212,90,0.36)); }
  /* Fade out */
  78%     { stroke-dashoffset: 0;    fill: #C9A84C;     opacity: 0; filter: none; }
  /* Hold invisible — pause before next loop */
  100%    { stroke-dashoffset: 0;    fill: #C9A84C;     opacity: 0; filter: none; }
}

@keyframes cw-reveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* =============================================
   CW-* UTILITY CLASSES (exact from source)
============================================= */
.cw-fade-up     { animation: cw-fade-up 0.8s ease-out both; }
.cw-delay-1     { animation-delay: 0.15s; }
.cw-delay-2     { animation-delay: 0.30s; }
.cw-delay-3     { animation-delay: 0.45s; }
.cw-delay-4     { animation-delay: 0.60s; }

.cw-crown-float { animation: cw-crown-float 5s ease-in-out infinite; transform: translateZ(0); }
.cw-crown-glow  { animation: cw-crown-glow 3.5s ease-in-out infinite; transform: translateZ(0); }

.cw-sparkle {
  animation: cw-sparkle 5s ease-in-out infinite;
  opacity: 0;
  position: absolute;
  border-radius: 50%;
  background: #EDD45A;
}

.cw-pop-in { animation: cw-pop-in 0.9s cubic-bezier(.2,.8,.2,1) both; }

.cw-shimmer-line {
  background: linear-gradient(90deg, transparent 0%, #C9A84C 50%, transparent 100%);
  background-size: 200% auto;
  animation: cw-shimmer 3s ease-in-out infinite;
  height: 1px;
  display: block;
}

/* Card hover lift */
.cw-lift {
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.cw-lift:hover {
  will-change: transform;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -20px rgba(201, 168, 76, 0.45),
              0 0 0 1px rgba(201, 168, 76, 0.35) inset;
}

/* Gold pulse for featured pricing */
.cw-gold-pulse { animation: cw-gold-pulse 4s ease-in-out infinite; }

/* Gradient border */
.cw-gradient-border {
  position: relative;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(120deg, #9A7020 0%, #EDD45A 25%, #C9A84C 50%, #EDD45A 75%, #9A7020 100%) border-box;
  border: 1.5px solid transparent;
  background-size: 100% 100%, 300% 100%;
  animation: cw-border-flow 6s linear infinite;
}

/* Link underline reveal */
.cw-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cw-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.cw-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Process step ring ping */
.cw-ring {
  position: relative;
}
.cw-ring::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid #C9A84C;
  animation: cw-ring 2.4s ease-out infinite;
}

/* Handwriting SVG */
.cw-script-wrap {
  display: block;
  overflow: hidden;
  line-height: 1;
  text-align: center;
  opacity: 1;
}
.cw-handwrite {
  fill: transparent;
  stroke: #C9A84C;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  paint-order: stroke fill;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  opacity: 0;
  animation: cw-hw-loop 14s cubic-bezier(0.37, 0, 0.27, 1) infinite;
}

/* Marquee */
.cw-marquee-wrap {
  overflow: hidden;
}
.cw-marquee {
  display: flex;
  width: max-content;
  animation: cw-marquee 32s linear infinite;
  transform: translateZ(0);
}
.cw-marquee-wrap:hover .cw-marquee { animation-play-state: paused; }

/* Reveal (IntersectionObserver driven) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Corner accents (injected by JS) */
.corner-accent {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.corner-tl { top: 0;    left: 0;  border-top:    1.5px solid #C9A84C; border-left:   1.5px solid #C9A84C; }
.corner-tr { top: 0;    right: 0; border-top:    1.5px solid #C9A84C; border-right:  1.5px solid #C9A84C; }
.corner-bl { bottom: 0; left: 0;  border-bottom: 1.5px solid #C9A84C; border-left:   1.5px solid #C9A84C; }
.corner-br { bottom: 0; right: 0; border-bottom: 1.5px solid #C9A84C; border-right:  1.5px solid #C9A84C; }

/* Ping animation (for available dot) */
.ping {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--gold);
  opacity: 0.6;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* =============================================
   NAVIGATION
============================================= */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
}

.nav-top-strip {
  height: 26px;
  background: linear-gradient(90deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.14) 50%, rgba(201,168,76,0.06) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  display: none;
}

@media (min-width: 768px) {
  .nav-top-strip { display: flex; align-items: center; }
}

.nav-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted-foreground);
  letter-spacing: 0.18em;
}

.nav-available {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-dot-wrap {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.nav-dot-inner {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.nav-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-top-divider {
  color: rgba(201,168,76,0.4);
}

.nav-main-bar {
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.nav-gradient-line {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #C9A84C 50%, transparent 100%);
  opacity: 0.5;
}

.nav-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--foreground);
  text-decoration: none;
}

.nav-logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-logo-tagline {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.32em;
}

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links-desktop { display: flex; }
}

.nav-link {
  position: relative;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.nav-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1.5px solid var(--gold);
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.nav-quote-btn:hover {
  background: var(--gold);
  color: var(--background);
}

.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}

.nav-mobile-menu {
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: none;
}
.nav-mobile-menu.open { display: block; }

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
}
.nav-mobile-inner .nav-link {
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid transparent;
}
.nav-mobile-quote {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-decoration: none;
}

/* =============================================
   SECTION HEADINGS
============================================= */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

.section-heading-bar {
  margin-top: 16px;
  height: 2px;
  width: 40px;
  background: var(--gold);
}

.section-heading-bar.center { margin-left: auto; margin-right: auto; }

/* Gold Ornament */
.gold-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gold-ornament-line {
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent 0%, #C9A84C 50%, transparent 100%);
  background-size: 200% auto;
  animation: cw-shimmer 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .gold-ornament-line { width: 96px; }
}

.gold-ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  animation: cw-crown-glow 3.5s ease-in-out infinite;
}

/* =============================================
   BUTTONS
============================================= */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
  background: transparent;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-cta:hover {
  background: var(--gold);
  color: var(--background);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--foreground);
  background: none;
  border: none;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--gold); }

/* =============================================
   CARDS (gold top border style)
============================================= */
.cw-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 32px;
}

.cw-card-plain {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  position: relative;
  min-height: calc(100dvh - 4rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--background);
  padding: 80px 24px;
}

.hero-bg-img {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .hero-bg-img {
    object-position: 15% center;
  }

  /* Darker overlay on mobile — city lights are bright where the text sits.
     Linear gradient weighted to bottom so the upper crown/logo area still
     shows the video while the text in the lower half stays readable. */
  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(9,9,15,0.38) 0%,
        rgba(9,9,15,0.58) 35%,
        rgba(9,9,15,0.82) 62%,
        rgba(9,9,15,0.95) 100%
      );
  }

  /* Text shadow so letters pop against any background variation */
  .hero-h1,
  .hero-byline,
  .hero-location,
  .hero-subtitle {
    text-shadow: 0 2px 12px rgba(9,9,15,0.85), 0 1px 4px rgba(9,9,15,0.7);
  }
}

.hero-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(9,9,15,0.28) 0%, rgba(9,9,15,0.62) 55%, rgba(9,9,15,0.88) 80%, #09090F 100%);
}

.hero-sparkles {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-content-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero-crown-wrap {
  display: flex;
  justify-content: center;
}

.hero-byline {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 14px;
}

.hero-location {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--muted-foreground);
  letter-spacing: 0.28em;
  text-align: center;
}

.hero-h1 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.15;
  color: var(--foreground);
}

.hero-subtitle {
  margin: 24px auto 0;
  max-width: 640px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--muted-foreground);
  line-height: 1.6;
}

.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-shimmer-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.hero-shimmer-line {
  width: 180px;
}

/* =============================================
   SOCIAL PROOF BAR
============================================= */
.social-proof {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.particles-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--background);
}

.contact-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.social-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}

.social-proof-label {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.social-proof-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.social-proof-grid .reveal {
  padding: 0 40px;
  position: relative;
}

.social-proof-grid .reveal:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-deep), transparent);
}

@media (max-width: 600px) {
  .social-proof-grid { grid-template-columns: 1fr; }
  .social-proof-grid .reveal { padding: 24px 0; border-bottom: 1px solid var(--border); }
  .social-proof-grid .reveal::after { display: none; }
}

.stat-value {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold);
  transition: opacity 0.3s ease;
}

.stat-value--loc {
  font-size: 32px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stat-loc-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.75;
}

.stat-label {
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* =============================================
   MARQUEE STRIP
============================================= */
.marquee-strip {
  background: var(--background);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 64px;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
  padding: 0 20px;
}

.marquee-word {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
  white-space: nowrap;
  line-height: 1;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  display: inline-block;
}

/* =============================================
   CONSTELLATION SHADER (What We Build section)
============================================= */
.constellation-section {
  position: relative;
  overflow: hidden;
  background: var(--background);
}

.constellation-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

/* =============================================
   SERVICE CARDS (HOME + SERVICES PAGE)
============================================= */
.services-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.service-icon-box svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--foreground);
}

.service-desc {
  margin-top: 12px;
  font-family: var(--font-sans);
  color: var(--muted-foreground);
  line-height: 1.65;
}

.service-link {
  margin-top: 24px;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s;
}
.service-link:hover { color: var(--gold-highlight); }

/* =============================================
   PROCESS (HOME PAGE — 5 step horizontal)
============================================= */
.process-grid {
  position: relative;
  margin-top: 64px;
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}

.process-connector {
  pointer-events: none;
  position: absolute;
  display: none;
  height: 1px;
  top: 22px;
  left: 10%;
  right: 10%;
  background: linear-gradient(90deg, transparent 0%, #C9A84C 12%, #C9A84C 88%, transparent 100%);
  opacity: 0.45;
}

@media (min-width: 768px) {
  .process-connector { display: block; }
}

.process-step {
  position: relative;
  text-align: center;
}

.step-circle {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.step-title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
}

.step-desc {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* =============================================
   CORONA SECTION (HOME)
============================================= */
.corona-section {
  position: relative;
  overflow: hidden;
  background: var(--background);
}

.corona-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #09090F 0%, rgba(9,9,15,0.55) 45%, rgba(9,9,15,0.95) 100%);
}

.corona-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.corona-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}

@media (min-width: 768px) {
  .corona-inner { padding: 128px 24px; }
}

.corona-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 13px;
}

.corona-h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--foreground);
  max-width: 640px;
}

.corona-bar {
  margin-top: 20px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.corona-text {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 640px;
}

.corona-photos {
  margin-top: 48px;
  display: grid;
  gap: 16px;
}

@media (min-width: 600px) {
  .corona-photos { grid-template-columns: repeat(2, 1fr); }
}

.corona-photo-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
}

.corona-photo-wrap img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.corona-photo-wrap:hover img {
  transform: scale(1.05);
}

/* =============================================
   FOUNDER SECTION
============================================= */
.founder-section {
  background: transparent;
}

.founder-grid {
  margin-top: 48px;
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .founder-grid { grid-template-columns: 360px 1fr; }
}

.founder-photo-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  max-width: 360px;
  width: 100%;
}

.founder-photo-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.founder-photo-caption {
  padding: 12px 16px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted-foreground);
  letter-spacing: 0.3em;
  border-top: 1px solid var(--border);
}

.founder-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 13px;
}

.founder-h3 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

.founder-bar {
  margin-top: 20px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.founder-p {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.founder-p2 {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.founder-tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-tag {
  padding: 6px 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--foreground);
  border: 1px solid var(--gold);
  letter-spacing: 0.1em;
}

.founder-email {
  margin-top: 32px;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s;
}
.founder-email:hover { color: var(--gold-highlight); }

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.cta-banner-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-banner-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,20,0.85) 0%, rgba(14,14,20,0.95) 100%);
}

.cta-banner-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner-inner { padding: 96px 24px; }
}

.cta-banner-h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--foreground);
}

.cta-banner-sub {
  margin: 16px auto 0;
  max-width: 480px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.cta-banner-btn-wrap {
  margin-top: 32px;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-quote-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-text {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--foreground);
}

.testimonial-name {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--muted-foreground);
}

/* =============================================
   FAQ
============================================= */
#faq-section { scroll-margin-top: 90px; }

.faq-wrap {
  max-width: 768px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

.faq-btn-text {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--foreground);
  font-size: 15px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  padding-right: 40px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.faq-answer.open { display: block; }

/* =============================================
   CONTACT FORM
============================================= */
.contact-form {
  max-width: 672px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  width: 100%;
  background: var(--surface);
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}

.form-field::placeholder { color: var(--subtle); }
.form-field:focus { border-color: var(--gold); }

textarea.form-field { resize: vertical; }

/* =============================================
   PRICING CARDS
============================================= */
.pricing-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 1.5px solid var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--background);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
}

.pricing-price-row {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--foreground);
}

.pricing-period {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--muted-foreground);
  font-size: 14px;
}

.pricing-divider {
  margin: 24px 0;
  height: 1px;
  background: var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans);
  color: var(--muted-foreground);
  font-size: 14px;
}

.pricing-feature-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-cta-wrap { margin-top: 32px; }

.pricing-btn-primary {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--background);
  border: none;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.pricing-btn-primary:hover { opacity: 0.9; }

.pricing-btn-outline {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pricing-btn-outline:hover {
  background: var(--gold);
  color: var(--background);
}

.pricing-custom-link {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.pricing-custom-link:hover { color: var(--gold); }

/* =============================================
   HOSTING SECTION
============================================= */
.hosting-section {
  position: relative;
  overflow: hidden;
  background: var(--background);
  scroll-margin-top: 96px;
}

.hosting-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hosting-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #09090F 0%, rgba(9,9,15,0.85) 50%, #09090F 100%);
}

.hosting-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

@media (min-width: 768px) {
  .hosting-inner { padding: 96px 24px; }
}

.hosting-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 13px;
  text-align: center;
}

.hosting-h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
}

.hosting-bar {
  margin: 16px auto 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hosting-sub {
  margin: 24px auto 0;
  max-width: 480px;
  text-align: center;
  font-family: var(--font-sans);
  color: var(--muted-foreground);
  line-height: 1.65;
}

.hosting-note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted-foreground);
}

/* =============================================
   WORK / SHOWCASE
============================================= */
.showcase-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

.showcase-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.45s ease;
}

.showcase-card:hover { border-color: var(--gold); }

.showcase-img-wrap {
  position: relative;
  overflow: hidden;
}

.showcase-img-wrap img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

@media (min-width: 768px) {
  .showcase-img-wrap img { height: 320px; }
}

.showcase-card:hover .showcase-img-wrap img {
  transform: scale(1.1);
}

.showcase-hover-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: linear-gradient(180deg, rgba(201,168,76,0) 60%, rgba(201,168,76,0.18) 100%);
}

.showcase-card:hover .showcase-hover-overlay { opacity: 1; }

.showcase-body {
  padding: 24px;
}

@media (min-width: 768px) {
  .showcase-body { padding: 32px; }
}

.showcase-category {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
}

.showcase-title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--foreground);
}

.showcase-desc {
  margin-top: 12px;
  font-family: var(--font-sans);
  color: var(--muted-foreground);
  line-height: 1.6;
}

.showcase-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s;
}

.showcase-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showcase-card:hover .showcase-link { color: var(--gold-highlight); }

.showcase-footer {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted-foreground);
}

.showcase-footer a {
  color: var(--gold);
  transition: color 0.2s;
}
.showcase-footer a:hover { color: var(--gold-highlight); }

/* =============================================
   PROCESS PAGE (alternating full layout)
============================================= */
.process-full-steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (min-width: 768px) {
  .process-full-steps { gap: 96px; }
}

.process-full-step {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .process-full-step { grid-template-columns: repeat(2, 1fr); }
}

.process-num-col {
  position: relative;
}

.process-big-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.process-shimmer-under {
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  max-width: 180px;
  height: 1px;
  opacity: 0.45;
  background: linear-gradient(90deg, transparent 0%, #C9A84C 40%, #C9A84C 60%, transparent 100%);
}

.process-step-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  color: var(--foreground);
}

.process-step-bar {
  margin-top: 12px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.process-step-desc {
  margin-top: 20px;
  font-family: var(--font-sans);
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Why Choose Crown (services page) */
.why-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-text {
  margin-top: 24px;
  font-family: var(--font-sans);
  line-height: 1.7;
  color: var(--muted-foreground);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  padding: 16px;
  border: 1px solid var(--border);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -20px rgba(201, 168, 76, 0.45),
              0 0 0 1px rgba(201, 168, 76, 0.35) inset;
}

.why-check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  animation: cw-crown-glow 3.5s ease-in-out infinite;
}

.why-check-circle svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--foreground);
}

/* =============================================
   PAGE HEROES (inner pages)
============================================= */
.page-hero {
  background: var(--background);
  padding: 128px 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero { padding: 160px 24px; }
}

.page-hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 13px;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--background);
  border-top: 1px solid rgba(201,168,76,0.3);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--foreground);
  text-decoration: none;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 15px;
}

.footer-tagline {
  margin-top: 12px;
  max-width: 280px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  list-style: none;
}

@media (min-width: 768px) {
  .footer-nav { justify-content: center; }
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }

.footer-location {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-location { text-align: right; }
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--subtle);
}

/* =============================================
   SECTION PADDING HELPERS
============================================= */
.py-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .py-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

/* =============================================
   HOMEPAGE PRICING GRID — RESPONSIVE
============================================= */
@media (max-width: 860px) {
  #pricing .pricing-grid-build,
  #pricing .pricing-grid-care {
    grid-template-columns: 1fr !important;
  }
  #pricing .pricing-card.featured {
    margin-top: 0 !important;
    padding-top: 44px !important;
  }
}

/* =============================================
   REDUCED MOTION
============================================= */
@media (prefers-reduced-motion: reduce) {
  .cw-script-wrap { animation: none; opacity: 1; }
  .cw-handwrite {
    animation: none;
    fill: #C9A84C;
    stroke-dashoffset: 0;
    opacity: 1;
  }
  .cw-crown-float,
  .cw-crown-glow,
  .cw-marquee,
  .cw-shimmer-line,
  .cw-sparkle,
  .cw-gold-pulse,
  .cw-gradient-border,
  .cw-ring::before,
  .gold-ornament-line {
    animation: none !important;
  }
}

/* =============================================
   SERVICES PAGE REVAMP
============================================= */

/* ── Hero ── */
.svc-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--background);
}

#svc-fbm {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.svc-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.svc-h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--foreground);
  margin: 0 0 28px;
}

.svc-hero-sub {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--muted-foreground);
  margin: 0 0 32px;
  max-width: 400px;
  line-height: 1.5;
}

.svc-scroll-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.svc-scroll-cta:hover { color: var(--gold-highlight); }

.svc-hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-deep) 30%, var(--gold-deep) 70%, transparent);
  z-index: 2;
}

/* ── Editorial Service List ── */
.svc-list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.svc-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 40px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
  transition: border-color 0.35s ease;
  cursor: default;
}

.svc-row--last {
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}

.svc-row:hover { border-top-color: rgba(201,168,76,0.5); }

.svc-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 5px;
  opacity: 0.7;
}

.svc-row-content {
  display: grid;
  grid-template-columns: 32px 220px 1fr auto;
  gap: 0 32px;
  align-items: start;
}

.svc-row-icon {
  padding-top: 3px;
}

.svc-row-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  opacity: 0.8;
}

.svc-row-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
}

.svc-row-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.svc-row-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  padding-top: 3px;
  transition: color 0.2s;
}
.svc-row-link:hover { color: var(--gold-highlight); }

@media (max-width: 900px) {
  .svc-row-content { grid-template-columns: 26px 1fr; grid-template-rows: auto auto auto; }
  .svc-row-title   { grid-column: 2; }
  .svc-row-desc    { grid-column: 1 / -1; margin-top: 12px; }
  .svc-row-link    { grid-column: 1 / -1; margin-top: 12px; }
}

@media (max-width: 600px) {
  .svc-row { grid-template-columns: 36px 1fr; gap: 0 16px; }
}

/* ── Why Choose Crown (redesign) ── */
.svc-why {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 96px 0;
}

.svc-why-grid {
  display: grid;
  gap: 64px;
  align-items: start;
}

@media (min-width: 768px) {
  .svc-why-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.svc-why-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--foreground);
}

.svc-why-body {
  font-family: var(--font-sans);
  color: var(--muted-foreground);
  line-height: 1.75;
  font-size: 15px;
}

.svc-pillar {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.svc-pillar:first-child { border-top: 1px solid var(--border); }

.svc-pillar-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.65;
  padding-top: 3px;
  flex-shrink: 0;
  width: 28px;
}

.svc-pillar-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 6px;
}

.svc-pillar-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted-foreground);
  line-height: 1.6;
}
