:root {
    --sage: #C9CBA3;
    --cream: #FFE1A8;
    --coral: #E26D5C;
    --mauve: #723D46;
    --dark: #472D30;
    --black: #000000;
    --white: #ffffff;
    --off-white: #FAF8F5;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    background: var(--off-white);
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,248,245,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(114,61,70,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .logo-mark {
    width: 40px; height: 40px;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Tinos', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -1px;
  }

  .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.2;
  }

  .logo-text span {
    display: block;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 10px;
    color: var(--mauve);
  }

  .header-cta {
    background: var(--mauve);
    color: var(--white);
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }

  .header-cta:hover { background: var(--dark); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding-top: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--off-white);
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6% 80px 8%;
    position: relative;
  }

  .hero-left::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--sage), transparent);
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 28px;
  }

  .hero-badge::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--coral);
  }

  .hero h1 {
    font-family: 'Tinos', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 8px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--mauve);
  }

  .hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 420px;
  }

  /* ── FORM ── */
  .form-box {
    background: var(--white);
    border: 1px solid rgba(114,61,70,0.15);
    padding: 36px;
    max-width: 460px;
    scroll-margin-top: 40px;
  }

  .form-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mauve);
    margin-bottom: 10px;
  }

  .form-box p {
    font-size: 28px;
    font-family: 'Tinos', serif;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .form-box p strong { color: var(--coral); }

  /* Email obfuscation spans — display inline, no styling */
  .privacyOverlay span, #privacyOverlay span { display: inline; }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    border: 1px solid #ddd;
    padding: 13px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--black);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }

  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23723D46' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }

  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--mauve);
    background: var(--white);
  }

  .form-group input::placeholder { color: #aaa; }

  .btn-submit {
    width: 100%;
    background: var(--mauve);
    color: var(--white);
    border: none;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 6px;
  }

  .btn-submit:hover { background: var(--dark); transform: translateY(-1px); }

  .form-box .form-privacy {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: #bbb;
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: center;
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: #f0f7f0;
    border: 1px solid #c3e6c3;
    color: #2d6a2d;
    font-size: 14px;
    font-weight: 500;
  }

  /* ── HERO RIGHT (image placeholder) ── */
  .hero-right {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage) 100%);
    min-height: 600px;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .hero-accent {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-accent-num {
    font-family: 'Fredoka One', cursive;
    font-size: 36px;
    font-weight: 400;
    color: var(--mauve);
    line-height: 1;
  }

  .hero-accent-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.4;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--black);
    padding: 40px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: rgba(255,255,255,0.1);
  }

  .trust-bar-inner {
    background: var(--black);
    display: contents;
  }

  .trust-item {
    background: var(--black);
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .trust-item:last-child { border-right: none; }

  .trust-icon {
    width: 36px; height: 36px;
    background: var(--mauve);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
  }

  .trust-title {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
  }

  .trust-desc {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sage);
    line-height: 1.4;
  }

  /* ── SECTION HEADERS ── */
  .section-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--coral);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--coral);
  }

  .section-title {
    font-family: 'Tinos', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 16px;
  }

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

  .section-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.7;
    max-width: 520px;
  }

  /* ── SERVICES ── */
  .services {
    padding: 100px 8%;
    background: var(--off-white);
  }

  .services-header {
    margin-bottom: 56px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--white);
    border: 1px solid rgba(114,61,70,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(71,45,48,0.12);
  }

  .service-img {
    height: 320px;
    background: linear-gradient(135deg, var(--cream), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(71,45,48,0.35);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
  }

  .service-img-1 { background: linear-gradient(135deg, #FFE1A8, #E26D5C22); }
  .service-img-2 { background: linear-gradient(135deg, #C9CBA3, #72304622); }
  .service-img-3 { background: linear-gradient(135deg, #FFE1A8aa, #C9CBA3); }

  .service-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--mauve);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
  }

  .service-body {
    padding: 28px;
  }

  .service-body h3 {
    font-family: 'Tinos', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
  }

  .service-body p {
    font-size: 13px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .service-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mauve);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
  }

  .service-link:hover { gap: 14px; }

  /* ── WHY US ── */
  .why {
    padding: 100px 8%;
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-content .section-label { color: var(--cream); }
  .why-content .section-label::before { background: var(--cream); }
  .why-content .section-title { color: var(--white); }
  .why-content .section-title em { color: var(--cream); }

  .why-list {
    list-style: none;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .why-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .why-list li:last-child { border-bottom: none; padding-bottom: 0; }

  .why-check {
    width: 24px; height: 24px;
    background: var(--coral);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: white;
    margin-top: 2px;
  }

  .why-list li div strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
  }

  .why-list li div span {
    font-size: 12px;
    font-weight: 300;
    color: rgba(201,203,163,0.8);
    line-height: 1.5;
  }

  .why-image {
    height: 520px;
    background: linear-gradient(160deg, var(--mauve), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,203,163,0.3);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
  }

  .why-image::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border: 1px solid rgba(201,203,163,0.15);
    border-radius: 50%;
  }

  .why-image::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    border: 1px solid rgba(226,109,92,0.2);
    border-radius: 50%;
  }

  /* ── MAP ── */
  .locations {
    padding: 100px 8%;
    background: var(--off-white);
  }

  .locations-header {
    margin-bottom: 56px;
  }

  .locations-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
  }

  .location-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .location-item {
    padding: 20px 20px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
  }

  .location-item:hover,
  .location-item.active {
    background: var(--white);
    border-color: rgba(114,61,70,0.1);
    border-left-color: var(--mauve);
  }

  .location-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }

  .location-item p {
    font-size: 12px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.5;
  }

  .location-item .loc-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 6px;
  }

  .map-container {
    height: 440px;
    background: #e8e4df;
    position: relative;
    overflow: hidden;
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    padding: 60px 8% 30px;
    color: rgba(255,255,255,0.6);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
  }

  .footer-brand .logo-mark {
    background: var(--white);
    color: var(--black);
    margin-bottom: 16px;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
    margin-bottom: 24px;
  }

  .social-links {
    display: flex;
    gap: 10px;
  }

  .social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .social-links a:hover {
    background: var(--mauve);
    color: var(--white);
  }

  .footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--cream); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
  }

  .footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover { color: var(--cream); }

  /* ── WHATSAPP BUTTON ── */
  .whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse-wa 2.5s infinite;
  }

  .whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
    animation: none;
  }

  .whatsapp-btn svg { fill: white; }

  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
      position: relative;
      min-height: 100vh;
    }
    .hero-right {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      min-height: 100%;
      z-index: 0;
    }
    .hero-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(250,248,245,0.75) 0%, rgba(250,248,245,0.92) 60%);
      z-index: 1;
    }
    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .hero-left {
      position: relative;
      z-index: 2;
      padding: 100px 6% 60px;
    }
    .hero-accent { display: none; }
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .services-grid { grid-template-columns: 1fr; }
    .why { grid-template-columns: 1fr; }
    .why-image { height: 300px; position: relative; }
    .locations-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  }

  @media (max-width: 600px) {
    .trust-bar { grid-template-columns: 1fr; }
    header { padding: 0 5%; }
    .header-cta { display: none; }
    .form-box { padding: 24px 20px; }
  }

  /* ── ANIMATIONS ── */
  .fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

 /* ── WhatsApp form button ── */
.btn-whatsapp-form {
  display: none; /* hidden by default (desktop) */
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.5px;
}
.btn-whatsapp-form:hover {
  background: #1ebe57;
}

@media (max-width: 768px) {
  .btn-whatsapp-form {
    display: block;
  }
}

