

  /* ─── RESET & VARIABLES ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold:       #c9a96e;
    --gold-light: #e8d5b0;
    --dark:       #1a1a1a;
    --mid:        #4a4a4a;
    --light:      #f8f6f2;
    --white:      #ffffff;
    --nav-h:      72px;
    --nav-h-mob:  64px;
  }

  html, body { height: 100%; overflow-x: hidden; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--dark);
  }

  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤768px
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Navbar — FLEX layout (balanced content: 2 links left ≈ SKIN AI+hamburger right) */
  nav {
    height: var(--nav-h-mob);
    padding: 0 10px;
    display: flex;
    align-items: center;
  }

  .nav-left, .nav-right, .nav-logo { display: none; }

  .nav-mobile-left {
    flex: 1;
    display: flex; align-items: center; gap: 6px;
    padding-left: 4px; padding-right: 4px;
  }

  .nav-mobile-links {
    font-size: clamp(8px, 2.2vw, 10px); letter-spacing: 0;
    text-transform: uppercase; color: var(--dark);
    white-space: nowrap; line-height: 1.3;
    text-decoration: none; transition: color .2s;
    font-weight: 500;
  }
  .nav-mobile-links:hover { color: var(--gold); }
  .nav-mobile-links .nav-badge { font-size: clamp(6px, 1.5vw, 7px); letter-spacing: 0.5px; padding: 1px 4px; margin-left: 2px; }

  .nav-mobile-logo {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    display: flex; align-items: center;
    z-index: 1;
  }
  .nav-mobile-logo .logo-img { height: clamp(26px, 7.5vw, 32px); }

  .nav-mobile-right {
    flex: 1;
    display: flex; align-items: center; gap: 6px;
    justify-content: flex-end;
    padding-right: 44px; /* space for standalone hamburger (~42px wide) */
  }
  .nav-mobile-logo .nav-logo-text { font-size: 9px; letter-spacing: 5px; }
  .nav-mobile-logo .nav-logo-text span { display: none; }

  .logo-img-mobile {
    height: 38px; width: auto; object-fit: contain;
  }

  /* hamburger uses inline styles — CSS only controls display */

  /* Hero */
  .hero {
    margin-top: var(--nav-h-mob);
    grid-template-columns: 1fr;
    height: auto; min-height: unset;
  }

  .hero-left {
    height: 75vw; min-height: 300px; max-height: 500px;
  }

  .hero-left-img { object-position: 30% center; }
  .hero-brand-overlay { top: 16px; }
  .hero-logo-img { height: 36px; }
  .slide-label { font-size: 48px; }
  .hero-slide { padding: 32px; }
  .day-labels { padding: 0 12px; }
  .day-pill { padding: 5px 8px; font-size: 9px; }
  .slide-dots { bottom: 16px; }

  .hero-right {
    height: 100vw; min-height: 320px; max-height: 560px;
  }

  .hero-right-img { object-position: center 10%; }
  .doctor-badge { bottom: 16px; right: 16px; padding: 8px 14px; }
  .doctor-badge-text span { font-size: 13px; }

  /* Services strip */
  .services-strip ul {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; flex-wrap: nowrap;
  }
  .services-strip ul::-webkit-scrollbar { display: none; }
  .services-strip li { min-width: 130px; padding: 18px 14px; }
  .services-strip li strong { font-size: 11px; }

  /* About */
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 280px; }
  .about-content { padding: 48px 24px; }
  .about-content h2 { font-size: 34px; }
  .about-stats { gap: 24px; }
  .stat-num { font-size: 32px; }

  /* Services cards */
  .services-section { padding: 60px 20px; }
  .section-header h2 { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { padding: 28px 20px; }
  .service-card h3 { font-size: 18px; }

  /* Promo banner */
  .promo-banner {
    padding: 48px 24px;
    flex-direction: column; align-items: flex-start; gap: 28px;
  }
  .promo-banner h2 { font-size: 36px; }

  /* Footer */
  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* WhatsApp */
  .wa-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-label { display: none; }

  /* UC modal */
  #uc-modal { padding: 40px 28px; }
  #uc-modal h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-left  { height: 88vw; }
  .hero-right { height: 105vw; }
  .slide-label { font-size: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
}

  /* ─── UNDER CONSTRUCTION OVERLAY ─── */
  #uc-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,8,5,.78);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    animation: fadeInOverlay .5s ease;
  }

  @keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }

  #uc-modal {
    background: var(--white);
    max-width: 520px; width: 90%;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    animation: slideUp .6s cubic-bezier(.16,1,.3,1) .2s both;
    border-top: 3px solid var(--gold);
    box-shadow: 0 40px 80px rgba(0,0,0,.25);
  }

  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  #uc-modal .uc-icon {
    width: 68px; height: 68px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  #uc-modal .uc-icon svg { width: 32px; height: 32px; fill: white; }

  #uc-modal .uc-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px; letter-spacing: 6px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 10px; font-weight: 500;
  }

  #uc-modal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; font-weight: 400;
    color: var(--dark); margin-bottom: 16px;
    line-height: 1.2;
  }

  #uc-modal .uc-divider {
    width: 48px; height: 1px;
    background: var(--gold); margin: 0 auto 20px;
  }

  #uc-modal p {
    font-size: 14px; font-weight: 300;
    color: var(--mid); line-height: 1.8;
    margin-bottom: 32px;
  }

  .uc-progress-bar {
    height: 2px; background: #ebebeb;
    border-radius: 2px; margin-bottom: 32px; overflow: hidden;
  }

  .uc-progress-fill {
    height: 100%; width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: progress 2.5s ease 1s forwards;
  }

  @keyframes progress { to { width: 72%; } }

  .uc-progress-label {
    display: flex; justify-content: space-between;
    font-size: 11px; color: #aaa;
    margin-top: -26px; margin-bottom: 32px;
    letter-spacing: 1px;
  }

  .uc-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--dark); color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 400;
    letter-spacing: 3px; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background .3s, transform .2s;
  }

  .uc-btn:hover { background: var(--gold); transform: translateY(-1px); }

  .uc-close {
    position: absolute; top: 18px; right: 20px;
    font-size: 20px; color: #bbb; cursor: pointer;
    background: none; border: none; line-height: 1;
    transition: color .2s;
  }

  .uc-close:hover { color: var(--dark); }


  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,.06);
    height: var(--nav-h);
    display: flex; align-items: center;
    padding: 0 40px;
  }

  .nav-left,
  .nav-right {
    display: flex; gap: 36px; flex: 1;
    align-items: center;
  }

  .nav-right { justify-content: flex-end; }

  nav a {
    font-size: 12.5px; font-weight: 400;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--mid); text-decoration: none;
    transition: color .2s;
  }

  nav a:hover { color: var(--dark); }

  .nav-logo {
    flex: 0 0 auto; text-align: center; padding: 0 30px;
  }

  .logo-img {
    height: 42px; width: auto;
    display: block; object-fit: contain;
  }

  .nav-cta {
    font-size: 11px !important;
    padding: 10px 22px;
    background: var(--dark); color: var(--white) !important;
    letter-spacing: 2px !important;
    transition: background .3s !important;
  }

  .nav-cta:hover { background: var(--gold); color: var(--white) !important; }

  /* Mobile-only elements — hidden on desktop */
  .nav-mobile-left,
  .nav-mobile-logo,
  .nav-mobile-right,
  .nav-hamburger,
  .lang-toggle-mob { display: none; }


  /* ─── HERO ─── */
  .hero {
    margin-top: 72px;
    display: grid; grid-template-columns: 1fr 1fr;
    height: calc(100vh - 72px);
    min-height: 580px;
  }

  .hero-left {
    position: relative; overflow: hidden;
    background: #111;
  }

  .hero-left-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    opacity: .75;
  }

  .hero-slide {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
    display: flex; align-items: flex-end;
    padding: 48px;
  }

  .hero-slide-content {
    position: relative; z-index: 2;
    color: white;
  }

  .slide-tag {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.5); margin-bottom: 4px;
  }

  .slide-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px; font-weight: 300;
    line-height: .9; color: white;
    letter-spacing: -1px;
  }

  .slide-sub {
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold-light); margin-top: 8px;
  }

  .day-labels {
    position: absolute; top: 50%; transform: translateY(-50%);
    left: 0; right: 0; z-index: 3;
    display: flex; justify-content: space-between;
    padding: 0 24px; pointer-events: none;
  }

  .day-pill {
    background: rgba(0,0,0,.6); color: white;
    padding: 6px 12px; font-size: 10px;
    letter-spacing: 2px; text-transform: uppercase;
    border-left: 2px solid var(--gold);
  }

  .day-pill small { display: block; font-size: 8.5px; color: rgba(255,255,255,.45); }

  .hero-brand-overlay {
    position: absolute; top: 24px; left: 50%;
    transform: translateX(-50%); z-index: 4;
    text-align: center;
  }

  .hero-logo-img {
    height: 52px; width: auto;
    object-fit: contain; display: block;
    filter: brightness(0) invert(1);
    opacity: .9;
  }

  .slide-dots {
    position: absolute; bottom: 24px; left: 50%;
    transform: translateX(-50%); z-index: 5;
    display: flex; gap: 8px;
  }

  .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer; transition: background .3s, transform .3s;
  }

  .dot.active { background: white; transform: scale(1.3); }


  /* ─── HERO RIGHT ─── */
  .hero-right {
    position: relative; overflow: hidden;
    background: #e8e4de;
  }

  .hero-right-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    filter: grayscale(5%) contrast(1.02);
  }

  .doctor-badge {
    position: absolute; bottom: 28px; right: 28px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
    padding: 10px 18px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
  }

  .doctor-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,.5); }
    50%       { box-shadow: 0 0 0 6px rgba(201,169,110,0); }
  }

  .doctor-badge-text small {
    display: block; font-size: 9px;
    letter-spacing: 2px; color: var(--mid); text-transform: uppercase;
  }

  .doctor-badge-text span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px; color: var(--dark);
  }

  .hero-right .slide-dots { bottom: 28px; left: 50%; transform: translateX(-50%); }
  .hero-right .dot { background: rgba(0,0,0,.2); }
  .hero-right .dot.active { background: var(--dark); }


  /* ─── SERVICES STRIP ─── */
  .services-strip {
    background: var(--dark);
    display: flex; justify-content: center;
    padding: 0; overflow: hidden;
  }

  .services-strip ul {
    display: flex; list-style: none;
    width: 100%;
  }

  .services-strip li {
    flex: 1; text-align: center;
    padding: 22px 16px;
    border-right: 1px solid rgba(255,255,255,.08);
    cursor: pointer; transition: background .3s;
  }

  .services-strip li:last-child { border-right: none; }
  .services-strip li:hover { background: rgba(201,169,110,.12); }

  .services-strip li span {
    display: block; font-size: 9.5px;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.5); font-weight: 300;
  }

  .services-strip li strong {
    display: block; font-size: 12px;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-light); margin-top: 4px; font-weight: 400;
  }


  /* ─── ABOUT ─── */
  .about {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 480px;
  }

  .about-image {
    background: linear-gradient(160deg, #e8e4de 0%, #d4cfc8 100%);
    display: flex; align-items: center; justify-content: center;
  }

  .about-image .img-frame {
    width: 75%; aspect-ratio: 4/5;
    background: #ccc9c2;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }

  .about-image .img-frame::before {
    content: '';
    position: absolute; inset: -12px; left: -24px;
    border: 1px solid var(--gold); opacity: .4;
    pointer-events: none;
  }

  .about-content {
    padding: 80px 72px;
    display: flex; flex-direction: column; justify-content: center;
  }

  .section-eyebrow {
    font-size: 10px; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
  }

  .about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px; font-weight: 400;
    color: var(--dark); line-height: 1.15;
    margin-bottom: 24px;
  }

  .about-content p {
    font-size: 14px; font-weight: 300;
    color: var(--mid); line-height: 1.9;
    margin-bottom: 16px;
  }

  .about-divider { width: 40px; height: 1px; background: var(--gold); margin: 28px 0; }

  .about-stats { display: flex; gap: 40px; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 300;
    color: var(--dark); line-height: 1;
  }

  .stat-label {
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--mid);
    margin-top: 4px;
  }


  /* ─── SERVICES CARDS ─── */
  .services-section { padding: 100px 80px; background: var(--light); }

  .section-header { text-align: center; margin-bottom: 64px; }

  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px; font-weight: 400; color: var(--dark);
    margin: 12px 0;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: #d8d4ce;
  }

  .service-card {
    background: var(--white);
    padding: 40px 32px;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    z-index: 2;
  }

  .service-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }

  .service-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 500;
    color: var(--dark); margin-bottom: 12px;
  }

  .service-card p {
    font-size: 12.5px; font-weight: 300;
    color: var(--mid); line-height: 1.8;
  }

  .service-arrow {
    margin-top: 24px;
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
    display: flex; align-items: center; gap: 8px;
  }


  /* ─── PROMO BANNER ─── */
  .promo-banner {
    background: var(--dark);
    padding: 80px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px;
  }

  .promo-banner .pb-label {
    font-size: 10px; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
  }

  .promo-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300; color: white;
    line-height: 1.1; max-width: 500px; margin-top: 16px;
  }

  .promo-banner .pb-btn {
    flex-shrink: 0;
    padding: 18px 44px;
    background: var(--gold); color: white;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background .3s, transform .2s;
    white-space: nowrap;
  }

  .promo-banner .pb-btn:hover { background: var(--gold-light); transform: translateY(-2px); }


  /* ─── FOOTER ─── */
  footer {
    background: #0f0f0f;
    padding: 64px 80px 32px;
    color: rgba(255,255,255,.4);
  }

  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .footer-brand .fb-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; letter-spacing: 8px;
    color: white; text-transform: uppercase;
  }

  .footer-brand .fb-sub {
    font-size: 9px; letter-spacing: 5px;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 20px;
  }

  .footer-brand p { font-size: 12.5px; font-weight: 300; line-height: 1.8; }

  .footer-col h4 {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: white; margin-bottom: 20px;
  }

  .footer-col a {
    display: block; font-size: 12.5px; font-weight: 300;
    color: rgba(255,255,255,.4); text-decoration: none;
    margin-bottom: 10px; transition: color .2s;
  }

  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    padding-top: 24px;
    display: flex; justify-content: space-between;
    font-size: 11px;
  }


  /* ─── WHATSAPP FLOAT ─── */
  .wa-btn {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    background: #25D366; border-radius: 50%;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    cursor: pointer;
    animation: waPulse 2.5s infinite;
    transition: transform .2s;
  }

  .wa-btn:hover { transform: scale(1.1); }

  @keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50%       { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
  }

  .wa-btn svg { width: 28px; height: 28px; fill: white; }

  .wa-label {
    position: fixed; bottom: 36px; right: 94px; z-index: 200;
    background: white; padding: 6px 14px;
    font-size: 11px; letter-spacing: 1px; color: var(--dark);
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    opacity: 0; transform: translateX(10px);
    transition: all .3s;
    pointer-events: none; white-space: nowrap;
  }

  .wa-btn:hover ~ .wa-label { opacity: 1; transform: translateX(0); }


  /* ═══════════════════════════════════════════
     RESPONSIVE — TABLET / MOBILE (max 768px)
  ═══════════════════════════════════════════ */
  @media (max-width: 768px) {

    /* ── Navbar — FLEX layout ── */
    nav {
      height: var(--nav-h-mob);
      padding: 0 10px;
      display: flex;
      align-items: center;
    }

    /* Hide desktop nav */
    .nav-left,
    .nav-right,
    .nav-logo { display: none; }

    /* Show mobile elements */
    .nav-mobile-left {
      flex: 1;
      display: flex; align-items: center; gap: 6px;
      padding: 0 4px;
    }

    .nav-mobile-links {
      font-size: clamp(8px, 2.2vw, 10px); letter-spacing: 0;
      text-transform: uppercase; color: var(--dark);
      white-space: nowrap; line-height: 1.3;
      text-decoration: none; transition: color .2s;
      font-weight: 500;
    }
    .nav-mobile-links:hover { color: var(--gold); }
    .nav-mobile-links .nav-badge { font-size: clamp(6px, 1.5vw, 7px); letter-spacing: 0.5px; padding: 1px 4px; margin-left: 2px; }

    .nav-mobile-logo {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      display: flex; align-items: center;
      z-index: 1;
    }
    .nav-mobile-logo .logo-img { height: clamp(26px, 7.5vw, 32px); }

    .nav-mobile-right {
      flex: 1;
      display: flex; align-items: center; gap: 6px;
      justify-content: flex-end;
      padding-right: 44px;
    }

    .logo-img-mobile {
      height: 38px; width: auto;
      object-fit: contain; display: block;
    }

    /* hamburger uses inline styles — CSS only controls display */
    .nav-hamburger { display: flex !important; }

    .lang-toggle-mob { display: flex; align-items: center; gap: 4px; }
    .lang-toggle-mob .lang-btn { width: 22px; height: 16px; padding: 0; opacity: .5; border: 1px solid transparent; border-radius: 2px; cursor: pointer; background: none; transition: all .2s; }
    .lang-toggle-mob .lang-btn.active { opacity: 1; border-color: rgba(0,0,0,.15); }

    /* ── Hero ── */
    .hero {
      margin-top: 64px;
      grid-template-columns: 1fr;
      height: auto; min-height: unset;
    }

    .hero-left {
      height: 75vw;
      min-height: 300px; max-height: 500px;
    }

    .hero-left-img { object-position: 30% center; }

    .hero-brand-overlay { top: 16px; }
    .hero-logo-img { height: 36px; }

    .slide-label { font-size: 48px; }
    .hero-slide { padding: 32px; }

    .day-labels { padding: 0 12px; }
    .day-pill { padding: 5px 8px; font-size: 9px; }

    .slide-dots { bottom: 16px; }

    .hero-right {
      height: 100vw;
      min-height: 320px; max-height: 560px;
    }

    .hero-right-img { object-position: center 10%; }

    .doctor-badge { bottom: 16px; right: 16px; padding: 8px 14px; }
    .doctor-badge-text span { font-size: 13px; }

    /* ── Services strip ── */
    .services-strip ul {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      flex-wrap: nowrap;
    }

    .services-strip ul::-webkit-scrollbar { display: none; }
    .services-strip li { min-width: 130px; padding: 18px 14px; }
    .services-strip li strong { font-size: 11px; }

    /* ── About ── */
    .about { grid-template-columns: 1fr; }
    .about-image { min-height: 280px; }
    .about-content { padding: 48px 24px; }
    .about-content h2 { font-size: 34px; }
    .about-stats { gap: 24px; }
    .stat-num { font-size: 32px; }

    /* ── Services cards ── */
    .services-section { padding: 60px 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-card { padding: 28px 20px; }
    .service-card h3 { font-size: 18px; }

    /* ── Promo banner ── */
    .promo-banner {
      padding: 48px 24px;
      flex-direction: column;
      align-items: flex-start; gap: 28px;
    }

    .promo-banner h2 { font-size: 36px; }

    /* ── Footer ── */
    footer { padding: 48px 24px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* ── WhatsApp ── */
    .wa-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .wa-label { display: none; }
  }

  @media (max-width: 480px) {
    .hero-left  { height: 88vw; }
    .hero-right { height: 105vw; }
    .slide-label { font-size: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { flex-wrap: wrap; gap: 20px; }
  }

  
  /* ═══════════════════════════════════════════
     MEGA MENU (Treatments dropdown)
  ═══════════════════════════════════════════ */
  .mega-menu {
    position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility 0s .25s;
  }
  .mega-menu.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0);
    transition: opacity .25s ease, transform .25s ease, visibility 0s 0s;
  }

  .mega-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; padding: 44px 48px;
  }

  .mega-col {
    position: relative;
  }
  .mega-col:not(:last-child)::after {
    content: '';
    position: absolute; top: 0; right: -20px; bottom: 0;
    width: 1px; background: rgba(0,0,0,.05);
  }

  .mega-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 500;
    color: var(--dark); margin-bottom: 20px;
    letter-spacing: 2px;
  }

  .mega-area { margin-bottom: 18px; }

  .mega-area-label {
    font-size: 9px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    display: block; margin-bottom: 8px;
  }

  .mega-links {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 4px 16px;
  }
  .mega-links li {
    flex: 0 0 calc(50% - 16px);
  }
  .mega-links a {
    font-size: 12.5px; font-weight: 300;
    color: var(--mid); text-decoration: none;
    display: block; padding: 4px 0;
    transition: color .2s;
    letter-spacing: .5px;
  }
  .mega-links a:hover { color: var(--gold); }

  .mega-see-all {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    margin-top: 8px; transition: gap .2s;
    font-weight: 400;
  }
  .mega-see-all:hover { gap: 12px; }

  /* ═══════════════════════════════════════════
     NAV BADGE (New - blinking green)
  ═══════════════════════════════════════════ */
  .nav-badge {
    display: inline-block;
    font-size: 8px; letter-spacing: 1.5px;
    font-weight: 600; text-transform: uppercase;
    background: #28c840; color: #fff;
    padding: 2px 7px; border-radius: 3px;
    margin-left: 4px;
    animation: badgeBlink 1.2s ease-in-out infinite;
    vertical-align: middle;
    line-height: 1.4;
  }
  @keyframes badgeBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: .35; }
  }

  /* ═══════════════════════════════════════════
     MOBILE DRAWER
  ═══════════════════════════════════════════ */
  .drawer-overlay {
    position: fixed; inset: 0; z-index: 199;
    background: rgba(0,0,0,.55);
    opacity: 0; visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s;
  }
  .drawer-overlay.open {
    opacity: 1; visibility: visible;
    pointer-events: auto;
  }

  .mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
    width: 85vw; max-width: 360px;
    background: var(--white);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.16,1,.3,1);
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .mobile-drawer.open { transform: translateX(0); }

  .drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--dark); font-weight: 500;
  }
  .drawer-close {
    background: none; border: none;
    font-size: 20px; color: var(--mid); cursor: pointer;
    padding: 4px 8px;
  }

  .drawer-body {
    flex: 1; overflow-y: auto;
    padding: 12px 0;
  }

  .drawer-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 20px;
    font-size: 13px; font-weight: 400;
    color: var(--dark); text-decoration: none;
    letter-spacing: 1px;
    transition: background .2s, color .2s;
    border-bottom: 1px solid rgba(0,0,0,.03);
  }
  .drawer-link:hover { background: rgba(201,169,110,.04); color: var(--gold); }
  .drawer-link.sub-open { color: var(--gold); }
  .drawer-link.sub-open svg { transform: rotate(90deg); stroke: var(--gold); }

  .drawer-cta {
    background: var(--dark); color: var(--white) !important;
    justify-content: center; margin: 12px 20px;
    border-radius: 4px; border-bottom: none;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  }
  .drawer-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

  .drawer-sub {
    display: none;
    background: var(--light);
    padding: 0;
  }
  .drawer-sub.open { display: block; }
  .drawer-sub a {
    display: block;
    padding: 10px 20px 10px 36px;
    font-size: 12px; font-weight: 300;
    color: var(--mid); text-decoration: none;
    letter-spacing: .5px;
    transition: color .2s;
    border-bottom: 1px solid rgba(0,0,0,.02);
  }
  .drawer-sub a:hover { color: var(--gold); }

  @media (max-width: 768px) {
    .mega-menu { display: none; }
  }


  /* ═══════════════════════════════════════════
     LANGUAGE TOGGLE — Premium Flags
  ═══════════════════════════════════════════ */
  .lang-toggle {
    display: flex; gap: 4px; margin-left: 14px;
    background: transparent; border-radius: 0;
    padding: 0; align-items: center;
  }
  .lang-btn {
    width: 34px; height: 26px; border-radius: 4px;
    border: 1px solid transparent; cursor: pointer;
    background: transparent; display: flex; align-items: center; justify-content: center;
    transition: all .25s; padding: 2px; line-height: 1;
    opacity: .35; filter: grayscale(30%);
  }
  .lang-btn:hover { opacity: .7; filter: grayscale(0%); border-color: rgba(0,0,0,.08); }
  .lang-btn.active {
    opacity: 1; filter: grayscale(0%);
    border-color: rgba(0,0,0,.12); background: rgba(0,0,0,.02);
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
  }
  .lang-btn svg { display: block; border-radius: 2px; }
  @media (max-width: 768px) {
    .lang-toggle { margin-left: 0; margin-top: 0; }
    .lang-btn { width: 30px; height: 24px; }
  }

  /* ── Hide ALL Google Translate UI ── */
  .goog-te-banner-frame, .goog-te-balloon-frame, .goog-te-gadget,
  .goog-te-spinner-pos, .goog-logo-link, .goog-te-menu-frame,
  .skiptranslate, #google_translate_element, .goog-te-menu2,
  .goog-te-banner, .goog-te-ftab, .goog-tooltip,
  .goog-tooltip:hover, .goog-text-highlight,
  .goog-te-gadget-icon, .goog-te-gadget-simple,
  .VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important; visibility: hidden !important;
    opacity: 0 !important; height: 0 !important; width: 0 !important;
    overflow: hidden !important; position: absolute !important;
    pointer-events: none !important;
  }
  body { top: 0 !important; position: static !important; }
  iframe[src*="translate"] { display: none !important; }
  .goog-te-combo { display: none !important; }
  .goog-text-highlight { background: transparent !important; box-shadow: none !important; }


  font { display: inline !important; vertical-align: baseline !important; }
  .nav-left, .nav-right { white-space: nowrap; }
  .lang-toggle { flex-shrink: 0; }


  .lang-toggle-drawer { display: flex; margin: 0; padding: 12px 20px; border-bottom: 1px solid rgba(0,0,0,.04); gap: 6px; align-items: center; }
  .lang-toggle-drawer .lang-btn { width: 36px; height: 26px; opacity: 1; filter: none; }


  .floating-lang { display: none; }
  @media (max-width: 768px) {
    .floating-lang { display: block; position: fixed; bottom: 92px; right: 28px; z-index: 200; }
    .floating-lang-btn { width: 42px; height: 42px; border-radius: 50%; background: white; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 4px 16px rgba(0,0,0,.1); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s; padding: 0; }
    .floating-lang-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
    .floating-lang-btn img { border-radius: 2px; }
    .lang-toggle-mob { display: none !important; }
    .lang-toggle-drawer { display: none !important; }
  }

.page-hero {
  margin-top: var(--nav-h);
  position: relative; overflow: hidden;
  height: 380px;
  background: var(--dark);
  display: flex; align-items: center;
}

/* Background texture */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,169,110,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(201,169,110,.05) 0%, transparent 70%);
}

/* Large decorative letter */
.page-hero::after {
  content: 'C';
  position: absolute; right: -20px; bottom: -60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 380px; font-weight: 300; line-height: 1;
  color: rgba(255,255,255,.025);
  pointer-events: none; user-select: none;
}

.page-hero-inner {
  position: relative; z-index: 2;
  padding: 0 80px;
}

.page-hero-eyebrow {
  font-size: 9.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.page-hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300;
  color: var(--white); line-height: 1.0;
}

.page-hero h1 em { font-style: italic; color: var(--gold-light); }

.page-hero-sub {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.45); margin-top: 20px; line-height: 1.7;
  max-width: 480px;
}

/* Breadcrumb */
.breadcrumb {
  position: absolute; bottom: 28px; right: 80px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.breadcrumb a { color: rgba(255,255,255,.3); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }


/* ══════════════════════════════════════════════
   CONTACT STRIP — 3 quick info cards
══════════════════════════════════════════════ */
.contact-strip {
  background: var(--gold);
  display: grid; grid-template-columns: repeat(3, 1fr);
}

.cs-item {
  padding: 32px 40px;
  display: flex; align-items: center; gap: 20px;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: background .3s;
  cursor: pointer;
}
.cs-item:last-child { border-right: none; }
.cs-item:hover { background: rgba(0,0,0,.08); }

.cs-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.cs-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.5; }

.cs-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 5px;
}
.cs-value {
  font-size: 14px; font-weight: 400; color: var(--white); line-height: 1.4;
}


/* ══════════════════════════════════════════════
   MAIN CONTACT SECTION
══════════════════════════════════════════════ */
.contact-main {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

/* ─── Left: Info + Map ─── */
.contact-info {
  background: var(--light);
  padding: 80px 64px;
  display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
}

/* Big decorative number */
.contact-info::before {
  content: '01';
  position: absolute; top: -20px; left: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 220px; font-weight: 300; line-height: 1;
  color: rgba(0,0,0,.035); pointer-events: none; user-select: none;
}

.ci-eyebrow {
  font-size: 9.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.ci-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 400; color: var(--dark);
  line-height: 1.1; margin-bottom: 36px;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }

/* Info rows */
.ci-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }

.ci-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: background .2s;
}
.ci-row:first-child { border-top: 1px solid rgba(0,0,0,.07); }

.ci-row-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(201,169,110,.3);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px; transition: border-color .3s;
}
.ci-row:hover .ci-row-icon { border-color: var(--gold); }
.ci-row-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.ci-row-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 5px;
}
.ci-row-value {
  font-size: 14px; font-weight: 300; color: var(--dark); line-height: 1.6;
}
.ci-row-value a { color: var(--dark); transition: color .2s; }
.ci-row-value a:hover { color: var(--gold); }

/* Hours table */
.ci-hours {
  display: grid; grid-template-columns: auto 1fr;
  gap: 4px 20px; font-size: 12.5px; font-weight: 300; color: var(--mid); line-height: 1.7;
}
.ci-hours .today { color: var(--gold); font-weight: 400; }

/* Map embed */
.ci-map {
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,.07);
  padding-top: 28px;
}

.ci-map h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 16px;
}

.map-frame {
  position: relative; width: 100%; height: 220px;
  background: #ddd; overflow: hidden;
}

.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(30%) contrast(1.05);
}

/* Map placeholder (jika iframe belum siap) */
.map-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #d4d0c8, #c0bcb4);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.map-placeholder svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
.map-placeholder span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); }

.map-btns {
  display: flex; gap: 8px; margin-top: 14px;
}

.map-btn {
  flex: 1; padding: 10px 12px; text-align: center;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  font-family: 'Jost', sans-serif; cursor: pointer;
  transition: all .25s;
}

.map-btn-gmaps {
  background: var(--dark); color: var(--white);
  border: 1px solid var(--dark);
}
.map-btn-gmaps:hover { background: var(--gold); border-color: var(--gold); }

.map-btn-apple {
  background: transparent; color: var(--dark);
  border: 1px solid rgba(0,0,0,.2);
}
.map-btn-apple:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }


/* ─── Right: Contact Form ─── */
.contact-form-wrap {
  background: var(--white);
  padding: 80px 64px;
  display: flex; flex-direction: column;
  position: relative;
}

/* Gold vertical bar */
.contact-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
}

.cf-eyebrow {
  font-size: 9.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.cf-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.contact-form-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 400; color: var(--dark);
  line-height: 1.1; margin-bottom: 10px;
}
.contact-form-wrap h2 em { font-style: italic; color: var(--gold); }

.contact-form-wrap > p {
  font-size: 13px; font-weight: 300; color: var(--mid);
  line-height: 1.8; margin-bottom: 40px; max-width: 400px;
}

/* Form fields */
.cf-form { display: flex; flex-direction: column; gap: 0; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.cf-group { display: flex; flex-direction: column; margin-bottom: 24px; }

.cf-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 10px;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 13.5px; font-weight: 300;
  color: var(--dark);
  background: var(--light);
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(0,0,0,.12);
  outline: none;
  transition: border-color .25s, background .25s;
  -webkit-appearance: none;
}

.cf-input::placeholder,
.cf-textarea::placeholder { color: rgba(0,0,0,.3); }

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  border-bottom-color: var(--gold);
  box-shadow: 0 2px 0 var(--gold);
}

.cf-select {
  cursor: pointer;
  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='%234a4a4a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.cf-select option { background: var(--white); color: var(--dark); }

.cf-textarea { resize: none; height: 130px; line-height: 1.7; }

/* Char counter */
.cf-counter {
  font-size: 10px; color: rgba(0,0,0,.3);
  text-align: right; margin-top: 6px;
}

/* Privacy note */
.cf-privacy {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 28px;
}

.cf-checkbox {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.2); cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background: var(--white); margin-top: 2px;
  transition: border-color .2s, background .2s;
  position: relative;
}

.cf-checkbox:checked {
  background: var(--gold); border-color: var(--gold);
}

.cf-checkbox:checked::after {
  content: '';
  position: absolute; top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: 2px solid white; border-top: none; border-left: none;
  transform: rotate(45deg);
}

.cf-privacy-text {
  font-size: 11.5px; font-weight: 300; color: var(--mid); line-height: 1.7;
}
.cf-privacy-text a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s; }
.cf-privacy-text a:hover { border-bottom-color: var(--gold); }

/* Submit button */
.cf-submit {
  width: 100%; padding: 18px 32px;
  background: var(--dark); color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .3s, transform .2s;
  position: relative; overflow: hidden;
}

.cf-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}

.cf-submit:hover { transform: translateY(-2px); }
.cf-submit:hover::after { transform: translateX(0); }
.cf-submit span { position: relative; z-index: 1; }

/* Success message */
.cf-success {
  display: none;
  text-align: center; padding: 40px 20px;
}

.cf-success-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.cf-success-icon svg { width: 28px; height: 28px; stroke: white; fill: none; stroke-width: 2; }

.cf-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 400; color: var(--dark); margin-bottom: 12px;
}

.cf-success p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.8; }

/* Error state */
.cf-input.error,
.cf-select.error,
.cf-textarea.error { border-bottom-color: #c0392b; box-shadow: 0 2px 0 #c0392b; }

.cf-error-msg { font-size: 10.5px; color: #c0392b; margin-top: 5px; display: none; }
.cf-error-msg.show { display: block; }


/* ══════════════════════════════════════════════
   ADDITIONAL LOCATIONS SECTION
══════════════════════════════════════════════ */
.locations-section {
  background: var(--dark);
  padding: 80px;
}

.loc-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}

.loc-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: var(--white); line-height: 1.1;
}
.loc-header h2 em { font-style: italic; color: var(--gold-light); }

.loc-header p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.4); line-height: 1.8; max-width: 280px; text-align: right;
}

.locations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.06);
}

.loc-card {
  background: var(--dark); padding: 40px 36px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: background .4s;
}

.loc-card:hover { background: #222; }

/* Gold line top */
.loc-card::before {
  content: '';
  position: absolute; top: 0; left: 36px; right: 36px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.loc-card:hover::before { transform: scaleX(1); }

.loc-badge {
  display: inline-block; margin-bottom: 24px;
  padding: 4px 12px; font-size: 8.5px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,169,110,.3);
}
.loc-badge.main { background: rgba(201,169,110,.12); }

.loc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--white);
  margin-bottom: 20px; line-height: 1.2;
}

.loc-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.loc-detail svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.loc-detail span { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.6; }

.loc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  transition: gap .25s;
}
.loc-card:hover .loc-link { gap: 14px; }


/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-section {
  background: var(--light); padding: 100px 80px;
}

.faq-inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}

.faq-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 400; color: var(--dark); line-height: 1.1; margin-bottom: 20px;
}
.faq-left h2 em { font-style: italic; color: var(--gold); }

.faq-left p {
  font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 32px;
}

.faq-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border: 1px solid var(--dark);
  font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dark); font-family: 'Jost', sans-serif;
  transition: all .3s;
}
.faq-cta:hover { background: var(--dark); color: var(--white); }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; gap: 20px;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q:hover .faq-icon { border-color: var(--gold); }
.faq-q:hover .faq-icon svg { stroke: var(--gold); }

.faq-q h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: inherit; line-height: 1.3;
}

.faq-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, transform .3s;
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--mid); fill: none; stroke-width: 2; transition: stroke .25s; }

.faq-item.open .faq-icon { border-color: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: var(--gold); }
.faq-item.open .faq-q { color: var(--dark); }

.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height .4s cubic-bezier(.25,.46,.45,.94), padding .3s;
}
.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  font-size: 13px; font-weight: 300; color: var(--mid);
  line-height: 1.85; padding-bottom: 24px;
}


/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-banner {
  background: var(--gold); padding: 72px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: var(--white); line-height: 1.1; max-width: 520px;
}

.cta-banner h2 strong { font-weight: 500; }

.cta-banner-btns { display: flex; gap: 14px; flex-shrink: 0; }

.cta-btn-wa {
  padding: 16px 32px; background: var(--white); color: var(--dark);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-family: 'Jost', sans-serif; display: flex; align-items: center; gap: 10px;
  transition: all .3s; white-space: nowrap;
}
.cta-btn-wa svg { width: 18px; height: 18px; fill: #25D366; flex-shrink: 0; }
.cta-btn-wa:hover { background: var(--dark); color: var(--white); }

.cta-btn-book {
  padding: 16px 32px; background: transparent;
  border: 1px solid rgba(255,255,255,.5); color: var(--white);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-family: 'Jost', sans-serif; transition: all .3s; white-space: nowrap;
}
.cta-btn-book:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

/* ══════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .page-hero { height: 280px; }
  .page-hero-inner { padding: 0 24px; }
  .page-hero h1 { font-size: 48px; }
  .breadcrumb { right: 24px; bottom: 20px; }
  .page-hero::after { font-size: 220px; }
  .contact-strip { grid-template-columns: 1fr; }
  .cs-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 22px 24px; }
  .cs-item:last-child { border-bottom: none; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-info { padding: 48px 24px; }
  .contact-form-wrap { padding: 48px 24px; }
  .contact-form-wrap::before { display: none; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .locations-section { padding: 60px 20px; }
  .loc-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .loc-header h2 { font-size: 36px; }
  .loc-header p { text-align: left; }
  .locations-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 60px 20px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left h2 { font-size: 36px; }
  .cta-banner { padding: 48px 24px; flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-banner h2 { font-size: 34px; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .cta-btn-wa, .cta-btn-book { justify-content: center; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 38px; }
}
