﻿:root {
    --gold: #b8973a;
    --gold-light: #d4b060;
    --gold-pale: #e8d08a;
    --dark: #0e0e0e;
    --dark-2: #161616;
    --dark-3: #1e1e1e;
    --dark-4: #252525;
    --text: #f0ece4;
    --text-muted: #8a8070;
    --white: #ffffff;
  }

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

  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(14,14,14,0.95) 0%, transparent 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(184,151,58,0.1);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 42px;
    height: 42px;
  }

  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .nav-logo-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .nav-logo-text span:last-child {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.65rem 1.4rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
  .nav-cta svg { width: 16px; height: 16px; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 4rem 6rem 4rem;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
  }

  .hero-eyebrow span {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.35s;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.5s;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.65s;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--dark);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-primary svg { width: 18px; height: 18px; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(184,151,58,0.4);
    color: var(--gold-light);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .btn-secondary:hover { border-color: var(--gold); background: rgba(184,151,58,0.05); }

  .hero-right {
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* centra la foto */
}

  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 30%);
    z-index: 1;
  }

  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(14,14,14,0.7) 100%);
    z-index: 1;
  }

  .hero-badge {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(14,14,14,0.9);
    border: 1px solid rgba(184,151,58,0.3);
    padding: 1rem 2rem;
    text-align: center;
    z-index: 2;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeUp 1s ease forwards 1s;
  }

  .hero-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    display: block;
    line-height: 1;
  }

  .hero-badge span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  /* ─── SECTION HEADER ─── */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .section-eyebrow span {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }

  .section-eyebrow::before, .section-eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
  }

  .section-title em { font-style: italic; color: var(--gold-light); }

  .section-desc {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  /* ─── SERVICES ─── */
  .services {
    padding: 7rem 4rem;
    background: var(--dark-2);
    position: relative;
  }

  .services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(184,151,58,0.1);
  }

  .service-card {
    background: var(--dark-2);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
  }

  .service-card:hover { background: var(--dark-3); }
  .service-card:hover::before { width: 100%; }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--gold);
  }

  .service-num {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(184,151,58,0.07);
    line-height: 1;
  }

  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.8rem;
  }

  .service-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
  }

  .service-icon{
    width:72px;
    height:72px;
    color:#b89a63;
    margin:0 auto 1.5rem;
    transition:all .3s ease;
  }

  .service-card:hover .service-icon{
    transform:translateY(-3px) scale(1.08);
    color:#d6b27a;
  }





  /* ─── BEFORE / AFTER ─── */
  .gallery {
    padding: 7rem 4rem;
    background: var(--dark);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .ba-card {
    position: relative;
    cursor: ew-resize;
    overflow: hidden;
    border: 1px solid rgba(184,151,58,0.1);
  }

  .ba-card .ba-label {
    position: absolute;
    top: 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    z-index: 10;
  }

  .ba-label.before {
    left: 1rem;
    background: rgba(14,14,14,0.85);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .ba-label.after {
    right: 1rem;
    background: var(--gold);
    color: var(--dark);
  }

  .ba-slider-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    user-select: none;
  }

  .ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .ba-img.after-img {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s linear;
  }

  .ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gold);
    z-index: 5;
    transform: translateX(-50%);
    transition: left 0.05s linear;
  }

  .ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    transition: left 0.05s linear;
    box-shadow: 0 0 20px rgba(184,151,58,0.5);
  }

  .ba-handle svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
  }

  .ba-caption {
    padding: 1.2rem 1.5rem;
    background: var(--dark-3);
    border-top: 1px solid rgba(184,151,58,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ba-caption-text {
    font-size: 0.88rem;
    color: var(--text);
  }

  .ba-caption-text span {
    color: var(--gold);
  }

  .ba-caption-hint {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
  }

  /* ─── PROCESS ─── */
  .process {
    padding: 7rem 4rem;
    background: var(--dark-2);
    position: relative;
  }

  .process::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.3;
  }

  .step {
    padding: 0 2rem;
    text-align: center;
  }

  .step-num {
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(184,151,58,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    background: var(--dark-2);
    position: relative;
    z-index: 1;
    transition: background 0.3s, border-color 0.3s;
  }

  .step:hover .step-num {
    background: rgba(184,151,58,0.1);
    border-color: var(--gold);
  }

  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.6rem;
  }

  .step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ─── CTA STRIP ─── */
  .cta-strip {
    padding: 6rem 4rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 800px 400px at 50% 50%, rgba(184,151,58,0.07) 0%, transparent 70%);
  }

  .cta-strip-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .cta-strip h2 em { font-style: italic; color: var(--gold-light); }

  .cta-strip p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
  }

  .wsp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: #fff;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    box-shadow: 0 0 40px rgba(37,211,102,0.25);
  }

  .wsp-btn:hover {
    background: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 50px rgba(37,211,102,0.4);
  }

  .wsp-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

  /* ─── TESTIMONIALS ─── */
  .testimonials {
    padding: 7rem 4rem;
    background: var(--dark-3);
    position: relative;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .testi-card {
    background: var(--dark-2);
    padding: 2.5rem;
    border: 1px solid rgba(184,151,58,0.08);
    position: relative;
    transition: border-color 0.3s;
  }

  .testi-card:hover { border-color: rgba(184,151,58,0.3); }

  .testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(184,151,58,0.2);
    line-height: 0.5;
    margin-bottom: 1rem;
  }

  .testi-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--dark-4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
    flex-shrink: 0;
  }

  .testi-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
  }

  .testi-loc {
    font-size: 0.75rem;
    color: var(--text-muted);
  }

  .testi-stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 3rem 4rem;
    background: var(--dark);
    border-top: 1px solid rgba(184,151,58,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
  }

  .footer-logo-icon { width: 36px; height: 36px; }

  .footer-brand span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
  }

  .footer-brand span:last-child {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
  }

  .footer-right a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }
  .footer-right a:hover { color: var(--gold-light); }

  .footer-copy {
    font-size: 0.72rem;
    color: var(--text-muted);
  }

  /* ─── FLOATING WSP ─── */
  .float-wsp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2.5s ease-in-out infinite;
  }

  .float-wsp:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37,211,102,0.7);
    animation: none;
  }

  .float-wsp svg { width: 28px; height: 28px; color: #fff; }

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

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.9); }
  }

  /* ─── REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── RESPONSIVE ─── */

  /* Tablet landscape / small laptop */
  @media (max-width: 1100px) {
    nav { padding: 1.2rem 2.5rem; }

    .hero-left { padding: 9rem 2.5rem 5rem; }
    .services { padding: 6rem 2.5rem; }
    .gallery { padding: 6rem 2.5rem; }
    .process { padding: 6rem 2.5rem; }
    .cta-strip { padding: 5rem 2.5rem; }
    .testimonials { padding: 6rem 2.5rem; }
    footer { padding: 2.5rem 2.5rem; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

    .process-steps::before { display: none; }
  }

  /* Tablet portrait */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }

    .nav-logo-text span:first-child { font-size: 1rem; }

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

    .hero-right {
      height: 45vw;
      min-height: 260px;
      max-height: 420px;
      order: -1;
    }

    .hero-right::before {
      background: linear-gradient(180deg, rgba(14,14,14,0.3) 0%, transparent 35%, var(--dark) 100%);
    }

    .hero-left { padding: 6.5rem 1.5rem 3.5rem; }
    .hero-sub { max-width: 100%; }

    .hero-badge {
      bottom: 1.5rem;
    
      left: 1.5rem;
      right: 1.5rem;
    
      width: auto;
      max-width: none;
    
      transform: none;
    
      padding: 0.75rem 1.25rem;
    }

    .hero-badge strong { font-size: 1.6rem; }

    .section-header { margin-bottom: 3rem; }

    .services { padding: 4.5rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1px; }
    .service-card { padding: 2.25rem 1.75rem; }

    .gallery { padding: 4.5rem 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; gap: 2rem; }

    .process { padding: 4.5rem 1.5rem; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .step { padding: 0 1rem; }

    .cta-strip { padding: 4.5rem 1.5rem; }
    .cta-strip p { margin-bottom: 2rem; }

    .testimonials { padding: 4.5rem 1.5rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testi-card { padding: 2rem 1.5rem; }

    footer {
      padding: 2rem 1.5rem;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-right { align-items: flex-start; }

    .float-wsp {
      bottom: 1.25rem;
      right: 1.25rem;
      width: 52px;
      height: 52px;
    }

    .float-wsp svg { width: 26px; height: 26px; }
  }

  /* Mobile */
  @media (max-width: 600px) {
    nav {
      padding: 0.85rem 1rem;
      gap: 0.75rem;
    }

    .nav-logo { gap: 0.6rem; min-width: 0; }
    .nav-logo-icon { width: 36px; height: 36px; flex-shrink: 0; }

    .nav-logo-text span:last-child { display: none; }

    .nav-logo-text span:first-child {
      font-size: 0.82rem;
      letter-spacing: 0.03em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 52vw;
    }

    .nav-cta {
      padding: 0.6rem 1rem;
      font-size: 0.72rem;
      flex-shrink: 0;
    }

    .hero-right {
      height: 52vw;
      min-height: 220px;
      max-height: 320px;
    }

    .hero-left { padding: 5.5rem 1rem 3rem; }

    .hero-eyebrow { margin-bottom: 1.25rem; }
    .hero-eyebrow span { letter-spacing: 0.2em; font-size: 0.65rem; }

    .hero-title {
      font-size: clamp(2.2rem, 9vw, 3rem);
      margin-bottom: 1rem;
    }

    .hero-sub {
      font-size: 0.92rem;
      margin-bottom: 2rem;
    }

    .hero-actions {
      flex-direction: column;
      width: 100%;
    }

    .btn-primary,
    .btn-secondary {
      width: 100%;
      justify-content: center;
      padding: 0.9rem 1.25rem;
      font-size: 0.8rem;
    }

    .section-eyebrow span { letter-spacing: 0.2em; }
    .section-desc { font-size: 0.9rem; padding: 0 0.25rem; }

    .services,
    .gallery,
    .process,
    .cta-strip,
    .testimonials { padding: 3.5rem 1rem; }

    .service-num {
      font-size: 2.5rem;
      top: 1.25rem;
      right: 1.25rem;
    }

    .service-name { font-size: 1.3rem; }

    .ba-caption {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.4rem;
      padding: 1rem 1.25rem;
    }

    .ba-caption-text { font-size: 0.82rem; }
    .ba-handle { width: 40px; height: 40px; }

    .process-steps {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .step-num {
      width: 3.5rem;
      height: 3.5rem;
      font-size: 1.2rem;
    }

    .wsp-btn {
      width: 100%;
      justify-content: center;
      padding: 1rem 1.25rem;
      font-size: 0.82rem;
      letter-spacing: 0.04em;
    }

    .testi-quote { font-size: 3rem; }

    footer { padding: 1.75rem 1rem; }

    .footer-logo-icon { width: 32px; height: 32px; }

    .footer-brand span:first-child { font-size: 0.9rem; }
    .footer-brand span:last-child { font-size: 0.55rem; }

    .float-wsp {
      bottom: max(1rem, env(safe-area-inset-bottom));
      right: max(1rem, env(safe-area-inset-right));
    }
  }

  /* Small phones */
  @media (max-width: 380px) {
    .nav-cta {
      padding: 0.55rem 0.7rem;
      font-size: 0;
      gap: 0;
    }

    .nav-cta svg {
      width: 20px;
      height: 20px;
    }

    .hero-title { font-size: 2rem; }

    .hero-badge span { font-size: 0.6rem; letter-spacing: 0.12em; }

    .section-title { font-size: clamp(1.8rem, 8vw, 2.2rem); }

    .cta-strip h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  }

  /* Large screens — comfortable max spacing */
  @media (min-width: 1400px) {
    .services-grid,
    .gallery-grid,
    .process-steps,
    .testimonials-grid { max-width: 1200px; }
  }

  /* Touch devices — larger tap targets */
  @media (hover: none) and (pointer: coarse) {
    .nav-cta,
    .btn-primary,
    .btn-secondary,
    .wsp-btn {
      min-height: 44px;
    }

    .ba-handle {
      width: 48px;
      height: 48px;
    }

    .float-wsp {
      width: 56px;
      height: 56px;
    }
  }

  /* Reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .hero-eyebrow,
    .hero-title,
    .hero-sub,
    .hero-actions,
    .hero-right img,
    .hero-badge,
    .reveal {
      animation: none;
      opacity: 1;
      transform: none;
      transition: none;
    }
  }


  .contact-alt{
    margin-top:2rem;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:1rem;
  }
  
  .contact-alt-label{
    font-size:.75rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--text-muted);
  }
  
  .email-card{
    display:flex;
    align-items:center;
    gap:1rem;
    padding:1rem 1.5rem;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(184,151,58,.2);
    backdrop-filter:blur(10px);
    text-decoration:none;
    transition:all .3s ease;
    min-width:320px;
  }
  
  .email-card:hover{
    border-color:var(--gold);
    background:rgba(184,151,58,.08);
    transform:translateY(-2px);
  }
  
  .email-card svg{
    width:24px;
    height:24px;
    color:var(--gold);
    flex-shrink:0;
  }
  
  .email-info{
    display:flex;
    flex-direction:column;
    text-align:left;
  }
  
  .email-info strong{
    color:var(--white);
    font-size:.9rem;
    font-weight:600;
  }
  
  .email-info span{
    color:var(--gold-light);
    font-size:.85rem;
  }