:root {
    --ivory: #F8F5EF;
    --warm-white: #FDFCFA;
    --charcoal: #1A1A1A;
    --mid-grey: #3D3D3D;
    --light-grey: #8A8A8A;
    --rule: #E0DBD3;
    --gold: #B38728;
    --gold-light: #D4AF37;
    --gold-pale: #EFE6CC;
    --section-bg: #F2EEE7;
    --font-display: 'Anton', 'Arial Narrow', sans-serif;
    --font-body: 'Archivo', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: clamp(16px, 0.62vw + 13.5px, 20px); }
  body { background: var(--warm-white); color: var(--charcoal); font-family: var(--font-body); font-weight: 300; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

  /* Anton display headings: single heavy weight, uppercase, tight leading */
  .hero-headline, .section-title, .hero-trust-number, .intro-stat-num,
  .service-card-number, .service-card-title, .pricing-card-name, .pricing-card-price,
  .process-step-num, .process-step-title, .rating-number, .footer-logo-mark,
  .service-card.featured .service-card-title, .why-item-title,
  .review-avatar, .testimonial-avatar {
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }
  .hero-headline, .section-title { line-height: 1.0; letter-spacing: 0.005em; }
  .hero-headline em, .section-title em { font-style: normal; color: var(--gold); }
  .pricing-card-price, .review-avatar, .testimonial-avatar { text-transform: none; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; height: 72px; background: rgba(253,252,250,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--rule); transition: all 0.4s ease; }
  nav.scrolled { height: 60px; background: rgba(253,252,250,0.98); box-shadow: 0 2px 30px rgba(0,0,0,0.06); }
  .nav-logo-img { height: 42px; width: auto; display: block; transition: height 0.4s ease; }
  nav.scrolled .nav-logo-img { height: 36px; }
  .footer-logo-img { height: 46px; width: auto; display: block; margin-bottom: 0.6rem; }
  @media (max-width: 600px) { .nav-logo-img { height: 34px; } }
  .nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
  .nav-logo-word { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); }
  .nav-logo-sub { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
  .nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
  .nav-links a { font-family: var(--font-body); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid-grey); text-decoration: none; transition: color 0.25s ease; }
  .nav-links a:hover { color: var(--charcoal); }
  .nav-cta { background: var(--charcoal) !important; color: var(--ivory) !important; padding: 0.6rem 1.4rem; font-size: 0.68rem !important; letter-spacing: 0.2em !important; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease; transform-origin: center; }
  .nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-menu { display: flex; flex-direction: column; gap: 1.4rem; position: fixed; top: 72px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--rule); padding: 2rem 5vw; z-index: 999; opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none; box-shadow: 0 16px 36px rgba(10,10,10,0); transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease, visibility 0.4s; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; box-shadow: 0 16px 36px rgba(10,10,10,0.13); }
  .mobile-menu a { font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; padding-bottom: 1rem; border-bottom: 1px solid var(--rule); opacity: 0; transform: translateY(12px); transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1); }
  .mobile-menu a:last-child { border-bottom: none; color: var(--gold); }
  .mobile-menu.open a { opacity: 1; transform: translateY(0); }
  .mobile-menu.open a:nth-child(1) { transition-delay: 0.06s; }
  .mobile-menu.open a:nth-child(2) { transition-delay: 0.12s; }
  .mobile-menu.open a:nth-child(3) { transition-delay: 0.18s; }
  .mobile-menu.open a:nth-child(4) { transition-delay: 0.24s; }
  .mobile-menu.open a:nth-child(5) { transition-delay: 0.30s; }
  .mobile-menu.open a:nth-child(6) { transition-delay: 0.36s; }

  /* HERO */
  .hero { min-height: calc(100vh - 118px); position: relative; overflow: hidden; display: flex; align-items: center; background: #1A1A1A; }
  .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 45%, rgba(10,10,10,0.35) 100%); }
  .hero-content { position: relative; z-index: 2; max-width: 640px; padding: 3vw 6vw 3vw 8vw; }
  .hero-eyebrow { font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; opacity: 0; animation: fadeUp 0.9s ease 0.2s forwards; }
  .hero-eyebrow::before { content: ''; display: inline-block; width: 36px; height: 1px; background: var(--gold); }
  .hero-headline { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 300; line-height: 1.05; color: #FFFFFF; margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.9s ease 0.4s forwards; }
  .hero-headline em { font-style: italic; color: var(--gold); }
  .hero-subtext { font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.8); max-width: 460px; margin-bottom: 3rem; opacity: 0; animation: fadeUp 0.9s ease 0.6s forwards; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s ease 0.8s forwards; }
  .btn-outline-light { display: inline-block; padding: 1rem 2.2rem; background: transparent; color: #fff; font-family: var(--font-body); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255,255,255,0.5); transition: all 0.3s ease; }
  .btn-outline-light:hover { background: #fff; color: var(--charcoal); border-color: #fff; transform: translateY(-2px); }
  .hero-trust { margin-top: 3.5rem; display: flex; gap: 2rem; align-items: center; opacity: 0; animation: fadeUp 0.9s ease 1.0s forwards; flex-wrap: wrap; }
  .hero-trust-item { display: flex; flex-direction: column; }
  .hero-trust-number { font-family: var(--font-display); font-size: 2rem; font-weight: 500; color: #fff; line-height: 1; }
  .hero-trust-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }
  .hero-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
  .hero-badge { position: absolute; bottom: 2.5rem; right: 2.5rem; width: 100px; height: 100px; border-radius: 50%; border: 1px solid var(--gold); background: rgba(10,10,10,0.6); backdrop-filter: blur(4px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 3; animation: slowSpin 20s linear infinite; }
  .hero-badge-text { font-family: var(--font-body); font-size: 0.52rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); line-height: 1.6; }
  @keyframes slowSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  /* LOGO BAR / BRAND MARQUEE */
  .logo-bar { background: var(--charcoal); padding: 1.6rem 0; overflow: hidden; }
  .logo-bar-heading { text-align: center; font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.1rem; }
  .marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
  .marquee-track { display: flex; align-items: center; width: max-content; animation: marqueeScroll 35s linear infinite; }
  .brand-logo { height: 30px; width: auto; margin: 0 3rem; opacity: 0.75; filter: brightness(0) invert(1); transition: opacity 0.3s ease; flex-shrink: 0; }
  .brand-logo:hover { opacity: 1; }
  @keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (max-width: 600px) { .brand-logo { height: 24px; margin: 0 1.8rem; } }

  /* SECTIONS */
  section { padding: 5.25rem 5vw; }
  .section-eyebrow { font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.8rem; }
  .section-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
  .section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.1; color: var(--charcoal); margin-bottom: 1.5rem; }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body { font-size: 0.92rem; line-height: 1.9; color: var(--mid-grey); max-width: 560px; }
  .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* INTRO */
  .intro { background: var(--charcoal); color: var(--ivory); padding: 6rem 5vw; }
  .intro-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }
  .intro .section-title { color: var(--ivory); }
  .intro .section-eyebrow::before { background: var(--gold); }
  .intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .intro-stat { padding: 2rem; border: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden; }
  .intro-stat::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); }
  .intro-stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--ivory); line-height: 1; margin-bottom: 0.4rem; }
  .intro-stat-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

  /* SERVICES */
  .services { background: var(--warm-white); }
  .services-inner { max-width: 1200px; margin: 0 auto; }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 2rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .service-card { background: var(--section-bg); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: all 0.4s ease; text-decoration: none; display: block; color: inherit; }
  .service-card:hover { background: var(--charcoal); }
  .service-card:hover .service-card-title, .service-card:hover .service-card-body { color: var(--ivory); }
  .service-card:hover .service-card-number { color: rgba(255,255,255,0.08); }
  .service-card:hover .service-card-arrow { opacity: 1; transform: translate(0,0); }
  .service-card-number { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: rgba(0,0,0,0.05); line-height: 1; position: absolute; top: 1.5rem; right: 2rem; transition: color 0.4s ease; }
  .service-card-icon { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--gold); }
  .service-card-title { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; color: var(--charcoal); margin-bottom: 1rem; line-height: 1.2; transition: color 0.4s ease; }
  .service-card-body { font-size: 0.85rem; line-height: 1.8; color: var(--mid-grey); margin-bottom: 1.5rem; transition: color 0.4s ease; }
  .service-card-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); letter-spacing: 0.05em; }
  .service-card-arrow { position: absolute; bottom: 2rem; right: 2rem; opacity: 0; transform: translate(-4px, 4px); transition: all 0.3s ease; font-size: 1.2rem; color: var(--gold); }
  .service-card.featured { background: linear-gradient(135deg, var(--charcoal) 0%, #2A2520 100%); }
  .service-card.featured .service-card-title { color: var(--ivory); font-size: 2rem; }
  .service-card.featured .service-card-body { color: rgba(255,255,255,0.6); }
  .service-card.featured .service-card-number { color: rgba(255,255,255,0.04); }
  .service-card.featured:hover { background: linear-gradient(135deg, #2A2520 0%, var(--charcoal) 100%); }
  .service-card.featured:hover .service-card-title, .service-card.featured:hover .service-card-body { color: var(--ivory); }
  .service-card-featured-right { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 3rem; }
  .service-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .service-features li { font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.7rem; }
  .service-features li::before { content: '—'; color: var(--gold); font-size: 0.7rem; }

  /* PHOTO BAND */
  .photo-band { position: relative; padding: 7rem 5vw; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .photo-band-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; background-attachment: fixed; z-index: 0; }
  .photo-band-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.55)); z-index: 1; }
  .photo-band-content { position: relative; z-index: 2; max-width: 720px; text-align: center; }
  .photo-band-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; line-height: 1.05; color: #fff; text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 1.5rem; }
  .photo-band-title em { font-style: normal; color: var(--gold); }
  .photo-band-text { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 2.5rem; }
  @media (max-width: 768px) { .photo-band-bg { background-attachment: scroll; } .photo-band { padding: 6rem 5vw; } }

  /* GALLERY */
  .gallery { background: var(--warm-white); }
  .gallery-inner { max-width: 1200px; margin: 0 auto; }
  .gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0; }
  .gallery-filter { padding: 0.7rem 1.6rem; font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; background: transparent; color: var(--light-grey); border: 1px solid var(--rule); transition: all 0.25s ease; }
  .gallery-filter:hover { color: var(--charcoal); border-color: var(--charcoal); }
  .gallery-filter.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; display: block; }
  .gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
  .gallery-item:hover .gallery-img { transform: scale(1.08); }
  .gallery-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 45%, transparent 70%); opacity: 0; transition: opacity 0.35s ease; }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-car { font-family: var(--font-display); font-size: 0.92rem; color: #fff; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.02em; }
  .gallery-svc { font-family: var(--font-body); font-size: 0.55rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; }
  .gallery-item.hide { display: none; }
  .gallery-expand { position: absolute; top: 0.6rem; right: 0.6rem; width: 28px; height: 28px; border-radius: 50%; background: rgba(10,10,10,0.5); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.85rem; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
  .gallery-item:hover .gallery-expand { opacity: 1; }
  @media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; } .gallery-overlay { opacity: 1; background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 55%); } }

  /* FLOATING CONTACT */
  .float-contact { position: fixed; bottom: 22px; right: 22px; z-index: 1500; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
  .float-action { display: flex; align-items: center; gap: 10px; text-decoration: none; opacity: 0; transform: translateY(12px) scale(0.9); pointer-events: none; transition: all 0.3s cubic-bezier(0.22,1,0.36,1); }
  .float-contact.open .float-action { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .float-contact.open .float-wa { transition-delay: 0.05s; }
  .float-contact.open .float-call { transition-delay: 0.02s; }
  .float-label { background: var(--charcoal); color: #fff; font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5rem 0.9rem; border-radius: 4px; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
  .float-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.22); }
  .float-wa .float-icon { background: #25D366; color: #fff; }
  .float-call .float-icon { background: var(--charcoal); color: var(--gold); }
  .float-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--charcoal); box-shadow: 0 6px 24px rgba(179,135,40,0.45); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
  .float-toggle:hover { transform: scale(1.06); }
  .float-toggle-icon { position: relative; width: 24px; height: 24px; }
  .float-toggle-icon svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: opacity 0.25s ease, transform 0.3s ease; }
  .float-toggle-icon .fi-close { opacity: 0; transform: translate(-50%,-50%) rotate(-90deg); }
  .float-contact.open .float-toggle { background: var(--charcoal); color: var(--gold); }
  .float-contact.open .fi-chat { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
  .float-contact.open .fi-close { opacity: 1; transform: translate(-50%,-50%) rotate(0deg); }
  @media (max-width: 600px) { .float-contact { bottom: 16px; right: 16px; } .float-toggle { width: 54px; height: 54px; } }

  /* LIGHTBOX */
  .lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(8,8,8,0.96); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
  .lightbox.open { display: flex; opacity: 1; }
  .lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; display: block; box-shadow: 0 20px 80px rgba(0,0,0,0.6); }
  .lightbox-img.swap { animation: lbFade 0.4s ease; }
  @keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
  .lightbox-caption { position: absolute; bottom: 3vh; left: 0; right: 0; text-align: center; padding: 0 1rem; }
  .lightbox-car { font-family: var(--font-display); font-size: 1.4rem; color: #fff; text-transform: uppercase; letter-spacing: 0.03em; }
  .lightbox-svc { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; }
  .lightbox-close { position: absolute; top: 2vh; right: 3vw; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: #fff; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; z-index: 5; }
  .lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
  .lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.3); color: #fff; font-size: 1.6rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; z-index: 5; }
  .lightbox-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
  .lightbox-prev { left: 3vw; }
  .lightbox-next { right: 3vw; }
  .lightbox-counter { position: absolute; top: 2.5vh; left: 3vw; font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); z-index: 5; }
  @media (max-width: 600px) { .lightbox-arrow { width: 42px; height: 42px; font-size: 1.3rem; } .lightbox-prev { left: 2vw; } .lightbox-next { right: 2vw; } .lightbox-img { max-width: 94vw; } }

  /* WHY */
  .why { background: var(--section-bg); }
  .why-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 8vw; align-items: center; }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; }
  .why-item { background: var(--warm-white); padding: 2rem; transition: all 0.3s ease; }
  .why-item:hover { background: var(--charcoal); }
  .why-item:hover .why-item-title, .why-item:hover .why-item-text { color: var(--ivory); }
  .why-item-icon { font-size: 1.5rem; margin-bottom: 1rem; }
  .why-item-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.5rem; transition: color 0.3s; }
  .why-item-text { font-size: 0.8rem; line-height: 1.8; color: var(--light-grey); transition: color 0.3s; }

  /* PRICING */
  .pricing { background: var(--warm-white); }
  .pricing-inner { max-width: 1200px; margin: 0 auto; }
  .pricing-notice { display: flex; align-items: flex-start; gap: 0.85rem; max-width: 860px; margin: 0 0 3rem; padding: 1rem 1.4rem; background: rgba(179,135,40,0.06); border: 1px solid var(--rule); border-left: 3px solid var(--gold); border-radius: 3px; }
  .pricing-notice-icon { color: var(--gold); font-size: 1.05rem; line-height: 1.5; flex-shrink: 0; font-weight: 700; }
  .pricing-notice p { font-size: 0.82rem; color: var(--mid-grey); line-height: 1.65; letter-spacing: 0.01em; margin: 0; font-weight: 400; }
  .pricing-notice strong { color: var(--charcoal); font-weight: 600; }
  .pricing-tabs { display: inline-flex; border: 1px solid var(--rule); margin-bottom: 3.5rem; }
  .pricing-tab { padding: 0.8rem 2rem; font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; border: none; background: transparent; color: var(--light-grey); transition: all 0.25s ease; border-right: 1px solid var(--rule); }
  .pricing-tab:last-child { border-right: none; }
  .pricing-tab.active { background: var(--charcoal); color: var(--ivory); }
  .pricing-panel { display: none; }
  .pricing-panel.active { display: block; }
  .pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .pricing-cards.pricing-cards-2x2 { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { background: var(--section-bg); padding: 2.5rem 2rem; position: relative; transition: transform 0.3s ease; }
  .pricing-card:hover { transform: translateY(-4px); }
  .pricing-card.highlight { background: var(--charcoal); }
  .pricing-card.highlight .pricing-card-name, .pricing-card.highlight .pricing-card-desc, .pricing-card.highlight .pricing-feature { color: var(--ivory); }
  .pricing-card.highlight .pricing-feature::before { color: var(--gold); }
  .pricing-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--charcoal); font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; padding: 0.3rem 1rem; white-space: nowrap; }
  .pricing-card-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.3rem; }
  .pricing-card-price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; margin: 1.2rem 0 0.3rem; }
  .pricing-card-price sup { font-size: 1rem; vertical-align: super; }
  .pricing-card-from { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-grey); margin-bottom: 0.85rem; }
  .pricing-card-size { display: inline-flex; align-items: baseline; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-grey); padding: 0.5rem 0.95rem; border: 1px solid var(--rule); border-radius: 2px; margin-bottom: 1.5rem; }
  .pricing-card-size strong { color: var(--gold); font-weight: 700; font-size: 0.84rem; letter-spacing: 0.04em; }
  .pricing-card.highlight .pricing-card-size { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.65); }
  .pricing-card-desc { font-size: 0.82rem; color: var(--mid-grey); line-height: 1.7; margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--rule); }
  .pricing-card.highlight .pricing-card-desc { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
  .pricing-feature { font-size: 0.8rem; color: var(--mid-grey); display: flex; align-items: flex-start; gap: 0.7rem; line-height: 1.5; }
  .pricing-feature::before { content: '✓'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
  .pricing-card .btn-gold { width: 100%; text-align: center; display: block; box-sizing: border-box; }

  /* TESTIMONIALS */
  .testimonials { background: var(--charcoal); }
  .testimonials-inner { max-width: 1200px; margin: 0 auto; }
  .testimonials .section-title { color: var(--ivory); }
  .testimonials-header { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: flex-end; margin-bottom: 4rem; }
  .testimonials-rating { display: flex; flex-direction: column; align-items: flex-end; }
  .stars { display: flex; gap: 0.3rem; margin-bottom: 0.5rem; }
  .star { color: var(--gold); font-size: 1.1rem; }
  .rating-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--ivory); line-height: 1; }
  .rating-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 0.3rem; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .testimonial-card { background: rgba(255,255,255,0.04); padding: 2.5rem; transition: background 0.3s ease; }
  .testimonial-card:hover { background: rgba(255,255,255,0.07); }
  .testimonial-quote { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 0.5; margin-bottom: 1.5rem; display: block; }
  .testimonial-text { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 1rem; }
  .testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--charcoal); flex-shrink: 0; }
  .testimonial-name { font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; color: var(--ivory); letter-spacing: 0.05em; }
  .testimonial-car { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
  .testimonial-stars { display: flex; gap: 2px; margin-left: auto; }
  .testimonial-stars .star { font-size: 0.75rem; }

  /* REVIEW CAROUSEL */
  .review-carousel { display: flex; align-items: center; gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
  .review-viewport { overflow: hidden; flex: 1; }
  .review-track { display: flex; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
  .review-slide { min-width: 100%; box-sizing: border-box; padding: 0 0.5rem; }
  @media (min-width: 901px) { .review-slide { min-width: 50%; } }
  .review-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 2.5rem; height: 100%; display: flex; flex-direction: column; transition: background 0.3s ease; }
  .review-card:hover { background: rgba(255,255,255,0.06); }
  .review-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
  .review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; color: var(--charcoal); flex-shrink: 0; }
  .review-meta { flex: 1; }
  .review-name { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--ivory); letter-spacing: 0.02em; }
  .review-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
  .review-google { width: 26px; height: 26px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: #4285F4; flex-shrink: 0; }
  .review-stars-row { display: flex; align-items: center; gap: 2px; margin-bottom: 1.2rem; }
  .review-stars-row .star { font-size: 0.9rem; }
  .review-date { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-left: 0.8rem; }
  .review-text { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.7); position: relative; max-height: 7.4em; overflow: hidden; transition: max-height 0.4s ease; }
  .review-text.expanded { max-height: 60em; }
  .review-text.clamped::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2.4em; background: linear-gradient(to bottom, rgba(26,26,26,0) 0%, #1A1A1A 90%); pointer-events: none; }
  .review-readmore { background: none; border: none; color: var(--gold); font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; padding: 0; margin-top: 1rem; align-self: flex-start; transition: opacity 0.2s ease; }
  .review-readmore:hover { opacity: 0.7; }
  .review-arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: var(--ivory); font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s ease; line-height: 1; }
  .review-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
  .review-dots { display: flex; gap: 0.6rem; justify-content: center; margin-top: 2.5rem; }
  .review-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; cursor: pointer; padding: 0; transition: all 0.25s ease; }
  .review-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
  @media (max-width: 900px) { .review-arrow { display: none; } .review-card { padding: 1.8rem; } }

  /* PROCESS */
  .process { background: var(--section-bg); }
  .process-inner { max-width: 1200px; margin: 0 auto; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 4rem; }
  .process-step { background: var(--warm-white); padding: 2.5rem 2rem; transition: all 0.3s ease; }
  .process-step:hover { background: var(--charcoal); }
  .process-step:hover .process-step-num { color: rgba(255,255,255,0.05); }
  .process-step:hover .process-step-title { color: var(--ivory); }
  .process-step:hover .process-step-body { color: rgba(255,255,255,0.5); }
  .process-step-num { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: rgba(0,0,0,0.04); line-height: 1; margin-bottom: 0.5rem; transition: color 0.3s ease; }
  .process-step-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.8rem; transition: color 0.3s ease; }
  .process-step-body { font-size: 0.82rem; line-height: 1.8; color: var(--light-grey); transition: color 0.3s ease; }

  /* AREAS */
  .areas { background: var(--warm-white); }
  .areas-inner { max-width: 1200px; margin: 0 auto; }
  .areas-header { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; margin-bottom: 4rem; }
  .suburb-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .suburb-item { padding: 1rem 1.2rem; font-size: 0.78rem; color: var(--mid-grey); letter-spacing: 0.08em; border: 1px solid var(--rule); margin: -1px 0 0 -1px; transition: all 0.25s ease; }
  .suburb-item:hover { background: var(--charcoal); color: var(--ivory); position: relative; z-index: 1; }

  /* FAQ */
  .faq { background: var(--section-bg); }
  .faq-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 8vw; align-items: start; }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item { border-bottom: 1px solid var(--rule); overflow: hidden; }
  .faq-question { width: 100%; text-align: left; padding: 1.5rem 0; background: transparent; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--charcoal); transition: color 0.25s ease; }
  .faq-question:hover { color: var(--gold); }
  .faq-icon { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; font-style: normal; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
  .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
  .faq-answer p { font-size: 0.85rem; line-height: 1.85; color: var(--mid-grey); }

  /* CTA */
  .cta-band { background: var(--charcoal); padding: 7rem 5vw; position: relative; overflow: hidden; }
  .cta-band::before { content: 'BOOK'; position: absolute; font-family: var(--font-display); font-size: 28vw; font-weight: 300; color: rgba(255,255,255,0.02); top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; user-select: none; }
  .cta-band-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
  .cta-band .section-title { color: var(--ivory); text-align: center; }
  .cta-band-body { font-size: 0.92rem; line-height: 1.9; color: rgba(255,255,255,0.5); margin: 0 auto 3rem; max-width: 520px; }
  .cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
  .btn-gold { display: inline-block; padding: 1.1rem 2.8rem; background: var(--gold); color: var(--charcoal); font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--gold); transition: all 0.3s ease; }
  .btn-outline { display: inline-block; padding: 0.85rem 2rem; background: transparent; color: var(--charcoal); font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--gold); transition: all 0.3s ease; white-space: nowrap; }
  .btn-outline:hover { background: var(--gold); color: var(--charcoal); }
  .btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }
  .cta-contact { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; }
  .cta-contact-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
  .cta-contact-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
  .cta-contact-value { font-family: var(--font-display); font-size: 1.15rem; color: var(--ivory); text-decoration: none; }
  .cta-contact-value:hover { color: var(--gold); }
  .cta-social { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
  .cta-social-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
  .cta-social-links { display: flex; gap: 1.1rem; justify-content: center; }
  .cta-social-link { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
  .cta-social-link svg { width: 21px; height: 21px; fill: currentColor; display: block; }
  .cta-social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(179,135,40,0.4); }

  /* QUOTE FORM */
  .quote-form { max-width: 580px; margin: 0 auto 2.8rem; text-align: left; }
  .quote-form .form-row { display: flex; gap: 1rem; margin-bottom: 1rem; }
  .quote-form .field { flex: 1; display: flex; flex-direction: column; gap: 0.45rem; min-width: 0; }
  .quote-form label { font-size: 0.56rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.42); }
  .quote-form input, .quote-form select, .quote-form textarea { width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.18); border-radius: 3px; padding: 0.8rem 0.95rem; color: var(--ivory); font-family: var(--font-body); font-size: 0.88rem; letter-spacing: 0.02em; transition: border-color 0.25s ease, background 0.25s ease; }
  .quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,0.35); }
  .quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.07); }
  .quote-form select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23B38728' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>"); background-repeat: no-repeat; background-position: right 0.95rem center; padding-right: 2.2rem; }
  .quote-form select:invalid { color: rgba(255,255,255,0.35); }
  .quote-form select option { color: var(--charcoal); background: #fff; }
  .quote-form textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
  .quote-form button.btn-gold { width: 100%; text-align: center; border: none; cursor: pointer; margin-top: 0.5rem; font-size: 0.74rem; }
  .quote-form button.btn-gold:disabled { opacity: 0.55; cursor: default; transform: none; }
  .form-status { margin: 1.1rem auto 0; max-width: 580px; text-align: center; font-size: 0.85rem; letter-spacing: 0.02em; line-height: 1.5; min-height: 1.2em; }
  .form-status.success { color: var(--gold); }
  .form-status.error { color: #e0917b; }
  .form-callnote { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: 0 0 2.5rem; letter-spacing: 0.02em; }
  .form-callnote a { color: rgba(255,255,255,0.7); text-decoration: none; }
  .form-callnote a:hover { color: var(--gold); }
  @media (max-width: 600px) { .quote-form .form-row { flex-direction: column; gap: 1rem; margin-bottom: 1rem; } }

  /* LOGO CONCEPTS */
  .logo-concept { background: var(--ivory); border-top: 4px solid var(--gold); padding: 4rem 5vw; }
  .logo-concept-inner { max-width: 1200px; margin: 0 auto; }
  .logo-concept-label { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
  .logo-concept-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
  .logo-concepts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .logo-concept-card { background: white; padding: 3rem 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; border: 1px solid var(--rule); }
  .logo-mark-v1 { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; letter-spacing: 0.22em; color: var(--charcoal); text-transform: uppercase; }
  .logo-mark-v1 span { color: var(--gold); }
  .logo-mark-v2 { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
  .logo-mark-v2-top { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.38em; text-transform: uppercase; color: var(--charcoal); }
  .logo-mark-v2-line { width: 80px; height: 1px; background: var(--gold); margin: 0.2rem 0; }
  .logo-mark-v2-sub { font-family: var(--font-body); font-size: 0.52rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); }
  .logo-mark-v3 { display: flex; align-items: center; gap: 0.6rem; }
  .logo-mark-v3-symbol { width: 42px; height: 42px; border: 2px solid var(--charcoal); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
  .logo-mark-v3-symbol::after { content: ''; position: absolute; width: 14px; height: 14px; background: var(--gold); border-radius: 50%; }
  .logo-mark-v3-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal); }
  .logo-concept-name { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-grey); }
  .logo-concept-desc { font-size: 0.78rem; color: var(--mid-grey); line-height: 1.7; max-width: 220px; }

  /* TINTING BAR */
  .tinting-bar { background: var(--gold); padding: 1.2rem 5vw; text-align: center; }
  .tinting-bar-text { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; }
  .offer-carousel { position: relative; height: 1.4em; max-width: 900px; margin: 0 auto; overflow: hidden; }
  .offer-slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 0.55em; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--charcoal); font-weight: 600; text-decoration: none; opacity: 0; transform: translateY(7px); transition: opacity 0.7s ease, transform 0.7s ease; pointer-events: none; white-space: nowrap; }
  .offer-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .offer-slide:hover { text-decoration: underline; text-underline-offset: 4px; }
  @media (max-width: 600px) { .offer-slide { font-size: 0.58rem; letter-spacing: 0.14em; gap: 0.4em; } }

  /* FOOTER */
  footer { background: #0D0C0A; padding: 5rem 5vw 2.5rem; }
  .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 4vw; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem; }
  .footer-logo-mark { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.18em; color: var(--ivory); text-transform: uppercase; margin-bottom: 0.3rem; }
  .footer-tagline { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
  .footer-about { font-size: 0.8rem; line-height: 1.85; color: rgba(255,255,255,0.35); max-width: 260px; margin-bottom: 2rem; }
  .footer-social { display: flex; gap: 1rem; }
  .footer-social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: all 0.25s ease; }
  .footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
  .footer-social-link svg { width: 16px; height: 16px; fill: currentColor; display: block; }
  .footer-col-title { font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
  .footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.25s ease; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom-text { font-size: 0.72rem; color: rgba(255,255,255,0.18); }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a { font-size: 0.7rem; color: rgba(255,255,255,0.18); text-decoration: none; }
  .footer-bottom-links a:hover { color: var(--gold); }

  /* MOBILE */
  @media (max-width: 900px) {
    .hero { min-height: calc(100vh - 130px); }
    .hero-content { padding: 2rem 6vw 2rem; }
    .hero-overlay { background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.75) 100%); }
    .hero-badge { width: 80px; height: 80px; bottom: 1.5rem; right: 1.5rem; }
    .intro-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
    .service-card-featured-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-left: 0; padding-top: 2rem; }
    .why-inner { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .pricing-cards, .pricing-cards.pricing-cards-2x2 { grid-template-columns: 1fr; }
    .testimonials-header { grid-template-columns: 1fr; }
    .testimonials-rating { align-items: flex-start; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .areas-header { grid-template-columns: 1fr; }
    .suburb-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .logo-concepts-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    section { padding: 4.5rem 5vw; }
  }
  @media (max-width: 600px) {
    .process-steps { grid-template-columns: 1fr; }
    .pricing-tabs { flex-wrap: wrap; width: 100%; }
    .pricing-tab { flex: 1; min-width: 120px; }
    .footer-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .intro-stats { grid-template-columns: 1fr 1fr; }
    .suburb-grid { grid-template-columns: 1fr 1fr; }
    .hero-trust { gap: 1rem; }
  }


/* ===== INNER PAGE: split image hero ===== */
.svc-hero { position:relative; min-height:80vh; display:flex; align-items:center; background:#1a1a1a; overflow:hidden; }
.svc-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center center; background-repeat:no-repeat; z-index:0; }
.svc-hero-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(100deg, rgba(12,12,12,0.9) 0%, rgba(12,12,12,0.62) 38%, rgba(12,12,12,0.2) 100%); }
.svc-hero .hero-content { position:relative; z-index:2; }
/* ===== split text + media ===== */
.svc-split { display:grid; grid-template-columns:1.05fr 0.95fr; gap:4rem; align-items:center; max-width:1180px; margin:0 auto; }
.svc-split.reverse .svc-media { order:-1; }
.svc-media { position:relative; aspect-ratio:4/3; overflow:hidden; }
.svc-media img { width:100%; height:100%; object-fit:cover; display:block; }
.svc-media::after { content:""; position:absolute; inset:0; border:1px solid rgba(0,0,0,0.07); }
/* ===== what's included ===== */
.svc-incl { max-width:1180px; margin:0 auto; }
.svc-checklist { list-style:none; padding:0; margin:2.2rem 0 0; display:grid; grid-template-columns:repeat(2,1fr); gap:1rem 2.5rem; }
.svc-checklist li { display:flex; gap:0.8rem; align-items:flex-start; font-size:0.92rem; line-height:1.55; color:var(--mid-grey); border-bottom:1px solid var(--rule); padding-bottom:0.9rem; }
.svc-checklist li::before { content:"\2713"; color:var(--gold); font-weight:700; flex-shrink:0; }
.svc-priceRow { display:flex; flex-wrap:wrap; align-items:center; gap:1.6rem; margin-top:2.6rem; }
/* ===== price highlight ===== */
.price-highlight { display:inline-flex; align-items:baseline; gap:0.7rem; background:var(--section-bg); border:1px solid var(--rule); border-radius:3px; padding:1rem 1.5rem; }
.price-highlight span { font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--light-grey); }
.price-highlight strong { font-family:var(--font-display); font-weight:400; font-size:1.9rem; color:var(--gold); line-height:1; }
/* ===== photo strip ===== */
.svc-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; max-width:1180px; margin:0 auto; }
/* ===== final CTA strip ===== */
.cta-strip { background:var(--gold); padding:4rem 5vw; text-align:center; }
.cta-strip h2 { font-family:var(--font-display); font-weight:400; font-size:clamp(1.8rem,4vw,2.8rem); color:var(--charcoal); text-transform:uppercase; margin:0 0 1.5rem; letter-spacing:0.01em; }
.cta-strip .btn-dark { display:inline-block; padding:1.1rem 2.8rem; background:var(--charcoal); color:var(--ivory); font-family:var(--font-body); font-size:0.72rem; font-weight:600; letter-spacing:0.22em; text-transform:uppercase; text-decoration:none; border:1px solid var(--charcoal); transition:all 0.3s ease; }
.cta-strip .btn-dark:hover { background:transparent; color:var(--charcoal); transform:translateY(-2px); }
/* ===== photo carousel ===== */
.svc-carousel { position:relative; max-width:600px; margin:0 auto; }
.svc-carousel-viewport { overflow:hidden; }
.svc-carousel-track { display:flex; transition:transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.svc-carousel-slide { min-width:100%; aspect-ratio:1/1; overflow:hidden; }
.svc-carousel-slide img { width:100%; height:100%; object-fit:cover; object-position:center 50%; display:block; }
.svc-carousel-btn { position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border:none; background:rgba(20,20,20,0.55); color:#fff; font-size:1.7rem; line-height:1; cursor:pointer; z-index:3; transition:background 0.3s ease; }
.svc-carousel-btn:hover { background:var(--gold); }
.svc-carousel-btn.prev { left:0; }
.svc-carousel-btn.next { right:0; }
.svc-carousel-dots { position:absolute; left:0; right:0; bottom:14px; display:flex; gap:9px; justify-content:center; z-index:3; }
.svc-carousel-dots button { width:9px; height:9px; padding:0; border:none; border-radius:50%; background:rgba(255,255,255,0.45); cursor:pointer; transition:background 0.3s ease; }
.svc-carousel-dots button.active { background:var(--gold); }
@media (max-width:860px){
  .svc-split { grid-template-columns:1fr; gap:2rem; }
  .svc-split.reverse .svc-media { order:0; }
  .svc-checklist { grid-template-columns:1fr; }
  .svc-strip { grid-template-columns:1fr 1fr; }
  .svc-hero { min-height:92vh; }
  .svc-hero-bg { background-size:cover; background-position:center center; }
  .svc-carousel { max-width:100%; }
}
/* ===== conversion/trust elements ===== */
.hero-promise { color:var(--gold); font-size:0.74rem; letter-spacing:0.14em; text-transform:uppercase; font-weight:700; margin:1.3rem 0 0; }
.cta-band-promise { color:var(--gold); font-size:0.8rem; letter-spacing:0.12em; text-transform:uppercase; font-weight:700; text-align:center; margin:0.2rem 0 1.8rem; }
.reviews-widget { margin-top:2.5rem; min-height:120px; }
.insta { background:var(--section-bg); }
.insta-inner { max-width:1180px; margin:0 auto; }
.insta-sub { text-align:center; color:var(--mid-grey); font-size:0.95rem; margin:0.8rem 0 2.5rem; }
.insta-sub a { color:var(--gold); text-decoration:none; font-weight:600; }
.insta-grid { display:flex; flex-wrap:wrap; gap:1.2rem; justify-content:center; align-items:flex-start; }
.insta-grid .instagram-media { flex:0 1 328px; min-width:300px; margin:0 !important; }
@media (max-width:680px){ .insta-grid .instagram-media { flex:1 1 100%; max-width:400px; } }

/* ===== trust strip ===== */
.trust-strip { background:var(--charcoal); padding:1rem 5vw; }
.trust-strip-inner { max-width:1180px; margin:0 auto; display:flex; flex-wrap:wrap; gap:0.9rem 2.4rem; justify-content:center; align-items:center; }
.trust-badge { color:var(--ivory); font-size:0.74rem; letter-spacing:0.12em; text-transform:uppercase; font-weight:600; white-space:nowrap; opacity:0.92; }
.trust-badge .g { color:var(--gold); }
@media(max-width:600px){ .trust-strip-inner{ gap:0.6rem 1.3rem; } .trust-badge{ font-size:0.64rem; letter-spacing:0.07em; } }
/* ===== mobile action bar ===== */
.mobile-actionbar { display:none; }
@media(max-width:768px){
  .mobile-actionbar { display:flex; position:fixed; left:0; right:0; bottom:0; z-index:1200; background:rgba(18,18,18,0.97); -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px); border-top:1px solid rgba(255,255,255,0.12); }
  .mab-item { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; padding:0.55rem 0.3rem calc(0.55rem + env(safe-area-inset-bottom)); color:var(--ivory); text-decoration:none; font-size:0.62rem; letter-spacing:0.05em; text-transform:uppercase; font-weight:700; }
  .mab-item svg { width:19px; height:19px; fill:currentColor; }
  .mab-item + .mab-item { border-left:1px solid rgba(255,255,255,0.1); }
  .mab-primary { background:var(--gold); color:var(--charcoal); }
  body { padding-bottom:62px; }
  .float-contact { display:none !important; }
}

/* ===== before/after slider ===== */
.ba-section { background:var(--warm-white); }
.ba-inner { max-width:1080px; margin:0 auto; }
.ba-slider { position:relative; max-width:520px; margin:2.5rem auto 0; aspect-ratio:3/4; overflow:hidden; cursor:ew-resize; user-select:none; -webkit-user-select:none; touch-action:none; box-shadow:0 20px 50px rgba(0,0,0,0.18); }
.ba-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; pointer-events:none; }
.ba-before { clip-path:inset(0 50% 0 0); }
.ba-handle { position:absolute; top:0; bottom:0; left:50%; width:2px; background:var(--ivory); transform:translateX(-1px); pointer-events:none; }
.ba-arrows { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:44px; height:44px; border-radius:50%; background:var(--gold); color:var(--charcoal); font-size:1.15rem; font-weight:700; display:flex; align-items:center; justify-content:center; letter-spacing:-2px; box-shadow:0 4px 14px rgba(0,0,0,0.3); }
.ba-tag { position:absolute; top:14px; padding:0.35rem 0.8rem; font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; font-weight:700; color:var(--ivory); background:rgba(20,20,20,0.7); pointer-events:none; }
.ba-tag-before { left:14px; } .ba-tag-after { right:14px; }
.ba-note { text-align:center; color:var(--light-grey); font-size:0.82rem; margin-top:1.4rem; }

/* ===== legal pages ===== */
.legal-hero { background:var(--charcoal); padding:6rem 6vw 3.2rem; }
.legal-hero .hero-eyebrow { color:var(--gold); }
.legal-hero h1 { font-family:var(--font-display); font-weight:400; font-size:clamp(2rem,5vw,3.2rem); color:var(--ivory); text-transform:uppercase; letter-spacing:0.01em; margin:0.4rem 0 0.6rem; line-height:1; }
.legal-updated { color:var(--light-grey); font-size:0.8rem; letter-spacing:0.04em; }
.legal-wrap { max-width:820px; margin:0 auto; padding:3.5rem 6vw 5rem; }
.legal-wrap h2 { font-family:var(--font-body); font-weight:700; font-size:1.12rem; color:var(--charcoal); letter-spacing:0.01em; margin:2.3rem 0 0.7rem; }
.legal-wrap p, .legal-wrap li { color:var(--mid-grey); font-size:0.95rem; line-height:1.8; }
.legal-wrap ul { margin:0.4rem 0 1rem 1.2rem; }
.legal-wrap a { color:var(--gold); }


/* ===== desktop readability: larger, comfortable reading sizes (mobile untouched) ===== */
@media (min-width:700px){
  html { font-size: 19px; }
  .section-body { font-size: 1.06rem; line-height: 1.85; max-width: 660px; }
  .hero-subtext { font-size: 1.12rem; line-height: 1.75; }
  .page-prose p { font-size: 1.1rem; line-height: 1.9; max-width: 880px; }
  .why-item-title { font-size: 1.05rem; }
  .why-item-text { font-size: 0.98rem; line-height: 1.7; }
  .benefit-item h3 { font-size: 1.05rem; }
  .benefit-item p { font-size: 1rem; line-height: 1.7; }
  .service-card-title { font-size: 1.25rem; }
  .service-card-body { font-size: 1.02rem; line-height: 1.7; }
  .faq-question { font-size: 1.06rem; }
  .faq-answer p { font-size: 1.02rem; line-height: 1.8; }
  .svc-checklist li { font-size: 1.04rem; line-height: 1.6; }
  .pricing-card-desc { font-size: 1rem; }
  .pricing-feature, .pricing-card li { font-size: 1rem; }
  .pricing-card-size { font-size: 0.86rem; }
  .pricing-card-size strong { font-size: 0.96rem; }
  .review-text { font-size: 1.05rem; line-height: 1.8; }
  .trust-badge { font-size: 0.86rem; }
  .ba-note { font-size: 1rem; }
  .insta-sub { font-size: 1.05rem; }
  .footer-col p, .footer-col li, .footer-col a { font-size: 1rem; }
  .area-item { font-size: 1rem; }
  .quote-form input, .quote-form select, .quote-form textarea { font-size: 1rem; }
  .btn-gold, .btn-outline-light, .btn-outline, .btn-dark { font-size: 0.8rem; }
  .nav-links a { font-size: 0.86rem; }
}
@media (min-width:1400px){
  html { font-size: 20px; }
}
