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

  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --black: #050505;
    --surface: #0D0D0D;
    --surface2: #131313;
    --surface3: #1A1A1A;
    --text: #F0EAD6;
    --text-dim: #9A8E72;
    --text-muted: #8C8368;
    --border: rgba(201,168,76,0.18);
    --glow: rgba(201,168,76,0.12);
    --hero-photo-opacity: 0.38;
  }

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-overflow-scrolling: touch; }

  .skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--gold);
    color: var(--black);
    padding: 12px 20px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.2s ease;
  }
  .skip-link:focus { top: 16px; }

  a:focus-visible, button:focus-visible, [role="button"]:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: default;
  }

  /* ── CURSOR ── */
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    transform: translate(-50%,-50%);
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), width 0.3s, height 0.3s, opacity 0.3s;
    transform: translate(-50%,-50%);
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(5,5,5,0.92);
    backdrop-filter: blur(20px);
    padding: 14px 40px;
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-decoration: none;
    line-height: 1.1;
  }
  .nav-logo span { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); font-family: 'Space Grotesk', sans-serif; font-weight: 300; }

  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
  .nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); letter-spacing: 0.05em; line-height: 1.1; }
  .nav-logo-text span { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); font-family: 'Space Grotesk', sans-serif; font-weight: 300; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Space Grotesk', sans-serif; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 9px 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: all 0.3s; }

  /* ── HERO ── */
  #hero {
    min-height: 100svh;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg-photo {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: var(--hero-photo-opacity, 0.38);
    z-index: 0;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      100deg,
      rgba(5,5,5,0.94) 0%,
      rgba(5,5,5,0.82) 30%,
      rgba(5,5,5,0.45) 60%,
      rgba(5,5,5,0.65) 100%
    );
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
                radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  }

  /* 3D floating phone */
  .hero-3d {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    max-width: 600px;
    perspective: 1200px;
  }
  .phone-3d {
    width: 100%;
    animation: float3d 6s ease-in-out infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 40px 80px rgba(201,168,76,0.2));
  }
  @keyframes float3d {
    0%,100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0px); }
    50% { transform: rotateY(-8deg) rotateX(2deg) translateY(-20px); }
  }

  /* SVG Phone illustration */
  .phone-svg-wrap { position: relative; display: flex; justify-content: center; }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 40px 80px;
    max-width: 620px;
    margin-left: 6%;
  }
  .hero-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.3s;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
  .hero-title {
    word-break: break-word;
    overflow-wrap: break-word;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.4rem, 6vw, 6.5rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--text);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.5s;
    letter-spacing: -0.02em;
    font-style: italic;
  }
  .hero-title em { color: var(--gold); font-style: italic; }
  .hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.7s;
    font-weight: 300;
  }
  .hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.9s;
  }
  .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
  }
  .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.1s;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.3); }
  .btn-ghost {
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 14px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  /* Hero scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.5s;
  }
  .scroll-hint span { font-family: 'Space Grotesk', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
  @keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

  /* ── SECTION COMMONS ── */
  section { padding: 100px 40px; position: relative; }
  .section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
  .section-title {
    word-break: break-word;
    overflow-wrap: break-word;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-sub {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.75;
    max-width: 540px;
    font-weight: 300;
  }
  .container { max-width: 1200px; margin: 0 auto; }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ── CONTACT FORM (inside Hero) ── */
  #contact-form-section {
    background: var(--surface);
    padding: 80px 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
  }
  .contact-info { padding-top: 10px; }
  .contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
  }
  .contact-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
  }
  .contact-info-text { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
  .contact-info-text strong { color: var(--text); font-weight: 500; display: block; margin-bottom: 2px; font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

  /* Hours table */
  .hours-grid { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
  .hours-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-dim); }
  .hours-row span:first-child { color: var(--text-muted); }

  /* Social links */
  .social-links { display: flex; gap: 12px; margin-top: 24px; }
  .social-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* Booking CTA (SimplyBook.me) */
  .booking-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    padding: 40px 36px;
  }
  .booking-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text);
    margin: 14px 0 16px;
  }
  .booking-card-title em { font-style: italic; color: var(--gold); }
  .booking-card-sub { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 22px; }
  .booking-perks { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .booking-perks li {
    font-size: 0.85rem;
    color: var(--text-dim);
    padding-left: 26px;
    position: relative;
  }
  .booking-perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
  }
  .form-submit, .booking-cta-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
  }
  .form-submit:hover, .booking-cta-btn:hover { background: var(--gold-light); box-shadow: 0 12px 40px rgba(201,168,76,0.25); }
  .form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 16px; }

  /* ── SERVICES ── */
  #services { background: var(--black); }
  .service-card {
    background: var(--surface);
    padding: 36px 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover { background: var(--surface2); }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover .service-icon { color: var(--gold-light); transform: scale(1.1) rotate(-5deg); }
  .service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--gold);
    transition: all 0.3s;
    display: block;
  }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .service-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; font-weight: 300; }
  .service-line {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: width 0.4s ease;
  }
  .service-card:hover .service-line { width: 100%; }

  /* ── STATS STRIP ── */
  .stats-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 40px;
  }
  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
  }
  .stat-item {
    padding: 30px;
    text-align: center;
    position: relative;
  }
  .stat-item::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border);
  }
  .stat-item:last-child::after { display: none; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
  }
  .stat-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); }

  /* ── WHY US ── */
  #why-us { background: var(--surface); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }
  .why-left { position: relative; }
  .why-visual {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--surface2);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .why-visual-inner {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* 3D phone in why section */
  .phone-3d-why {
    font-size: 8rem;
    animation: floatWhy 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(201,168,76,0.3));
  }
  @keyframes floatWhy {
    0%,100% { transform: translateY(0) rotateZ(-3deg); }
    50% { transform: translateY(-15px) rotateZ(3deg); }
  }
  .why-badge-float {
    position: absolute;
    background: var(--surface3);
    border: 1px solid var(--border);
    padding: 14px 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
  .why-badge-float span { color: var(--gold); font-size: 1.1rem; display: block; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
  .wb-1 { bottom: 30px; right: -30px; }
  .wb-2 { top: 30px; left: -30px; }
  .why-reasons { display: flex; flex-direction: column; gap: 28px; }
  .why-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  .why-item:hover { border-color: var(--border); background: var(--surface2); }
  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    transition: color 0.3s;
  }
  .why-item:hover .why-num { color: var(--gold); }
  .why-item-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
  }
  .why-item-content p { font-size: 0.83rem; color: var(--text-dim); line-height: 1.65; font-weight: 300; }

  /* ── PARALLAX MARQUEE ── */
  .marquee-section {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface2);
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
  }
  .marquee-item {
    padding: 0 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .marquee-item em { color: var(--gold); font-style: italic; }
  .marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-dim); flex-shrink: 0; }
  @keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ── FAQ ── */
  #faq { background: var(--black); }
  .faq-inner { max-width: 800px; margin: 60px auto 0; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    gap: 20px;
    transition: color 0.3s;
    width: 100%;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    text-align: left;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.4;
  }
  .faq-icon {
    width: 28px; height: 28px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.3s, background 0.3s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--black); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.25,.46,.45,.94), padding 0.3s;
  }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a-inner { padding: 0 0 22px; font-size: 0.88rem; color: var(--text-dim); line-height: 1.75; font-weight: 300; }

  /* ── CTA FINAL ── */
  #final-cta {
    background: var(--surface);
    text-align: center;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  #final-cta .section-label { justify-content: center; }
  #final-cta .section-title {
    word-break: break-word;
    overflow-wrap: break-word; text-align: center; }
  .cta-sub { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; max-width: 500px; margin: 0 auto 40px; font-weight: 300; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-phone-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--gold);
    text-decoration: none;
    display: block;
    margin: 30px 0;
    transition: color 0.3s;
    letter-spacing: 0.05em;
  }
  .cta-phone-big:hover { color: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 50px 40px 30px;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
  }
  .footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
  .footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; font-weight: 300; }
  .footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li { font-size: 0.83rem; color: var(--text-muted); }
  .footer-col ul a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
  .footer-bottom p { font-size: 0.75rem; color: var(--text-muted); font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.08em; }
  .footer-bottom a { color: var(--gold-dim); text-decoration: none; }

  /* ── MOBILE NAV DRAWER ── */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
  .mobile-nav a:hover { color: var(--gold); }
  .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-3d { width: 55%; right: -5%; }
    .why-grid { gap: 50px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
  }
  @media (max-width: 768px) {
    nav { padding: 18px 20px; }
    nav.scrolled { padding: 14px 20px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    section { padding: 70px 20px; }
    #contact-form-section { padding: 60px 20px; }
    .hero-content { padding: 100px 20px 80px; margin-left: 0; max-width: 100%; }
    .hero-3d { display: none; }
    .hero-title {
    word-break: break-word;
    overflow-wrap: break-word; font-size: 2.8rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .form-row { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 50px; }
    .why-left { display: none; }
    .why-visual { display: none; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .wb-1, .wb-2 { display: none; }
    .social-links { flex-wrap: wrap; }
  }
  @media (max-width: 480px) {
    .hero-title {
    word-break: break-word;
    overflow-wrap: break-word; font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-ghost { text-align: center; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
  }

  /* Parallax layers */
  .parallax-layer { will-change: transform; }

  /* ── SERVICES SLIDER ── */
  .svc-slider-wrap {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .svc-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
    touch-action: pan-y;
  }
  .svc-slide {
    min-width: 100%;
    position: relative;
    height: 520px;
    overflow: hidden;
    flex-shrink: 0;
  }
  @media(max-width:768px){ .svc-slide { height: 420px; } }
  @media(max-width:480px){ .svc-slide { height: 360px; } }
  .svc-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
    transform: scale(1.05);
  }
  .svc-slide.active .svc-slide-bg { transform: scale(1); }
  .svc-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(5,5,5,0.92) 0%,
      rgba(5,5,5,0.55) 40%,
      rgba(5,5,5,0.2) 100%
    );
  }
  .svc-slide-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 48px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s ease 0.15s, opacity 0.5s ease 0.15s;
  }
  .svc-slide.active .svc-slide-content { transform: translateY(0); opacity: 1; }
  .svc-slide-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
  .svc-slide-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.1;
  }
  .svc-slide-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 560px;
    font-weight: 300;
  }
  /* Gold accent line on active slide */
  .svc-slide.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, var(--gold), transparent);
  }
  
  
  
  
  
  
  /* Dots */
  .svc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
    align-items: center;
  }
  .svc-dot {
    width: 24px; height: 3px;
    border-radius: 100px;
    background: rgba(201,168,76,0.2);
    border: none;
    cursor: pointer;
    transition: background 0.35s, width 0.35s, transform 0.2s;
    padding: 0;
  }
  .svc-dot:hover { background: rgba(201,168,76,0.5); transform: scaleY(1.5); }
  .svc-dot.active { background: var(--gold); width: 48px; }


  /* ── LOCATION SECTION (interactive map) ── */
  .loc-map-wrap {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
  }
  @media(max-width:860px){
    .loc-map-wrap { grid-template-columns: 1fr; }
  }
  .loc-map-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface2);
    min-height: 580px;
    filter: grayscale(0.15) contrast(1.05);
  }
  @media(max-width:860px){ .loc-map-frame { min-height: 460px; } }
  @media(max-width:600px){ .loc-map-frame { min-height: 400px; } }
  .loc-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .loc-info-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
  }
  @media(max-width:600px){ .loc-info-card { padding: 22px 20px 26px; } }
  /* Body */
  .loc-body {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  @media(max-width:600px){ .loc-body { padding: 22px 20px 26px; } }
  .loc-type {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .loc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
  }
  .loc-addr {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.65;
    font-weight: 300;
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }
  .loc-hours {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.03em;
  }
  /* Maps button */
  .loc-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
  }
  .loc-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 13px 24px;
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s;
    align-self: flex-start;
    border: none;
    cursor: pointer;
  }
  .loc-maps-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.3);
  }
  .loc-maps-btn-green {
    background: rgba(74,222,128,0.15);
    color: #4ade80;
    border: 1px solid rgba(74,222,128,0.3);
  }
  .loc-maps-btn-green:hover {
    background: #4ade80;
    color: var(--black);
    box-shadow: 0 10px 30px rgba(74,222,128,0.25);
  }


  /* ════════════════════════════════
     COMPREHENSIVE RESPONSIVE FIXES
     ════════════════════════════════ */

  /* ── GLOBAL BOX FIX ── */
  img { max-width: 100%; display: block; }
  input, select, textarea, button { max-width: 100%; }

  /* ── NAV ── */
  @media (max-width: 1024px) {
    nav { padding: 16px 28px; }
    nav.scrolled { padding: 12px 28px; }
    .nav-links { gap: 22px; }
    .nav-links a { font-size: 0.75rem; }
  }
  @media (max-width: 768px) {
    nav { padding: 14px 18px; }
    nav.scrolled { padding: 12px 18px; }
    .nav-logo { font-size: 1.1rem; }
    .nav-logo img { height: 34px !important; width: 34px !important; }
  }

  /* ── HERO ── */
  @media (max-width: 1024px) {
    .hero-content { margin-left: 4%; padding: 110px 28px 80px; }
    .hero-3d { width: 50%; right: -3%; }
  }
  @media (max-width: 768px) {
    .hero-content { padding: 100px 20px 70px; margin-left: 0; max-width: 100%; }
    .hero-title {
    word-break: break-word;
    overflow-wrap: break-word; font-size: clamp(3rem, 13vw, 5.5rem) !important; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 15px 20px; }
    .hero-badges { gap: 14px; }
    .badge { font-size: 0.72rem; }
  }
  @media (max-width: 480px) {
    .hero-title {
    word-break: break-word;
    overflow-wrap: break-word; font-size: clamp(2.6rem, 14vw, 4.5rem) !important; line-height: 0.95 !important; }
    .hero-eyebrow { font-size: 0.62rem; }
  }

  /* ── STATS STRIP ── */
  @media (max-width: 1024px) {
    .stats-strip { padding: 50px 28px; }
    .stats-inner { gap: 0; }
  }
  @media (max-width: 768px) {
    .stats-strip { padding: 50px 20px; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 22px 16px; }
    .stat-num { font-size: 3rem !important; }
    .stat-item:nth-child(2)::after { display: none; }
    .stat-item:nth-child(3)::after { display: none; }
  }
  @media (max-width: 480px) {
    .stat-num { font-size: 2.6rem !important; }
    .stat-label { font-size: 0.62rem; }
  }

  /* ── CONTACT FORM SECTION ── */
  @media (max-width: 1024px) {
    .contact-grid { gap: 50px; padding: 0 28px; }
    #contact-form-section { padding: 70px 0; }
  }
  @media (max-width: 768px) {
    #contact-form-section { padding: 60px 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 0; }
    .form-row { grid-template-columns: 1fr; gap: 14px; }
    .social-links { flex-wrap: wrap; gap: 10px; }
    .social-btn { flex: 1; min-width: 130px; justify-content: center; }
  }
  @media (max-width: 480px) {
    .social-btn { font-size: 0.68rem; padding: 9px 14px; }
    .contact-icon { width: 34px; height: 34px; font-size: 0.85rem; }
  }

  /* ── SERVICES SLIDER ── */
  @media (max-width: 1024px) {
    .svc-slide-content { padding: 30px 36px; }
  }
  @media (max-width: 768px) {
    .svc-slide { height: 440px; }
    .svc-slide-content { padding: 28px 22px; }
    .svc-slide-name { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .svc-slide-desc { font-size: 0.85rem; max-width: 100%; }
    .svc-slide-icon { font-size: 1.8rem; margin-bottom: 10px; }
  }
  @media (max-width: 480px) {
    .svc-slide { height: 380px; }
    .svc-slide-content { padding: 22px 18px; }
    .svc-slide-name { font-size: clamp(1.4rem, 7vw, 1.9rem); }
    .svc-slide-desc { font-size: 0.82rem; line-height: 1.55; }
  }

  /* ── WHY US ── */
  @media (max-width: 1024px) {
    #why-us { padding: 80px 28px; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-left { display: none; }
    .why-reasons { gap: 20px; }
  }
  @media (max-width: 768px) {
    #why-us { padding: 70px 20px; }
    .why-item { padding: 18px 16px; }
    .why-num { font-size: 2rem; width: 32px; }
    .why-item-content h3 { font-size: 1.15rem; }
    .why-item-content p { font-size: 0.82rem; }
  }
  @media (max-width: 480px) {
    .why-item { gap: 14px; }
    .why-num { font-size: 1.7rem; }
  }

  /* ── MARQUEE ── */
  @media (max-width: 768px) {
    .marquee-item { font-size: 1.2rem; padding: 0 24px; gap: 24px; }
  }

  /* ── FAQ ── */
  @media (max-width: 1024px) {
    #faq { padding: 80px 28px; }
    .faq-inner { max-width: 100%; }
  }
  @media (max-width: 768px) {
    #faq { padding: 70px 20px; }
    .faq-q-text { font-size: 1rem; }
    .faq-a-inner { font-size: 0.84rem; }
    .faq-icon { width: 24px; height: 24px; font-size: 0.95rem; }
  }
  @media (max-width: 480px) {
    .faq-q { padding: 18px 0; gap: 14px; }
    .faq-q-text { font-size: 0.95rem; }
  }

  /* ── LOCATION SECTION ── */
  @media (max-width: 1024px) {
    #location { padding: 80px 28px; }
    .loc-map-wrap { max-width: 680px; }
  }
  @media (max-width: 768px) {
    #location { padding: 70px 20px; }
    .loc-map-frame { border-radius: 14px; }
    .loc-info-card { border-radius: 14px; padding: 20px 18px 24px; gap: 10px; }
    .loc-body { padding: 20px 18px 24px; gap: 10px; }
    .loc-name { font-size: 1.4rem !important; }
    .loc-maps-btn { font-size: 0.75rem; padding: 11px 18px; width: 100%; justify-content: center; }
  }
  @media (max-width: 480px) {
    .loc-addr { font-size: 0.8rem; }
    .loc-hours { font-size: 0.76rem; }
    .loc-type { font-size: 0.62rem; }

  }

  /* ── FINAL CTA ── */
  @media (max-width: 1024px) {
    #final-cta { padding: 100px 28px; }
    .cta-phone-big { font-size: clamp(1.8rem, 5vw, 3rem); }
  }
  @media (max-width: 768px) {
    #final-cta { padding: 80px 20px; }
    .cta-btns { flex-direction: column; align-items: stretch; }
    .cta-btns .btn-primary, .cta-btns .btn-ghost { text-align: center; padding: 15px 20px; }
    .cta-phone-big { font-size: clamp(2rem, 9vw, 3.5rem); }
    .cta-sub { font-size: 0.88rem; }
  }
  @media (max-width: 480px) {
    .cta-phone-big { font-size: clamp(1.8rem, 10vw, 2.8rem); letter-spacing: 0; }
  }

  /* ── FOOTER ── */
  @media (max-width: 1024px) {
    footer { padding: 50px 28px 28px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    footer { padding: 50px 20px 28px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .footer-brand p { max-width: 100%; }
  }

  /* ── SECTION COMMONS ── */
  @media (max-width: 1024px) {
    section { padding: 80px 28px; }
    .section-title {
    word-break: break-word;
    overflow-wrap: break-word; font-size: clamp(2rem, 4vw, 3.2rem); }
  }
  @media (max-width: 768px) {
    section { padding: 70px 20px; }
    .section-title {
    word-break: break-word;
    overflow-wrap: break-word; font-size: clamp(1.9rem, 7vw, 3rem); }
    .section-sub { font-size: 0.87rem; }
  }
  @media (max-width: 480px) {
    section { padding: 60px 16px; }
    .section-title {
    word-break: break-word;
    overflow-wrap: break-word; font-size: clamp(1.7rem, 8vw, 2.5rem); }
  }

  /* ── TABLET (iPad) SPECIFIC 768–1024 ── */
  @media (min-width: 769px) and (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(4,1fr); }
  }

  /* ── DESKTOP LARGE ── */
  @media (min-width: 1400px) {
    .container { max-width: 1300px; }
    .hero-content { margin-left: 8%; max-width: 680px; }
    .hero-title {
    word-break: break-word;
    overflow-wrap: break-word; font-size: 7rem !important; }
    .contact-grid { max-width: 1200px; }
  }

  /* ── TOUCH / TAP IMPROVEMENTS ── */
  @media (hover: none) and (pointer: coarse) {
    .service-card:hover { background: var(--surface); }
    .service-card:hover::before { opacity: 0; }
    .service-card:hover .service-line { width: 0; }
    .btn-primary:hover, .btn-ghost:hover { transform: none; }
    .faq-q { -webkit-tap-highlight-color: transparent; }
    .svc-dot { min-width: 28px; min-height: 18px; }
  }

  /* ── SAFE AREA (notch phones) ── */
  @supports (padding: max(0px)) {
    nav { padding-left: max(18px, env(safe-area-inset-left)); padding-right: max(18px, env(safe-area-inset-right)); }
    footer { padding-bottom: max(30px, env(safe-area-inset-bottom)); }
  }

  /* ── PREVENT HORIZONTAL SCROLL ── */
  .marquee-section { overflow: hidden; }
  .svc-slider-wrap { overflow: hidden; }
  .loc-map-wrap { overflow: visible; }



  /* Touch active states */
  .btn-primary:active { background: var(--gold-light); transform: scale(0.98); }
  .btn-ghost:active { border-color: var(--gold); color: var(--gold); }
  .loc-maps-btn:active { opacity: 0.85; transform: scale(0.98); }
  .faq-item:active .faq-q { color: var(--gold); }
  .nav-cta:active { background: var(--gold); color: var(--black); }


  /* ── PERFORMANCE: content-visibility ── */
  #services, #why-us, #faq, #location, #final-cta, footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
  }
  /* ── Smooth font rendering ── */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
  }

  /* ── Respect prefers-reduced-motion at the CSS level (covers keyframes,
       transitions, and scroll-behavior — not just inline styles) ── */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
    .cursor, .cursor-ring { display: none !important; }
    .hero-3d, .parallax-layer { transform: none !important; }
  }

