:root {
    --cream: #F5F7FA;
    --stone: #E1E6EF;
    --charcoal: #0B1636;
    --warm-dark: #142150;
    --gold: #F0800D;
    --gold-light: #FF9F3D;
    --muted: #656E82;
    --white: #FFFFFF;
    --nav-h: 72px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    background: rgba(245,247,250,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,147,90,0.2);
    transition: background 0.3s;
  }
  .nav-logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem; font-weight: 500;
    color: var(--charcoal); text-decoration: none; letter-spacing: 0.02em;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold); color: var(--white);
    padding: 0.6rem 1.6rem; border-radius: 2px;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin: -8px; }
  .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* HERO */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-top: var(--nav-h);
    padding-bottom: 0;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    opacity: 0; transition: opacity 1.5s ease-in-out;
  }
  .hero-bg.active { opacity: 1; }
  .hero-bg-1.active { animation: slowzoom1 9s ease-out forwards; }
  .hero-bg-2.active { animation: slowzoom2 9s ease-out forwards; }
  @keyframes slowzoom1 { from { transform: scale(1.04); } to { transform: scale(1); } }
  @keyframes slowzoom2 { from { transform: scale(1); } to { transform: scale(1.04); } }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,18,0.85) 0%, rgba(10,12,18,0.55) 50%, rgba(10,12,18,0.15) 100%); }
  .hero-content {
    position: relative; z-index: 2;
    padding: 6rem 5% 3rem;
    animation: fadeup 1s ease 0.3s both;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  @keyframes fadeup { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  .hero-label { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; text-shadow: 0 1px 5px rgba(0,0,0,0.45); }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 500; line-height: 1.12;
    color: var(--white); margin-bottom: 1.5rem;
    text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  }
  .hero h1 em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: var(--gold-light); }
  .hero p { font-size: 1rem; color: rgba(255,255,255,0.88); max-width: 480px; line-height: 1.7; margin-bottom: 2.5rem; text-shadow: 0 1px 5px rgba(0,0,0,0.4); }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--white);
    padding: 0.9rem 2.2rem; border-radius: 2px;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
    display: inline-flex; align-items: center; gap: 0.55rem;
    outline: none; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-primary:focus-visible, .btn-ghost:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  .btn-ghost {
    border: 1px solid rgba(255,255,255,0.4); color: var(--white);
    padding: 0.9rem 2.2rem; border-radius: 2px;
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: border-color 0.2s, background 0.2s;
    display: inline-flex; align-items: center; gap: 0.55rem;
    outline: none; cursor: pointer;
  }
  .btn-ghost:hover { border-color: var(--gold); background: rgba(184,147,90,0.1); }
  .btn-ghost-dark {
    border: 1px solid var(--stone); color: var(--charcoal);
    padding: 0.9rem 2.2rem; border-radius: 2px;
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: border-color 0.2s, background 0.2s;
    display: inline-flex; align-items: center; gap: 0.55rem;
    outline: none; cursor: pointer;
  }
  .btn-ghost-dark:hover { border-color: var(--gold); background: var(--cream); }
  .btn-icon { width: 15px; height: 15px; flex-shrink: 0; }
  .hero-stats {
    position: relative; z-index: 2;
    display: flex; gap: 0; align-self: flex-end;
    animation: fadeup 1s ease 0.6s both;
    margin-right: 5%;
    margin-bottom: 3.5rem;
  }
  .stat-box {
    background: none;
    border: none;
    padding: 0 2rem;
    text-align: left;
  }
  .stat-box:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.16); }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.9rem; color: var(--gold-light); line-height: 1; letter-spacing: 0.01em; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.5rem; }

  /* TRUST BAR */
  .trust-bar {
    background: var(--charcoal); padding: 1rem 5%;
    display: flex; align-items: center; justify-content: center; gap: 1.5rem 3rem; flex-wrap: wrap;
  }
  .trust-item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
  .trust-star { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; display: inline-block; vertical-align: -2px; }
  .trust-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

  /* SECTION COMMON */
  section { padding: 7rem 5%; }
  .section-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .section-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 500; line-height: 1.2;
    color: var(--charcoal);
  }
  .section-heading em { font-style: normal; color: var(--gold); }

  /* SERVICES */
  #services { background: var(--white); }
  .services-top { max-width: 900px; margin-bottom: 4rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--stone); }
  .service-card {
    background: var(--white); padding: 2.5rem;
    transition: background 0.3s;
    cursor: default;
  }
  .service-card:hover { background: var(--cream); }
  .service-icon { width: 34px; height: 34px; margin-bottom: 1.2rem; color: var(--gold); }
  .service-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.5rem; font-weight: 500; margin-bottom: 0.8rem; }
  .service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
  .service-link { display: inline-block; margin-top: 1.2rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

  /* WHY */
  #why { background: var(--cream); }
  .why-e-interactive { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: stretch; margin-top: 3rem; }
  .why-e-image-stack { position: relative; min-height: 460px; overflow: hidden; }
  .why-e-image-stack img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .why-e-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; align-content: center; }
  .why-e-row {
    display: flex; flex-direction: column; gap: 0.8rem;
    background: var(--white); border: 1px solid var(--stone);
    padding: 1.6rem 1.5rem; cursor: default;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .why-e-row:hover { transform: scale(1.03); box-shadow: 0 16px 32px rgba(11,22,54,0.14); z-index: 2; }
  .why-e-icon { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .why-e-icon svg { width: 100%; height: 100%; }
  .why-e-row:hover .why-e-icon { transform: scale(1.08); }
  .why-e-row-content h4 { font-size: 0.98rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.4rem; }
  .why-e-row-content p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

  @media (max-width: 900px) {
    .why-e-interactive { grid-template-columns: 1fr; }
    .why-e-image-stack { min-height: 260px; }
  }
  @media (max-width: 500px) {
    .why-e-list { grid-template-columns: 1fr; }
  }

  /* GALLERY */
  #gallery { background: var(--charcoal); padding: 7rem 5%; }
  .gallery-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
  .gallery-top .section-heading { color: var(--white); }
  .gallery-top .section-label { color: var(--gold-light); }
  .gallery-cta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; border-bottom: 1px solid var(--gold-light); padding-bottom: 1px; white-space: nowrap; }

  .scroll-gallery { margin: 0 -5%; }
  .scroll-gallery-track {
    display: flex; gap: 1.5rem; overflow-x: auto; padding: 0 5% 1rem;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .scroll-gallery-track::-webkit-scrollbar { display: none; }
  .scroll-item { flex: 0 0 380px; scroll-snap-align: start; }
  .scroll-item-img { aspect-ratio: 4/3; overflow: hidden; }
  .scroll-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
  .scroll-item:hover .scroll-item-img img { transform: scale(1.04); }
  .scroll-item-cat { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-top: 1rem; margin-bottom: 0.3rem; }
  .scroll-item-title { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.1rem; color: var(--white); }

  @media (max-width: 600px) {
    .scroll-item { flex-basis: 78vw; }
  }

  /* TESTIMONIALS */
  #testimonials { background: var(--cream); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
  .testimonial {
    background: var(--white); border: 1px solid var(--stone); padding: 1.8rem 2.2rem 1.6rem;
    display: flex; flex-direction: column; gap: 0.8rem; position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  }
  .testimonial:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(11,22,54,0.12); }
  .testimonial-quote-icon { width: 22px; height: 22px; color: var(--stone); transition: color 0.3s ease; }
  .testimonial-quote-icon svg { width: 100%; height: 100%; }
  .testimonial:hover .testimonial-quote-icon { color: var(--gold); }
  .stars { display: flex; gap: 2px; color: var(--gold); }
  .stars svg { width: 14px; height: 14px; }
  .testimonial blockquote { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 400; line-height: 1.65; color: var(--charcoal); }
  .testimonial.testimonial-long blockquote { font-size: 0.92rem; line-height: 1.6; }
  .testimonial-author { font-size: 0.78rem; color: var(--muted); margin-top: auto; padding-top: 0.8rem; border-top: 1px solid var(--stone); }
  .testimonial-author strong { display: block; color: var(--charcoal); font-weight: 500; margin-bottom: 0.2rem; }

  /* FAQ */
  #faq { background: var(--white); }
  .faq-list { display: flex; flex-direction: column; max-width: 760px; margin: 4rem auto 0; }
  .faq-item { border-bottom: 1px solid var(--stone); }
  .faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.6rem 0; text-align: left;
    font-family: 'DM Sans', sans-serif; font-size: 1.2rem; font-weight: 500;
    color: var(--charcoal); gap: 1rem;
    transition: color 0.25s ease;
  }
  .faq-question:hover { color: var(--gold); }
  .faq-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease; }
  .faq-answer > p { overflow: hidden; min-height: 0; }
  .faq-item.open .faq-answer { grid-template-rows: 1fr; opacity: 1; }
  .faq-answer p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; padding-bottom: 1.6rem; }

  /* CTA STRIP */
  .cta-strip {
    background: var(--warm-dark); padding: 5rem 5%;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    position: relative;
  }
  .cta-strip h2 { font-family: 'DM Sans', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 500; color: var(--white); line-height: 1.2; }
  .cta-strip h2 em { font-style: normal; color: var(--gold-light); }
  .cta-corner-link {
    position: absolute; bottom: 0.9rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.6rem; align-items: center; justify-content: center;
    font-size: 0.7rem; width: 100%; padding: 0 1rem;
  }
  .cta-corner-link a {
    color: rgba(255,255,255,0.5); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s; white-space: nowrap;
  }
  .cta-corner-link a:hover { color: var(--white); border-color: var(--gold-light); }
  @media (min-width: 901px) { .cta-corner-link { display: none; } }

  /* FOOTER */
  footer { background: var(--charcoal); padding: 2.75rem 5% 1.5rem; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer-brand .nav-logo { font-size: 1.2rem; display: inline-block; margin-bottom: 0.6rem; }
  .footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 280px; }
  .footer-col h4 { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
  .footer-col { margin-top: 4.35rem; }
  .footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 0.45rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.1rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

  /* WHATSAPP BUBBLE */
  .wa-bubble {
    position: fixed; bottom: 24px; right: 24px; z-index: 200;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    cursor: pointer; text-decoration: none;
    animation: wapulse 2.5s ease infinite;
    transition: transform 0.2s;
  }
  .wa-bubble:hover { transform: scale(1.1); }
  @keyframes wapulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
  }
  .wa-bubble svg { width: 30px; height: 30px; fill: white; }
  .wa-tooltip {
    position: fixed; bottom: 4.9rem; right: 24px; z-index: 200;
    background: var(--charcoal); color: var(--white);
    padding: 0.6rem 1rem; border-radius: 4px;
    font-size: 0.78rem; white-space: nowrap;
    pointer-events: none; opacity: 0; transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s;
  }
  .wa-bubble:hover ~ .wa-tooltip,
  .wa-bubble:focus ~ .wa-tooltip { opacity: 1; transform: translateY(0); }

  /* EXIT POPUP */
  .popup-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(10,12,18,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    padding: 1rem;
  }
  .popup-overlay.active { opacity: 1; pointer-events: all; }
  .popup {
    background: var(--white); max-width: 620px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative;
    transform: scale(0.94);
    transition: transform 0.3s;
  }
  .popup-overlay.active .popup { transform: scale(1); }
  .popup-image { background: url('popup-image.jpg') center/cover; min-height: 360px; }
  .popup-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
  .popup-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; cursor: pointer;
    font-size: 1.4rem; color: var(--muted); line-height: 1;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  }
  .popup-close:hover { color: var(--charcoal); }
  .popup-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
  .popup-content h3 { font-family: 'DM Sans', sans-serif; font-size: 1.7rem; font-weight: 500; line-height: 1.3; margin-bottom: 0.8rem; }
  .popup-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
  .popup-form { display: flex; flex-direction: column; gap: 0.6rem; }
  .popup-dismiss { margin-top: 0.8rem; background: none; border: none; cursor: pointer; font-size: 0.75rem; color: var(--muted); text-decoration: underline; }

  /* COOKIE BANNER */
  .cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 600;
    background: var(--charcoal); color: var(--white);
    padding: 1.2rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
    transform: translateY(100%); transition: transform 0.4s ease;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  }
  .cookie-banner.active { transform: translateY(0); }
  .cookie-banner p { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.75); max-width: 640px; }
  .cookie-banner a { color: var(--gold-light); text-decoration: underline; }
  .cookie-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; flex-shrink: 0; }
  .cookie-actions button {
    padding: 0.7rem 1.3rem; font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
    letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
    border-radius: 0; transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .cookie-accept { background: var(--gold); color: var(--white); border: none; }
  .cookie-accept:hover { background: var(--gold-light); }
  .cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); }
  .cookie-decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

  /* PRIVACY POLICY MODAL */
  .privacy-overlay {
    position: fixed; inset: 0; z-index: 700;
    background: rgba(10,12,18,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s; padding: 1.5rem;
  }
  .privacy-overlay.active { opacity: 1; pointer-events: all; }
  .privacy-modal {
    background: var(--white); max-width: 720px; width: 100%; max-height: 85vh;
    overflow-y: auto; position: relative; padding: 3rem;
    transform: scale(0.96); transition: transform 0.3s;
  }
  .privacy-overlay.active .privacy-modal { transform: scale(1); }
  .privacy-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    background: none; border: none; cursor: pointer;
    font-size: 1.4rem; color: var(--muted); line-height: 1;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  }
  .privacy-close:hover { color: var(--charcoal); }
  .privacy-modal h3 { font-family: 'DM Sans', sans-serif; font-size: 1.9rem; font-weight: 500; margin-bottom: 1.2rem; }
  .privacy-modal h4 { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; letter-spacing: 0.04em; margin: 1.6rem 0 0.5rem; color: var(--warm-dark); }
  .privacy-modal p, .privacy-modal li { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
  .privacy-modal ul { padding-left: 1.2rem; margin-top: 0.3rem; }
  .privacy-modal p + h4 { margin-top: 1.6rem; }

  /* MOBILE NAV OPEN STATE */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    padding: 1.2rem 5% 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--stone);
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.mobile-open li { border-bottom: 1px solid var(--stone); }
  .nav-links.mobile-open li:last-child { border-bottom: none; }
  .nav-links.mobile-open a { padding: 1rem 0; display: block; font-size: 0.9rem; }
  .nav-links.mobile-open + .nav-cta { display: block !important; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col { margin-top: 0; }
    .popup { grid-template-columns: 1fr; }
    .popup-image { min-height: 180px; }
    .hero-stats { align-self: stretch; margin-right: 0; justify-content: stretch; }
    .stat-box { flex: 1; }
  }
  @media (max-width: 600px) {
    section { padding: 4rem 5%; }
    .hero { justify-content: center; }
    .hero-content { padding: 5rem 5% 2rem; justify-content: center; }
    .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .hero p { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .page-hero { justify-content: center; padding: calc(var(--nav-h) + 2rem) 5% 3rem; }
    .about-hero { background-position: center right; }
    .hero-actions { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .hero-stats { flex-direction: row; align-self: stretch; margin-right: 0; }
    .stat-box { flex: 1; padding: 0 1rem; text-align: center; }
    .stat-num { font-size: 1.7rem; }
    .stat-label { font-size: 0.6rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
    .footer-grid > div:nth-child(2),
    .footer-grid > div:nth-child(3),
    .footer-grid > div:nth-child(4) { display: none; }
    .cta-strip { text-align: center; justify-content: center; }
    .gallery-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .trust-item { font-size: 0.7rem; }
    .section-heading { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .faq-question { font-size: 1rem; }
    .popup-content { padding: 1.5rem; }
    .popup-content h3 { font-size: 1.4rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
    .footer-bottom .trust-recap { display: none; }
    .wa-bubble { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
    .cta-strip { padding: 3.5rem 5% 3rem; }
    .nav-logo { font-size: 1.1rem; }
    /* Bigger touch targets for FAQ buttons */
    .faq-question { padding: 1.4rem 0; min-height: 56px; }

    /* Cookie banner: stack on mobile */
    .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; padding: 1.2rem 6%; }
    .cookie-actions { justify-content: center; }
    .privacy-modal { padding: 2rem 1.5rem; }

    /* Service cards: slightly smaller padding on mobile */
    .service-card { padding: 1.8rem; }

    /* Trust bar: tighter on mobile, show only the first two items */
    .trust-bar { gap: 0.6rem 1.2rem; padding: 0.8rem 5%; flex-wrap: nowrap; justify-content: center; }
    .trust-item:nth-child(n+3) { display: none; }

    /* CTA strip buttons: full width on tiny screens */
    .cta-strip > div:last-child { width: 100%; }
    .cta-strip .btn-primary,
    .cta-strip .btn-ghost { width: 100%; text-align: center; justify-content: center; }

    /* Popup: single column, no side image on tiny screens */
    .popup-image { display: none; }
    .popup { max-width: calc(100vw - 2rem); }

    /* Gallery section inner padding */
    #gallery { padding: 0 !important; }
    #gallery > div { margin: 0 !important; padding: 4rem 5% !important; }

    /* Footer spacing */
    footer { padding: 2.25rem 5% 1.5rem; }
  }

  /* Extra small screens (320px) */
  @media (max-width: 380px) {
    .hero h1 { font-size: 2rem; }
    .stat-num { font-size: 1.4rem; }
    nav { padding: 0 4%; }
    .nav-logo { font-size: 1rem; }
  }
  /* PAGE HERO (used on About / Residential / Commercial / Contact) */
  .page-hero {
    position: relative;
    padding: calc(var(--nav-h) + 6rem) 5% 5rem;
    background: linear-gradient(to bottom, rgba(10,12,18,0.35), rgba(10,12,18,0.65)), var(--hero-img, url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80')) center/cover no-repeat;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .page-hero .hero-label { color: var(--gold-light); }
  .page-hero h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 500; line-height: 1.2;
    color: var(--white); margin-bottom: 1rem; max-width: 720px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  }
  .page-hero h1 em { font-style: normal; color: var(--gold-light); }
  .page-hero p { font-size: 1rem; color: rgba(255,255,255,0.9); max-width: 560px; line-height: 1.7; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
  .breadcrumb { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; text-shadow: 0 1px 6px rgba(0,0,0,0.4); display: none; }
  .breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
  .breadcrumb a:hover { color: var(--gold-light); }
  @media (max-width: 900px) {
    .breadcrumb { display: block; }
  }

  /* CONTENT BLOCKS for subpages */
  .content-block { max-width: 760px; }
  .content-block p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.2rem; }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .info-card {
    background: var(--white); border: 1px solid var(--stone); padding: 2rem;
  }
  .standard-card {
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .standard-card:hover {
    background: var(--cream);
    border-color: var(--stone);
    transform: translateY(-2px) scale(1.006);
    box-shadow: 0 15px 30px -18px rgba(11,22,54,0.18);
  }
  .info-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.4rem; margin-bottom: 0.8rem; }
  .info-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
  .check-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
  .check-item { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.92rem; color: var(--charcoal); line-height: 1.6; }
  .check-item::before { content: "✓"; color: var(--gold); font-weight: 600; flex-shrink: 0; }

  /* ABOUT PAGE: OUR STORY */
  .story-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: center; margin-top: 2.5rem; }
  .story-pullquote {
    margin-top: 2rem; padding-left: 1.4rem; border-left: 3px solid var(--gold);
    font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
    font-size: 1.3rem; color: var(--charcoal); line-height: 1.5;
  }
  .story-media { position: relative; }
  .story-img { width: 100%; height: 460px; object-fit: cover; display: block; }
  .story-badge {
    position: absolute; bottom: -1.2rem; right: -1.2rem;
    background: var(--gold); color: var(--white);
    padding: 1.4rem 1.7rem; text-align: center;
  }
  .story-badge-num { display: block; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 2rem; line-height: 1; }
  .story-badge-label { display: block; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; opacity: 0.9; }

  /* ABOUT PAGE: DIRECTORS */
  .director-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .director-card {
    background: var(--white); border: 1px solid var(--stone); padding: 2.2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  }
  .director-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(11,22,54,0.1); }
  .director-header { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.3rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--stone); }
  .director-avatar {
    width: 54px; height: 54px; border-radius: 50%; background: var(--charcoal); color: var(--white);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.05rem;
  }
  .director-header h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.15rem; color: var(--charcoal); margin-bottom: 0.2rem; }
  .director-header .director-title { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0; }
  .director-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

  /* ABOUT PAGE: ACCREDITATION STRIP */
  .accredited-strip { background: var(--white); border: 1px solid var(--stone); border-left: 3px solid var(--gold); padding: 2rem 2.2rem; margin-top: 1.5rem; }
  .accredited-strip h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.6rem; }
  .accredited-strip p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

  @media (max-width: 900px) {
    .story-layout { grid-template-columns: 1fr; gap: 2rem; }
    .story-media { order: -1; }
    .story-img { height: 320px; }
    .director-grid { grid-template-columns: 1fr; }
  }

  /* CONTACT PAGE */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .contact-form label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; display: block; }
  .contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; border: 1px solid var(--stone); background: var(--white);
    padding: 0.8rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    outline: none; transition: border-color 0.2s; border-radius: 0;
  }
  .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
  .contact-form textarea { resize: vertical; min-height: 120px; }
  .contact-form button { align-self: flex-start; }
  .contact-detail-list { display: flex; flex-direction: column; margin-top: 1.5rem; border-top: 1px solid var(--stone); }
  .contact-detail-item { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--stone); }
  .contact-detail-item:last-child { border-bottom: none; }
  .cd-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .cd-icon svg { width: 18px; height: 18px; }
  .cd-content h4 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1rem; color: var(--charcoal); margin-bottom: 0.3rem; }
  .cd-content p, .cd-content a { color: var(--muted); font-size: 0.88rem; text-decoration: none; line-height: 1.5; }
  .cd-content a:hover { color: var(--gold); }
  .form-success { display: none; background: #EAF5EE; border: 1px solid #2A7A4B; color: #2A7A4B; padding: 1rem 1.2rem; font-size: 0.88rem; margin-top: 1rem; }
  .form-success.active { display: block; }

  @media (min-width: 901px) {
    .contact-form-panel {
      background: var(--cream);
      border: 1px solid var(--stone);
      border-radius: 6px;
      padding: 2.8rem;
      position: relative;
      box-shadow: 0 25px 60px -20px rgba(11,22,54,0.18);
    }
    .contact-form-panel::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--gold);
      border-radius: 6px 0 0 6px;
    }
    .contact-details { padding-top: 2.8rem; }
  }

  @media (max-width: 900px) {
    .two-col, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  .nav-links a.active { color: var(--gold); }

  /* PATH SPLIT (Residential / Commercial funnel) - photo top, text below */
  .split-a { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--stone); }
  .split-a-card { background: var(--white); display: flex; flex-direction: column; text-decoration: none; padding: 2.4rem 2rem 2.2rem; transition: background 0.2s; }
  .split-a-card:hover { background: var(--cream); }
  .split-a-content .sa-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .split-a-content h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1.5rem; color: var(--charcoal); margin-bottom: 0.6rem; }
  .split-a-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.1rem; }

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

  /* LOGO */
  .nav-logo-img { height: 52px; width: auto; display: block; }
  .footer-logo-img { height: 60px; width: auto; display: block; }
  @media (max-width: 380px) {
    .nav-logo-img { height: 42px; }
  }

  /* SERVICES: STACKED PHOTO CARD GRID */
  .services-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 1.8rem; }
  .services-photo-grid.five-up { display: flex; flex-wrap: wrap; justify-content: center; }
  .services-photo-grid.five-up .photo-card { flex: 0 1 calc((100% - 3.6rem) / 3); }
  .photo-card { display: flex; flex-direction: column; }
  .photo-card .pc-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
  .photo-card .pc-content { padding-top: 1.2rem; }
  .photo-card .service-eyebrow { font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .photo-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.35rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--charcoal); }
  .photo-card .pc-content p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 0.9rem; }

  /* SERVICE CARDS v2 (bordered card with number badge) , Residential/Commercial */
  .service-cards-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem 1.6rem; align-items: stretch; }
  .service-card-v2 { background: var(--white); border: 1px solid var(--stone); border-radius: 4px; overflow: hidden; transition: box-shadow 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; align-self: stretch; }
  .service-card-v2:hover { box-shadow: 0 20px 40px -24px rgba(11,22,54,0.2); transform: translateY(-3px); }
  .sc2-img-wrap { position: relative; }
  .sc2-img-wrap img { width: 100%; height: 190px; object-fit: cover; display: block; }
  .sc2-num-badge {
    position: absolute; bottom: -22px; left: 1.4rem; width: 44px; height: 44px; border-radius: 50%;
    background: var(--charcoal); color: var(--gold-light); display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; box-shadow: 0 10px 20px -8px rgba(11,22,54,0.4);
  }
  .sc2-content { padding: 2rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
  .sc2-content .service-eyebrow { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
  .sc2-content h3 { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.5rem; }
  .sc2-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
  .sc2-underline { width: 28px; height: 2px; background: var(--gold); margin-bottom: 0.9rem; }
  .sc2-content .service-link { margin-top: auto; align-self: flex-start; }
  @media (max-width: 900px) { .service-cards-v2 { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .service-cards-v2 {
      display: flex;
      align-items: stretch;
      grid-template-columns: none;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding-bottom: 0.5rem;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .service-cards-v2::-webkit-scrollbar { display: none; }
    .service-card-v2 { flex: 0 0 87%; scroll-snap-align: center; }
  }

  @media (max-width: 900px) {
    .services-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
    .services-photo-grid.five-up .photo-card { flex: 0 1 calc((100% - 1.5rem) / 2); }
  }
  @media (max-width: 600px) {
    .services-photo-grid {
      display: flex;
      align-items: stretch;
      grid-template-columns: none;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding-bottom: 0.5rem;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .services-photo-grid::-webkit-scrollbar { display: none; }
    .photo-card { flex: 0 0 87%; scroll-snap-align: center; }
    .photo-card .pc-img img { height: 220px; }
  }

  /* SOCIAL ICONS */
  .social-icons { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
  .social-icons a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; background: rgba(255,255,255,0.1); flex-shrink: 0; }
  .social-icons a:hover { background: var(--gold); transform: translateY(-2px); }
  .social-icons svg { width: 17px; height: 17px; fill: var(--white); display: block; }
  .social-icons.light a { background: var(--stone); }
  .social-icons.light svg { fill: var(--charcoal); }
  .social-icons.light a:hover { background: var(--gold); }
  .social-icons.light a:hover svg { fill: var(--white); }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }


