:root{
    --ink:#6B2D5C;
    --ink-soft:#85397A;
    --paper:#FFF8EC;
    --seafoam:#DFF3EA;
    --coral:#FF6F59;
    --coral-deep:#E85643;
    --sand:#FFC145;
    --cream:#FFF6E9;
    --line: rgba(107,45,92,0.14);
    --line-light: rgba(255,246,233,0.22);
    --radius: 14px;
    --maxw: 1120px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Inter', system-ui, sans-serif;
    color:var(--ink);
    background:var(--paper);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', Georgia, serif;
    font-weight:600;
    line-height:1.06;
    letter-spacing:-0.01em;
    margin:0;
  }
  p{margin:0;}
  a{color:inherit;}
  img{max-width:100%;display:block;}
  .container{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
  section{padding:96px 0;}
  @media (max-width:640px){ section{padding:64px 0;} }

  ::selection{ background: var(--coral); color:var(--cream); }

  /* Focus visibility */
  a:focus-visible, button:focus-visible{
    outline:3px solid var(--coral);
    outline-offset:3px;
    border-radius:4px;
  }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
  }

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(255,248,236,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 28px; max-width:var(--maxw); margin:0 auto;
  }
  .brand{
    font-family:'Fraunces', serif; font-weight:600; font-size:1.25rem;
    display:flex; align-items:center; gap:10px; text-decoration:none;
  }
  .brand-mark{ flex-shrink:0; display:block; }
  .nav-links{ display:flex; align-items:center; gap:30px; }
  .nav-links a{
    text-decoration:none; font-size:0.93rem; font-weight:500; color:var(--ink-soft);
    position:relative;
  }
  .nav-links a::after{
    content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px;
    background:var(--coral); transform:scaleX(0); transform-origin:left;
    transition:transform .25s ease;
  }
  .nav-links a:hover::after{ transform:scaleX(1); }
  .nav-right{ display:flex; align-items:center; gap:14px; }

  .lang-toggle{
    display:flex; border:1.5px solid var(--ink); border-radius:100px; overflow:hidden;
    font-size:0.8rem; font-weight:600;
  }
  .lang-toggle button{
    background:none; border:none; padding:7px 14px; cursor:pointer;
    color:var(--ink); font-family:inherit; font-size:0.8rem; font-weight:600;
    letter-spacing:.02em;
  }
  .lang-toggle button.active{ background:var(--ink); color:var(--cream); }

  .nav-cta{
    background:var(--coral); color:var(--cream); text-decoration:none;
    padding:9px 18px; border-radius:100px; font-size:0.88rem; font-weight:600;
    white-space:nowrap;
    transition:background .2s ease, transform .2s ease;
  }
  .nav-cta:hover{ background:var(--coral-deep); transform:translateY(-1px); }

  .menu-btn{ display:none; background:none; border:1.5px solid var(--ink); border-radius:8px; padding:8px 10px; cursor:pointer; }
  .menu-btn span{ display:block; width:18px; height:2px; background:var(--ink); margin:3px 0; }

  @media (max-width:860px){
    .nav-links{
      position:fixed; inset:64px 0 auto 0; background:var(--paper);
      flex-direction:column; align-items:flex-start; gap:0;
      border-bottom:1px solid var(--line);
      max-height:0; overflow:hidden; transition:max-height .3s ease;
    }
    .nav-links.open{ max-height:320px; }
    .nav-links a{ padding:16px 28px; width:100%; border-top:1px solid var(--line); }
    .menu-btn{ display:block; }
    .nav-cta{ display:none; }
  }

  /* ---------- HERO ---------- */
  .hero{
    background:var(--ink);
    color:var(--cream);
    padding:88px 0 100px;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute; right:-140px; top:-160px;
    width:420px; height:420px; border-radius:50%;
    background:radial-gradient(circle at 30% 30%, rgba(255,111,89,0.35), transparent 70%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;
    position:relative; z-index:1;
  }
  @media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; gap:48px; } }

  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size:0.78rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase;
    color:var(--sand); margin-bottom:22px;
  }
  .eyebrow::before{ content:""; width:22px; height:1.5px; background:var(--sand); display:inline-block; }

  .hero h1{ font-size:clamp(2.3rem, 4.4vw, 3.6rem); color:var(--cream); }
  .hero h1 em{ font-style:italic; color:var(--coral); }
  .hero-sub{
    margin-top:22px; font-size:1.08rem; color:rgba(255,246,233,0.82); max-width:46ch;
  }
  .hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 24px; border-radius:100px; font-weight:600; font-size:0.95rem;
    text-decoration:none; cursor:pointer; border:none; font-family:inherit;
    transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
  }
  .btn-primary{ background:var(--coral); color:var(--cream); }
  .btn-primary:hover{ background:var(--coral-deep); transform:translateY(-2px); box-shadow:0 10px 24px -10px rgba(240,101,61,0.6); }
  .btn-ghost{ background:transparent; color:var(--cream); border:1.5px solid var(--line-light); }
  .btn-ghost:hover{ border-color:var(--cream); }
  .btn-dark{ background:var(--ink); color:var(--cream); }
  .btn-dark:hover{ background:var(--ink-soft); transform:translateY(-2px); }

  /* chat bubble signature */
  .chat-card{
    background:var(--ink-soft);
    border:1px solid rgba(255,246,233,0.14);
    border-radius:20px;
    padding:28px;
    display:flex; flex-direction:column; gap:14px;
  }
  .bubble{
    max-width:82%; padding:13px 17px; border-radius:16px; font-size:0.96rem; line-height:1.45;
    animation:rise .5s ease both;
  }
  .bubble.client{
    background:rgba(255,246,233,0.1); color:var(--cream);
    align-self:flex-start; border-bottom-left-radius:4px;
  }
  .bubble.lais{
    background:var(--coral); color:var(--cream);
    align-self:flex-end; border-bottom-right-radius:4px;
  }
  .bubble .who{ display:block; font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; opacity:.7; margin-bottom:4px; }
  .bubble:nth-child(2){ animation-delay:.15s; }
  .bubble:nth-child(3){ animation-delay:.3s; }
  .bubble:nth-child(4){ animation-delay:.45s; }
  @keyframes rise{ from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }

  /* ---------- TRUST STRIP ---------- */
  .trust{
    background:var(--seafoam);
    border-bottom:1px solid var(--line);
    padding:20px 0;
  }
  .trust-row{
    display:flex; flex-wrap:wrap; gap:14px 40px; align-items:center; justify-content:center;
    font-size:0.86rem; color:var(--ink-soft); font-weight:500;
  }
  .trust-row span{ display:flex; align-items:center; gap:8px; }
  .trust-row .sep{ opacity:.4; }

  /* ---------- ABOUT ---------- */
  .about-grid{
    display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:start;
  }
  @media (max-width:860px){ .about-grid{ grid-template-columns:1fr; gap:36px; } }
  .section-eyebrow{
    font-size:0.78rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
    color:var(--coral); margin-bottom:14px; display:block;
  }
  .about h2{ font-size:clamp(1.8rem,3vw,2.5rem); margin-bottom:20px; }
  .about-body p + p{ margin-top:16px; }
  .about-body{ color:var(--ink-soft); font-size:1.02rem; }

  .portrait-frame{
    aspect-ratio:4/5; border-radius:20px; background:var(--ink);
    display:flex; align-items:center; justify-content:center; overflow:hidden;
    position:relative;
  }
  .about-photo{ width:100%; height:100%; object-fit:cover; display:block; }
  .portrait-frame::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(107,45,92,0.05) 0%, rgba(107,45,92,0.65) 100%);
    pointer-events:none;
  }
  .portrait-frame .badge{
    position:absolute; bottom:16px; left:16px; right:16px; z-index:1;
    background:rgba(255,246,233,0.94); color:var(--ink);
    border-radius:12px; padding:12px 14px; font-size:0.82rem; font-weight:600;
  }

  .lang-pills{ display:flex; gap:10px; margin-top:22px; flex-wrap:wrap; }
  .lang-pill{
    border:1.5px solid var(--line); border-radius:100px; padding:7px 14px;
    font-size:0.82rem; font-weight:600; color:var(--ink-soft);
  }

  /* ---------- SERVICES ---------- */
  .services{ background:var(--ink); color:var(--cream); }
  .services .section-eyebrow{ color:var(--sand); }
  .services h2{ color:var(--cream); font-size:clamp(1.8rem,3vw,2.5rem); max-width:20ch; }
  .services-intro{ color:rgba(255,246,233,0.78); max-width:58ch; margin-top:16px; font-size:1.02rem; }

  .service-grid{
    margin-top:48px;
    display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
    background:rgba(255,246,233,0.14);
    border:1px solid rgba(255,246,233,0.14);
    border-radius:18px; overflow:hidden;
  }
  @media (max-width:900px){ .service-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:640px){ .service-grid{ grid-template-columns:1fr; } }

  .service-card{
    background:var(--ink); padding:30px 26px;
    display:flex; flex-direction:column; gap:14px;
    transition:background .25s ease;
  }
  .service-card:hover{ background:var(--ink-soft); }
  .service-num{ font-size:0.78rem; color:var(--sand); font-weight:700; letter-spacing:.06em; }
  .service-card h3{ font-family:'Fraunces', serif; font-weight:600; font-size:1.18rem; color:var(--cream); }
  .service-card p{ font-size:0.9rem; color:rgba(255,246,233,0.72); flex-grow:1; }
  .service-card-featured{
    position:relative;
    box-shadow:inset 0 0 0 2px var(--coral);
  }
  .service-card-featured::before{
    content:"BEST VALUE";
    position:absolute; top:14px; right:14px;
    background:var(--coral); color:var(--cream);
    font-size:0.62rem; font-weight:700; letter-spacing:.06em;
    padding:4px 9px; border-radius:100px;
  }

  /* ---------- PROCESS ---------- */
  /* ---------- PRICING PHILOSOPHY ---------- */
  .pricing-note{ background:var(--seafoam); padding:64px 0; }
  .pricing-note-inner{
    display:flex; align-items:flex-start; gap:28px;
    max-width:860px; margin:0 auto;
  }
  @media (max-width:600px){ .pricing-note-inner{ flex-direction:column; align-items:flex-start; } }
  .pricing-badge{
    flex-shrink:0; width:56px; height:56px; border-radius:14px;
    background:var(--coral); color:var(--cream);
    display:flex; align-items:center; justify-content:center;
    font-family:'Fraunces', serif; font-weight:600; font-size:1.6rem;
  }
  .pricing-note h2{ font-size:clamp(1.5rem,2.6vw,1.9rem); margin-bottom:12px; }
  .pricing-note p{ color:var(--ink-soft); font-size:1rem; max-width:60ch; }

  .process h2{ font-size:clamp(1.8rem,3vw,2.5rem); max-width:18ch; }
  .process-intro{ color:var(--ink-soft); max-width:56ch; margin-top:16px; font-size:1.02rem; }
  .steps{
    margin-top:52px; display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
  }
  @media (max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:520px){ .steps{ grid-template-columns:1fr; } }
  .step{ position:relative; padding-top:8px; }
  .step-index{
    font-family:'Fraunces', serif; font-size:2.4rem; color:var(--coral); font-weight:600;
    display:block; margin-bottom:10px;
  }
  .step h3{ font-family:'Fraunces', serif; font-size:1.08rem; font-weight:600; margin-bottom:8px; }
  .step p{ font-size:0.9rem; color:var(--ink-soft); }
  .step:not(:last-child)::after{
    content:""; position:absolute; top:24px; right:-16px; width:24px; height:1.5px;
    background:var(--line);
  }
  @media (max-width:900px){ .step::after{ display:none; } }

  /* ---------- CONTACT ---------- */
  .contact{ background:var(--ink); color:var(--cream); text-align:center; }
  .contact h2{ font-size:clamp(2rem,4vw,3rem); max-width:16ch; margin:0 auto; }
  .contact p{ color:rgba(255,246,233,0.78); max-width:52ch; margin:20px auto 0; font-size:1.05rem; }
  .contact-actions{ display:flex; justify-content:center; gap:16px; margin-top:38px; flex-wrap:wrap; }
  .contact-note{ margin-top:28px; font-size:0.85rem; color:rgba(255,246,233,0.55); }

  /* ---------- BOOK A CALL ---------- */
  .book{ background:var(--seafoam); }
  .book h2{ font-size:clamp(1.9rem,3.4vw,2.6rem); max-width:22ch; margin:0 auto; }
  .book-sub{ color:var(--ink-soft); max-width:52ch; margin:16px auto 0; font-size:1.02rem; }
  .calendly-wrap{
    margin:44px auto 0; max-width:820px;
    background:var(--paper); border:1px solid var(--line); border-radius:18px;
    overflow:hidden; padding:6px;
  }
  .book-fallback{ margin-top:22px; }

  /* ---------- CONTACT FORM ---------- */
  .contact-form{
    max-width:560px; margin:44px auto 0; text-align:left;
    display:flex; flex-direction:column; gap:20px;
  }
  .form-row{ display:flex; flex-direction:column; gap:8px; }
  .form-row label{ font-size:0.86rem; font-weight:600; color:var(--sand); }
  .form-row input, .form-row textarea{
    font-family:'Inter', sans-serif; font-size:0.98rem;
    background:rgba(255,246,233,0.08); border:1.5px solid rgba(255,246,233,0.22);
    border-radius:10px; padding:13px 15px; color:var(--cream);
    resize:vertical;
  }
  .form-row input::placeholder, .form-row textarea::placeholder{ color:rgba(255,246,233,0.4); }
  .form-row input:focus, .form-row textarea:focus{
    outline:none; border-color:var(--coral);
    background:rgba(255,246,233,0.12);
  }
  .contact-form .btn{ align-self:flex-start; }
  .form-status{ font-size:0.9rem; font-weight:600; margin-top:-6px; }
  .form-status.success{ color:#8FD19E; }
  .form-status.error{ color:#FF6F59; }

  .contact-alt{
    max-width:560px; margin:28px auto 0;
    display:flex; align-items:center; gap:14px; flex-wrap:wrap;
    font-size:0.85rem; color:rgba(255,246,233,0.6);
  }
  .contact-alt .btn{
    padding:9px 16px; font-size:0.85rem;
    display:inline-flex; align-items:center; gap:7px;
  }

  /* ---------- FOOTER ---------- */
  footer{ padding:36px 0; background:var(--ink); border-top:1px solid rgba(255,246,233,0.12); }
  .footer-row{
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
    color:rgba(255,246,233,0.55); font-size:0.82rem;
  }
  .footer-row a{ color:rgba(255,246,233,0.75); text-decoration:none; }
  .footer-row a:hover{ color:var(--sand); }

  .footer-with-social{ justify-content:center; flex-direction:column; text-align:center; }
  @media (min-width:640px){ .footer-with-social{ flex-direction:row; justify-content:space-between; text-align:left; } }
  .social-links{ display:flex; gap:20px; align-items:center; }
  .social-link{
    display:flex; align-items:center; gap:7px;
    color:rgba(255,246,233,0.75); text-decoration:none;
    font-size:0.85rem; font-weight:600;
    transition:color .2s ease;
  }
  .social-link:hover{ color:var(--coral); }
  .social-link svg{ flex-shrink:0; }
