:root {
      --navy:#07182D;
      --navy2:#102743;
      --gold:#9C907F;
      --gold2:#C8B69E;
      --cream:#F7F4EF;
      --white:#FFFFFF;
      --text:#172033;
      --muted:#647084;
      --line:#E5E7EB;
      --green:#25D366;
    }

    * { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body {
      font-family: Arial, Helvetica, sans-serif;
      color:var(--text);
      background:white;
      line-height:1.6;
    }
    a { text-decoration:none; color:inherit; }
    img { max-width:100%; display:block; }

    header {
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(255,255,255,.97);
      backdrop-filter:blur(12px);
      box-shadow:0 10px 30px rgba(7,24,45,.08);
    }

    nav {
      padding:8px 7%;
      min-height:86px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:26px;
      position:relative;
    }

    .logo img {
      height:72px;
      width:auto;
      max-width:430px;
      object-fit:contain;
    }

    .menu {
      display:flex;
      align-items:center;
      gap:24px;
      font-size:14px;
      font-weight:800;
      color:var(--navy);
      text-transform:uppercase;
      letter-spacing:.2px;
    }

    .menu a:hover { color:var(--gold); }

    .nav-call {
      background:var(--navy);
      color:white!important;
      padding:13px 18px;
      border-radius:5px;
      display:inline-flex;
      gap:8px;
      align-items:center;
    }

    .hamburger {
      display:none;
      background:var(--navy);
      color:white;
      border:0;
      padding:10px 13px;
      font-size:24px;
      border-radius:4px;
      cursor:pointer;
    }

    .hero {
      min-height:760px;
      display:flex;
      align-items:center;
      color:white;
      padding:96px 7%;
      background:
        linear-gradient(90deg,rgba(7,24,45,.92),rgba(7,24,45,.62),rgba(7,24,45,.12)),
        url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2100&q=90');
      background-size:cover;
      background-position:center;
    }

    .hero-content { max-width:840px; }
    .tag {
      display:block;
      color:var(--gold2);
      text-transform:uppercase;
      letter-spacing:2px;
      font-size:13px;
      font-weight:900;
      margin-bottom:18px;
    }

    h1 {
      font-size:clamp(42px,6vw,78px);
      line-height:1.04;
      margin-bottom:24px;
      letter-spacing:-1px;
    }

    .hero p {
      max-width:720px;
      color:#E7ECF2;
      font-size:21px;
      margin-bottom:24px;
    }

    .hero-strong {
      color:#F5EFE6!important;
      font-weight:900;
      margin-bottom:34px!important;
    }

    .buttons {
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }

    .btn {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:0;
      cursor:pointer;
      padding:15px 24px;
      border-radius:5px;
      font-size:13px;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.6px;
    }

    .btn-primary { background:var(--gold); color:white; }
    .btn-dark { background:var(--navy); color:white; }
    .btn-outline { border:1px solid rgba(255,255,255,.76); color:white; }

    .hero-points {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      margin-top:34px;
      max-width:760px;
    }

    .hero-point {
      display:flex;
      align-items:flex-start;
      gap:12px;
      color:#ECF2F8;
      font-weight:800;
      font-size:14px;
    }

    .hero-point span {
      color:var(--gold2);
      font-size:24px;
      line-height:1;
    }

    .trust {
      background:var(--navy);
      color:white;
      padding:28px 7%;
    }

    .trust-grid {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:22px;
      align-items:center;
    }

    .trust-item {
      display:flex;
      align-items:center;
      gap:18px;
      border-right:1px solid rgba(255,255,255,.16);
      padding-right:20px;
    }

    .trust-item:last-child { border-right:0; }
    .trust-icon {
      color:var(--gold2);
      font-size:38px;
      line-height:1;
    }
    .trust-item strong {
      display:block;
      font-size:28px;
      line-height:1.1;
    }
    .trust-item span {
      color:#C9D4DF;
      font-size:15px;
    }

    section { padding:92px 7%; }
    .light { background:var(--cream); }
    .dark { background:var(--navy); color:white; }
    .dark h2 { color:white; }
    .dark p { color:#D3DCE7; }

    .section-head {
      max-width:850px;
      margin:0 auto 54px;
      text-align:center;
    }

    h2 {
      font-size:clamp(32px,4vw,52px);
      line-height:1.14;
      color:var(--navy);
      margin-bottom:16px;
      letter-spacing:-.5px;
    }

    .section-head p, .text p {
      color:var(--muted);
      font-size:18px;
    }

    .split {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
    }

    .about-img {
      min-height:540px;
      background:
        linear-gradient(rgba(7,24,45,.04),rgba(7,24,45,.04)),
        url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1400&q=90');
      background-size:cover;
      background-position:center;
      box-shadow:0 20px 55px rgba(7,24,45,.11);
    }

    .text .section-head-mini {
      color:var(--gold);
      text-transform:uppercase;
      font-weight:900;
      letter-spacing:2px;
      font-size:13px;
      margin-bottom:14px;
      display:block;
    }

    .steps {
      display:grid;
      gap:18px;
      margin-top:30px;
    }

    .step {
      display:flex;
      gap:16px;
      align-items:flex-start;
      background:white;
      border:1px solid var(--line);
      padding:20px;
    }

    .number {
      min-width:42px;
      height:42px;
      border-radius:50%;
      background:var(--gold);
      color:white;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
    }

    .stats {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
    }

    .stat {
      background:white;
      border:1px solid var(--line);
      padding:32px 24px;
      text-align:center;
      box-shadow:0 14px 34px rgba(7,24,45,.06);
    }

    .stat strong {
      display:block;
      color:var(--navy);
      font-size:38px;
      margin-bottom:8px;
      line-height:1;
    }

    .stat span { color:var(--muted); font-size:15px; }

    .service-grid {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:22px;
    }

    .service {
      background:white;
      border:1px solid var(--line);
      padding:30px;
      min-height:255px;
      box-shadow:0 14px 34px rgba(7,24,45,.07);
      transition:.2s ease;
    }

    .service:hover {
      transform:translateY(-5px);
      box-shadow:0 22px 45px rgba(7,24,45,.13);
    }

    .icon {
      width:58px;
      height:58px;
      border-radius:50%;
      background:var(--cream);
      color:var(--navy);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:30px;
      margin-bottom:20px;
    }

    .service h3 {
      color:var(--navy);
      font-size:21px;
      margin-bottom:10px;
    }

    .service p { color:var(--muted); font-size:15.5px; }

    .audience {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:26px;
    }

    .audience-card {
      padding:38px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.14);
      min-height:270px;
    }

    .audience-card h3 {
      font-size:28px;
      margin-bottom:12px;
    }

    .before-after {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
    }

    .ba-card {
      min-height:360px;
      background-size:cover;
      background-position:center;
      position:relative;
      color:white;
      display:flex;
      align-items:flex-end;
      padding:30px;
      overflow:hidden;
    }

    .ba-card::before {
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.74));
    }

    .ba-card div { position:relative; }
    .ba-card span {
      display:inline-block;
      background:var(--gold);
      padding:7px 12px;
      font-weight:900;
      text-transform:uppercase;
      font-size:12px;
      letter-spacing:1px;
      margin-bottom:10px;
    }
    .ba-card h3 { font-size:26px; }
    .ba-before { background-image:url('../images/antes-reforma.png'); }
    .ba-after { background-image:url('../images/despues-reforma.png'); }

    .gallery {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }

    .gallery-card {
      height:285px;
      background-size:cover;
      background-position:center;
      position:relative;
      color:white;
      display:flex;
      align-items:flex-end;
      padding:24px;
      overflow:hidden;
    }

    .gallery-card::before {
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.78));
    }

    .gallery-card div { position:relative; }
    .gallery-card span {
      color:var(--gold2);
      text-transform:uppercase;
      font-weight:900;
      font-size:12px;
      letter-spacing:1px;
    }

    .gallery-card h3 { font-size:21px; margin-top:6px; }
    .g1 { background-image:url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=900&q=85'); }
    .g2 { background-image:url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=900&q=85'); }
    .g3 { background-image:url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=85'); }
    .g4 { background-image:url('https://images.unsplash.com/photo-1604014237800-1c9102c219da?auto=format&fit=crop&w=900&q=85'); }

    .process {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
    }

    .process-card {
      background:white;
      border:1px solid var(--line);
      padding:28px;
      position:relative;
    }

    .process-card b {
      display:block;
      color:var(--gold);
      font-size:34px;
      margin-bottom:10px;
    }

    .process-card h3 { color:var(--navy); margin-bottom:8px; }
    .process-card p { color:var(--muted); font-size:15px; }

    .mallorca-map {
      background:white;
      border:1px solid var(--line);
      padding:38px;
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:34px;
      align-items:center;
      box-shadow:0 14px 34px rgba(7,24,45,.07);
    }

    .map-shape {
      min-height:300px;
      background:
        radial-gradient(circle at 40% 35%, rgba(156,144,127,.35), transparent 22%),
        radial-gradient(circle at 58% 56%, rgba(156,144,127,.30), transparent 18%),
        radial-gradient(circle at 52% 44%, rgba(156,144,127,.22), transparent 30%),
        #F6F3EE;
      border-radius:55% 45% 48% 52%;
      border:2px solid rgba(156,144,127,.45);
      position:relative;
    }

    .map-dot {
      position:absolute;
      width:12px;
      height:12px;
      background:var(--gold);
      border-radius:50%;
      box-shadow:0 0 0 8px rgba(156,144,127,.17);
    }
    .d1 { left:44%; top:40%; } .d2 { left:58%; top:55%; } .d3 { left:36%; top:62%; }

    .form-wrap {
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:34px;
      align-items:start;
    }

    form {
      background:white;
      border:1px solid var(--line);
      padding:36px;
      box-shadow:0 14px 34px rgba(7,24,45,.07);
    }

    label {
      display:block;
      color:var(--navy);
      font-weight:800;
      margin-bottom:7px;
    }

    input, textarea, select {
      width:100%;
      border:1px solid #D1D5DB;
      padding:13px;
      margin-bottom:16px;
      font-size:16px;
      background:white;
    }

    textarea { min-height:140px; resize:vertical; }

    .check {
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
      margin-bottom:18px;
    }

    .check input { width:auto; margin-top:4px; }

    .contact-card {
      background:var(--navy);
      color:white;
      padding:36px;
      box-shadow:0 14px 34px rgba(7,24,45,.14);
    }

    .contact-card h3 { font-size:28px; margin-bottom:14px; }
    .contact-card p { color:#D1D5DB; margin-bottom:10px; }
    .contact-card strong { color:white; }
    .legal-note { font-size:13px; color:var(--muted); margin-top:14px; }

    .legal {
      background:#FAFAFA;
      border-top:1px solid var(--line);
      padding-top:34px;
      padding-bottom:34px;
    }

    .legal .section-head {
      text-align:left;
      max-width:760px;
      margin:0 0 18px;
    }

    .legal .section-head h2 {
      font-size:22px;
      margin-bottom:6px;
    }

    .legal .section-head p { font-size:13px; }

    .legal-accordion {
      max-width:760px;
      display:grid;
      gap:8px;
    }

    details {
      background:white;
      border:1px solid var(--line);
    }

    summary {
      cursor:pointer;
      padding:12px 16px;
      font-weight:900;
      color:var(--navy);
      font-size:15px;
      list-style:none;
      display:flex;
      justify-content:space-between;
      align-items:center;
    }

    summary::after {
      content:"+";
      font-size:18px;
      color:var(--gold);
    }

    details[open] summary::after { content:"−"; }

    .legal-content {
      padding:0 16px 16px;
      color:var(--muted);
      font-size:12px;
    }

    .legal-content ul {
      padding-left:18px;
      margin-top:8px;
    }

    footer {
      background:#061426;
      color:#C7CDD6;
      padding:55px 7% 25px;
    }

    .footer-grid {
      display:grid;
      grid-template-columns:1.1fr 1fr 1fr 1fr;
      gap:34px;
      margin-bottom:36px;
    }

    footer h3 {
      color:white;
      margin-bottom:14px;
      font-size:17px;
      text-transform:uppercase;
    }

    footer ul { list-style:none; display:grid; gap:8px; }
    footer p, footer li { color:#AEB6C2; font-size:14px; }

    .footer-logo {
      max-width:230px;
      margin-bottom:16px;
      filter:brightness(1.08);
    }

    .copyright {
      border-top:1px solid rgba(255,255,255,.1);
      padding-top:22px;
      font-size:13px;
      color:#9CA3AF;
      text-align:center;
    }

    .phone-float, .whatsapp {
      position:fixed;
      right:22px;
      width:58px;
      height:58px;
      border-radius:50%;
      color:white;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:26px;
      z-index:90;
      box-shadow:0 12px 30px rgba(0,0,0,.25);
    }

    .phone-float { bottom:94px; background:var(--navy); }
    .whatsapp { bottom:22px; background:var(--green); }

    .cookie-banner {
      display:none;
      position:fixed;
      left:20px;
      right:20px;
      bottom:20px;
      max-width:980px;
      margin:auto;
      background:white;
      border:1px solid var(--line);
      box-shadow:0 15px 45px rgba(0,0,0,.18);
      padding:20px;
      z-index:120;
    }

    .cookie-banner p { color:var(--muted); font-size:14px; margin-bottom:14px; }
    .cookie-actions { display:flex; gap:10px; flex-wrap:wrap; }

    .reveal {
      opacity:0;
      transform:translateY(24px);
      transition:opacity .7s ease, transform .7s ease;
    }

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

    @media(max-width:1180px) {
      .service-grid { grid-template-columns:repeat(2,1fr); }
      .trust-grid,.audience,.gallery,.process,.split,.form-wrap,.footer-grid,.before-after,.mallorca-map,.stats { grid-template-columns:1fr; }
      .hamburger { display:block; }
      .menu {
        display:none;
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:white;
        padding:20px 7%;
        box-shadow:0 14px 30px rgba(0,0,0,.1);
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
      }
      .menu.active { display:flex; }
      .logo img {
        height:64px;
        max-width:360px;
      }
      .trust-item {
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.12);
        padding-bottom:20px;
      }
      .trust-item:last-child { border-bottom:0; }
    }

    @media(max-width:700px) {
      nav,section,.hero,footer,.trust { padding-left:5%; padding-right:5%; }
      nav { min-height:72px; }
      .logo img {
        height:52px;
        max-width:265px;
      }
      .hero {
        min-height:680px;
        padding-top:70px;
        padding-bottom:70px;
      }
      .hero p { font-size:18px; }
      .hero-points { grid-template-columns:1fr; }
      .service-grid { grid-template-columns:1fr; }
      form { padding:24px; }
      .phone-float,.whatsapp {
        width:52px;
        height:52px;
        font-size:23px;
      }
      .phone-float { bottom:84px; }
    }
  
    .map-clean {
      background:white;
      border:1px solid var(--line);
      padding:20px;
    }
    .mallorca-svg {
      width:100%;
      height:auto;
      display:block;
    }