:root{
    --charcoal:#fbf1ec;
    --charcoal-2:#f5e4d9;
    --charcoal-3:#efd9c9;
    --off-white:#40333a;
    --white:#ffffff;
    --gold:#c9a876;
    --gold-soft:#e6cd9e;
    --gold-ink:#9c6f34;
    --cyan:#8fc9b8;
    --ink-60:rgba(64,51,58,0.62);
    --ink-40:rgba(64,51,58,0.42);
    --glass-bg:rgba(255,255,255,0.55);
    --glass-bg-2:rgba(255,255,255,0.76);
    --glass-border:rgba(64,51,58,0.10);
    --glass-border-strong:rgba(64,51,58,0.20);
    --radius-lg:28px;
    --radius-md:18px;
    --radius-sm:12px;
  }

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

  html,body{max-width:100%; overflow-x:hidden;}
  body{
    margin:0;
    background:
      radial-gradient(1100px circle at 8% -8%, rgba(253,222,211,0.75), transparent 42%),
      radial-gradient(950px circle at 92% 2%, rgba(210,238,222,0.55), transparent 42%),
      radial-gradient(950px circle at 50% 105%, rgba(228,214,246,0.5), transparent 50%),
      var(--charcoal);
    background-attachment:fixed;
    color:var(--off-white);
    font-family:'Plus Jakarta Sans', system-ui, sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    position:relative;
    width:100%;
  }

  a{color:inherit; text-decoration:none;}
  button{font-family:inherit; cursor:pointer;}
  img{max-width:100%; display:block;}
  ::selection{background:var(--gold); color:var(--off-white);}

  .font-display{font-family:'Playfair Display', serif;}
  .eyebrow{
    font-size:12px; letter-spacing:0.22em; text-transform:uppercase;
    color:var(--gold-ink); font-weight:600;
  }

  .wrap{max-width:1240px; margin:0 auto; padding:0 24px;}
  @media (min-width:768px){.wrap{padding:0 48px;}}

  section{position:relative;}

  /* ---------- Background ambience ---------- */
  .bg-noise{
    position:fixed; inset:0; pointer-events:none; z-index:0; opacity:0.035; mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .glow-orb{position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; z-index:0;}

  /* ---------- Glass ---------- */
  .glass{
    background:var(--glass-bg);
    border:1px solid var(--glass-border);
    backdrop-filter:blur(20px) saturate(140%);
    -webkit-backdrop-filter:blur(20px) saturate(140%);
    box-shadow:0 24px 48px -32px rgba(120,90,95,0.35);
  }
  .glass-strong{
    background:var(--glass-bg-2);
    border:1px solid var(--glass-border-strong);
    backdrop-filter:blur(28px) saturate(150%);
    -webkit-backdrop-filter:blur(28px) saturate(150%);
    box-shadow:0 28px 56px -30px rgba(120,90,95,0.4);
  }
  .foil-edge{
    border:1px solid transparent;
    background-image:linear-gradient(var(--charcoal-2),var(--charcoal-2)), linear-gradient(135deg, rgba(201,168,118,0.9), rgba(201,168,118,0.05) 40%, rgba(159,209,214,0.35) 70%, rgba(201,168,118,0.6));
    background-origin:border-box;
    background-clip:padding-box, border-box;
  }

  /* ---------- Navbar ---------- */
  #navbar{
    position:fixed; top:0; left:0; right:0; z-index:56;
    padding:18px 0;
    transition:background 0.4s ease, border-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
    border-bottom:1px solid transparent;
  }
  #navbar.scrolled{
    background:rgba(255,250,246,0.78);
    border-bottom:1px solid var(--glass-border);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    padding:12px 0;
    box-shadow:0 12px 30px -22px rgba(120,90,95,0.3);
  }
  .nav-inner{display:flex; align-items:center; justify-content:space-between; gap:24px;}
  .logo{font-family:'Playfair Display', serif; font-size:22px; font-weight:600; letter-spacing:0.01em;}
  .logo .dot{color:var(--gold-ink);}
  .nav-links{display:none; align-items:center; gap:34px; font-size:14.5px; font-weight:500; color:var(--ink-60);}
  .nav-links a{position:relative; transition:color 0.25s ease; padding:4px 0;}
  .nav-links a:hover{color:var(--off-white);}
  .nav-links a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold);
    transition:width 0.3s ease;
  }
  .nav-links a:hover::after{width:100%;}
  @media (min-width:1024px){.nav-links{display:flex;}}

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:14px 26px; border-radius:999px; font-weight:600; font-size:14.5px;
    transition:transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.35s ease, border-color .35s ease;
    white-space:nowrap;
  }
  .btn-gold{
    background:linear-gradient(135deg, var(--gold-soft), var(--gold));
    color:var(--off-white);
    box-shadow:0 8px 24px -8px rgba(201,168,118,0.55);
  }
  .btn-gold:hover{transform:translateY(-2px); box-shadow:0 14px 32px -8px rgba(201,168,118,0.7);}
  .btn-ghost{
    background:rgba(64,51,58,0.05); color:var(--off-white); border:1px solid var(--glass-border);
  }
  .btn-ghost:hover{border-color:var(--glass-border-strong); background:rgba(64,51,58,0.09); transform:translateY(-2px);}
  .btn-sm{padding:10px 18px; font-size:13px;}

  .hamburger{
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px;
    width:46px; height:46px; border-radius:50%; flex-shrink:0;
    background:var(--glass-bg); border:1px solid var(--glass-border);
    backdrop-filter:blur(14px) saturate(140%); -webkit-backdrop-filter:blur(14px) saturate(140%);
    z-index:60; position:relative;
    transition:background 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
  }
  .hamburger:active{transform:scale(0.94);}
  .hamburger span{width:19px; height:2px; background:var(--off-white); border-radius:2px; transition:all 0.35s cubic-bezier(.4,0,.2,1);}
  @media (min-width:1024px){.hamburger{display:none;}}
  .hamburger.open{background:var(--off-white); border-color:var(--off-white);}
  .hamburger.open span{background:var(--charcoal);}
  .hamburger.open span:nth-child(1){transform:translateY(6px) rotate(45deg);}
  .hamburger.open span:nth-child(2){opacity:0;}
  .hamburger.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}

  #mobile-menu{
    position:fixed; inset:0; z-index:55; background:rgba(253,246,241,0.98);
    backdrop-filter:blur(30px);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:28px;
    opacity:0; pointer-events:none; transition:opacity 0.4s ease;
  }
  #mobile-menu.open{opacity:1; pointer-events:all;}
  #mobile-menu a{font-size:26px; font-family:'Playfair Display',serif; color:var(--off-white);}

  /* ---------- Reveal ---------- */
  .reveal{opacity:0; transform:translateY(28px); transition:opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);}
  .reveal.is-visible{opacity:1; transform:translateY(0);}
  .reveal-delay-1{transition-delay:0.08s;}
  .reveal-delay-2{transition-delay:0.16s;}
  .reveal-delay-3{transition-delay:0.24s;}
  .reveal-delay-4{transition-delay:0.32s;}

  /* ---------- Hero ---------- */
  .hero{min-height:100svh; display:flex; align-items:center; padding-top:130px; padding-bottom:70px; overflow:hidden;}
  .hero-grid{display:grid; grid-template-columns:1fr; gap:56px; align-items:center;}
  @media (min-width:1024px){.hero-grid{grid-template-columns:1.05fr 0.95fr; gap:40px;}}

  .hero h1{
    font-size:clamp(2.4rem, 5.6vw, 4.1rem);
    line-height:1.06; font-weight:600; letter-spacing:-0.01em;
    margin:18px 0 22px;
  }
  .hero h1 em{font-style:italic; color:var(--gold-ink);}
  .hero p.sub{font-size:17.5px; line-height:1.65; color:var(--ink-60); max-width:480px; margin-bottom:34px;}
  .hero-ctas{display:flex; flex-wrap:wrap; gap:14px;}
  .hero-wa-note{
    display:flex; align-items:center; margin:20px 0 0; font-size:13.5px; font-weight:600;
    color:#2fae5f;
  }

  .hero-visual{position:relative; height:520px; display:flex; align-items:center; justify-content:center; overflow:visible; max-width:100%;}
  @media (max-width:1023px){.hero-visual{height:460px;}}
  @media (max-width:480px){.hero-visual{height:400px;}}

  /* ---- Phone device frames, stacked, each showing a softly-coloured invitation screen ---- */
  .phone-stack{position:relative; width:100%; height:100%;}

  .phone-frame{
    position:absolute; top:50%; left:50%; width:min(190px, 48vw); aspect-ratio:9/19; border-radius:38px;
    padding:11px 8px;
    background:linear-gradient(160deg,#fffaf6,#f1ddd0 70%);
    border:1px solid rgba(64,51,58,0.14);
    will-change:transform;
    backface-visibility:hidden;
  }
  .phone-front{
    animation:float-front 6.5s ease-in-out infinite;
    z-index:5;
    box-shadow:0 45px 80px -25px rgba(140,100,95,0.4), inset 0 0 0 1px rgba(255,255,255,0.7);
  }
  .phone-back-left{
    animation:float-back-left 7.2s ease-in-out infinite;
    animation-delay:0.6s;
    z-index:3; opacity:0.92;
    box-shadow:0 30px 60px -20px rgba(140,100,95,0.3);
  }
  .phone-back-right{
    animation:float-back-right 7.6s ease-in-out infinite;
    animation-delay:1.2s;
    z-index:2; opacity:0.88;
    box-shadow:0 30px 60px -20px rgba(140,100,95,0.28);
  }
  @keyframes float-front{
    0%,100%{transform:translate(-50%,-50%) rotate(-1deg) translateY(0);}
    50%{transform:translate(-50%,-50%) rotate(-1deg) translateY(-14px);}
  }
  @keyframes float-back-left{
    0%,100%{transform:translate(-92%,-42%) rotate(-11deg) scale(0.86) translateY(0);}
    50%{transform:translate(-92%,-42%) rotate(-11deg) scale(0.86) translateY(12px);}
  }
  @keyframes float-back-right{
    0%,100%{transform:translate(-8%,-42%) rotate(10deg) scale(0.86) translateY(0);}
    50%{transform:translate(-8%,-42%) rotate(10deg) scale(0.86) translateY(10px);}
  }

  .invite-notch{
    position:absolute; top:20px; left:50%; transform:translateX(-50%);
    width:52px; height:12px; border-radius:10px; background:rgba(64,51,58,0.55); z-index:6;
  }
  .invite-home-bar{
    position:absolute; bottom:13px; left:50%; transform:translateX(-50%);
    width:68px; height:3.5px; border-radius:4px; background:rgba(64,51,58,0.32); z-index:6;
  }

  .invite-cover{
    width:100%; height:100%; border-radius:28px; overflow:hidden; position:relative;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    padding:26px 16px; text-align:center;
  }
  .invite-cover::before{
    content:''; position:absolute; inset:10px; border:1px solid rgba(255,255,255,0.35); border-radius:20px; pointer-events:none;
  }
  .invite-seal{
    width:36px; height:36px; border-radius:50%; margin-bottom:14px;
    box-shadow:0 6px 16px rgba(0,0,0,0.18), inset 0 0 0 2px rgba(255,255,255,0.4);
    display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; font-style:italic; font-size:13px;
  }
  .invite-cover .invite-title{font-family:'Playfair Display',serif; font-style:italic; font-size:16px; margin-bottom:6px; line-height:1.25;}
  .invite-cover .invite-sub{font-size:8px; letter-spacing:0.2em; text-transform:uppercase; opacity:0.65; margin-bottom:14px;}
  .invite-cover .invite-line{width:28px; height:1px; margin-bottom:14px;}
  .invite-cover .invite-date{font-size:9.5px; letter-spacing:0.08em; opacity:0.75;}

  /* Soft, fluffy pastel screen themes */
  .theme-blush{ background:linear-gradient(160deg,#fdeeea,#f8d9d2 55%,#f3c9c3); color:#6b3f3a; }
  .theme-blush .invite-seal{ background:radial-gradient(circle at 32% 28%, #ffd9c2, #e8a98d 60%, #c97e63 100%); color:#fff; }
  .theme-blush .invite-title{ color:#a85c4d; }
  .theme-blush .invite-line{ background:rgba(168,92,77,0.5); }

  .theme-mint{ background:linear-gradient(160deg,#eaf6ef,#d9ecdf 55%,#c9e3d3); color:#33513f; }
  .theme-mint .invite-seal{ background:radial-gradient(circle at 32% 28%, #d7f2e0, #9dcdb1 60%, #6fa084 100%); color:#fff; }
  .theme-mint .invite-title{ color:#4c8267; }
  .theme-mint .invite-line{ background:rgba(76,130,103,0.5); }

  .theme-lavender{ background:linear-gradient(160deg,#f2eefb,#e5daf6 55%,#d9c9f2); color:#4b3d68; }
  .theme-lavender .invite-seal{ background:radial-gradient(circle at 32% 28%, #e5d6fb, #b79ce0 60%, #9075c2 100%); color:#fff; }
  .theme-lavender .invite-title{ color:#7a5bb0; }
  .theme-lavender .invite-line{ background:rgba(122,91,176,0.5); }

  .float-chip{
    position:absolute; padding:10px 16px; border-radius:999px; font-size:12.5px; font-weight:600;
    display:flex; align-items:center; gap:8px; z-index:6; max-width:calc(50% - 8px);
    animation:chip-float 5s ease-in-out infinite;
  }
  .float-chip .dot{width:6px; height:6px; border-radius:50%; background:var(--cyan); flex-shrink:0;}
  @keyframes chip-float{0%,100%{transform:translateY(0);}50%{transform:translateY(-9px);}}
  @media (max-width:480px){
    .float-chip{font-size:10.5px; padding:7px 11px;}
    .float-chip[style*="left:-2%"]{left:0 !important;}
    .float-chip[style*="left:-4%"]{left:0 !important;}
    .float-chip[style*="right:-4%"]{right:0 !important;}
  }

  /* ---------- Trust strip ---------- */
  .trust-strip{
    display:flex; flex-wrap:wrap; gap:14px; justify-content:center;
    padding:26px 0;
  }
  .trust-item{
    font-size:13px; font-weight:600; color:var(--ink-60);
    padding:10px 18px; border-radius:999px;
    display:flex; align-items:center; gap:8px;
  }
  .trust-item .tick{color:var(--gold-ink);}

  /* ---------- Section headers ---------- */
  .section-head{max-width:640px; margin:0 auto 56px; text-align:center;}
  .section-head h2{font-size:clamp(1.9rem,3.6vw,2.7rem); font-weight:600; margin:14px 0 0; letter-spacing:-0.01em;}
  .section-pad{padding:110px 0;}
  @media (max-width:768px){.section-pad{padding:76px 0;}}

  /* ---------- Cards grid ---------- */
  .grid-3{display:grid; grid-template-columns:1fr; gap:22px;}
  @media (min-width:640px){.grid-3{grid-template-columns:1fr 1fr;}}
  @media (min-width:1024px){.grid-3{grid-template-columns:repeat(3,1fr);}}

  .service-card{
    padding:34px 28px; border-radius:var(--radius-lg);
    transition:transform 0.45s cubic-bezier(.2,.8,.2,1), border-color 0.45s ease, background 0.45s ease;
  }
  .service-card:hover{transform:translateY(-8px); border-color:var(--glass-border-strong); background:var(--glass-bg-2);}
  .service-icon{
    width:52px; height:52px; border-radius:16px; display:flex; align-items:center; justify-content:center;
    background:linear-gradient(135deg, rgba(201,168,118,0.18), rgba(159,209,214,0.1));
    border:1px solid var(--glass-border); margin-bottom:22px; font-size:22px;
  }
  .service-card h3{font-size:19px; font-weight:700; margin:0 0 10px;}
  .service-card p{font-size:14.5px; line-height:1.6; color:var(--ink-60); margin:0;}

  /* ---------- Packages ---------- */
  .pkg-grid{display:grid; grid-template-columns:1fr; gap:24px;}
  @media (min-width:900px){.pkg-grid{grid-template-columns:repeat(3,1fr);}}
  .pkg-card{
    border-radius:var(--radius-lg); padding:40px 32px; display:flex; flex-direction:column;
    position:relative; transition:transform 0.4s ease, box-shadow 0.4s ease;
  }
  .pkg-card:hover{transform:translateY(-6px);}
  .pkg-card.featured{border-color:rgba(201,168,118,0.5); box-shadow:0 30px 60px -30px rgba(201,168,118,0.35);}
  .pkg-badge{
    position:absolute; top:-13px; right:32px; background:linear-gradient(135deg,var(--gold-soft),var(--gold));
    color:var(--off-white); font-size:11px; font-weight:700; padding:6px 14px; border-radius:999px; letter-spacing:0.04em;
  }
  .pkg-name{font-family:'Playfair Display',serif; font-style:italic; font-size:26px; margin:0 0 6px;}
  .pkg-price{display:flex; align-items:baseline; gap:10px; margin:0 0 12px;}
  .pkg-price .old-price{font-size:15px; font-weight:600; color:var(--ink-40); text-decoration:line-through; text-decoration-color:rgba(64,51,58,0.55);}
  .pkg-price .new-price{font-size:22px; font-weight:800; color:var(--gold-ink); letter-spacing:-0.01em;}
  .pkg-price .save-tag{font-size:10.5px; font-weight:700; letter-spacing:0.04em; color:var(--off-white); background:var(--cyan); padding:3px 9px; border-radius:999px;}
  .pkg-desc{font-size:14px; color:var(--ink-60); margin:0 0 26px; line-height:1.55; min-height:44px;}
  .pkg-list{list-style:none; padding:0; margin:0 0 32px; display:flex; flex-direction:column; gap:13px; flex:1;}
  .pkg-list li{font-size:14px; display:flex; align-items:flex-start; gap:10px; color:var(--off-white);}
  .pkg-list li .check{color:var(--cyan); flex-shrink:0; margin-top:1px;}

  /* ---------- Portfolio ---------- */
  .filter-row{display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:44px;}
  .filter-btn{
    padding:9px 20px; border-radius:999px; font-size:13px; font-weight:600; color:var(--ink-60);
    border:1px solid var(--glass-border); background:transparent; transition:all 0.3s ease;
  }
  .filter-btn:hover{color:var(--off-white); border-color:var(--glass-border-strong);}
  .filter-btn.active{background:var(--off-white); color:var(--charcoal); border-color:var(--off-white);}

  .portfolio-grid{display:grid; grid-template-columns:1fr; gap:24px;}
  @media (min-width:640px){.portfolio-grid{grid-template-columns:1fr 1fr;}}
  @media (min-width:1024px){.portfolio-grid{grid-template-columns:repeat(3,1fr);}}

  .p-item{border-radius:var(--radius-lg); overflow:hidden; transition:transform 0.4s ease, opacity 0.35s ease; display:flex; flex-direction:column;}
  .p-item.hidden-item{display:none;}
  .p-item:hover{transform:translateY(-6px);}
  .p-preview{
    aspect-ratio:4/5; position:relative; overflow:hidden;
    display:flex; align-items:center; justify-content:center; padding:26px;
  }
  .p-preview iframe{ pointer-events:auto; background:var(--charcoal-2); }
  .p-preview-badge{
    position:absolute; bottom:12px; right:12px; z-index:5;
    background:rgba(255,255,255,0.9); color:var(--off-white); font-size:11px; font-weight:700;
    padding:7px 13px; border-radius:999px; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
    box-shadow:0 8px 20px -8px rgba(64,51,58,0.45);
    transition:transform 0.25s ease, background 0.25s ease;
  }
  .p-preview-badge:hover{ transform:translateY(-2px); background:#fff; }
  .mock-face{
    width:100%; height:100%; border-radius:14px;
    background:linear-gradient(160deg,#fdf1ea,#f5e0d2);
    border:1px solid rgba(64,51,58,0.10);
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    padding:14px; position:relative; text-align:center;
  }
  .mock-seal{
    width:32px; height:32px; border-radius:50%;
    background:radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold) 60%, #8a6d3f 100%);
    box-shadow:0 4px 12px rgba(201,168,118,0.5); margin-bottom:10px;
  }
  .mock-face .mline{height:1px; width:55%; background:rgba(64,51,58,0.18); margin:6px 0;}
  .mock-title{font-family:'Playfair Display',serif; font-style:italic; font-size:15px; color:var(--gold-ink); margin-bottom:4px;}
  .mock-sub{font-size:9px; letter-spacing:0.15em; text-transform:uppercase; color:var(--ink-40);}
  .p-body{padding:20px 22px 24px;}
  .p-tag{font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold-ink); font-weight:700; margin-bottom:8px; display:block;}
  .p-title{font-size:17px; font-weight:700; margin:0 0 6px;}
  .p-desc{font-size:13.5px; color:var(--ink-60); margin:0 0 16px; line-height:1.5;}

  /* ---------- Why us ---------- */
  .why-grid{display:grid; grid-template-columns:1fr; gap:20px;}
  @media (min-width:640px){.why-grid{grid-template-columns:1fr 1fr;}}
  @media (min-width:1024px){.why-grid{grid-template-columns:repeat(3,1fr);}}
  .why-card{padding:30px; border-radius:var(--radius-md);}
  .why-card h3{font-size:16.5px; font-weight:700; margin:14px 0 8px;}
  .why-card p{font-size:13.5px; color:var(--ink-60); line-height:1.6; margin:0;}

  /* ---------- How it works ---------- */
  .steps{display:grid; grid-template-columns:1fr; gap:0; position:relative;}
  @media (min-width:900px){.steps{grid-template-columns:repeat(4,1fr); gap:24px;}}
  .step{padding:30px 26px; border-radius:var(--radius-md); position:relative;}
  .step-num{font-family:'Playfair Display',serif; font-style:italic; font-size:15px; color:var(--gold-ink); margin-bottom:16px; display:block;}
  .step h3{font-size:17px; font-weight:700; margin:0 0 10px;}
  .step p{font-size:13.5px; color:var(--ink-60); line-height:1.6; margin:0;}

  /* ---------- Features ---------- */
  .feat-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px;}
  @media (min-width:640px){.feat-grid{grid-template-columns:repeat(3,1fr);}}
  @media (min-width:1024px){.feat-grid{grid-template-columns:repeat(4,1fr);}}
  .feat-chip{
    padding:22px 18px; border-radius:var(--radius-sm); text-align:center;
    display:flex; flex-direction:column; align-items:center; gap:10px;
    transition:transform 0.3s ease, background 0.3s ease;
  }
  .feat-chip:hover{transform:translateY(-4px); background:var(--glass-bg-2);}
  .feat-chip span{font-size:13px; font-weight:600;}

  /* ---------- Testimonials ---------- */
  .testi-row{display:flex; gap:22px; overflow-x:auto; padding:6px 6px 16px; -webkit-overflow-scrolling:touch; cursor:grab; scroll-behavior:auto;}
  .testi-row.dragging{cursor:grabbing; scroll-snap-type:none;}
  .testi-row::-webkit-scrollbar{height:5px;}
  .testi-row::-webkit-scrollbar-thumb{background:var(--glass-border-strong); border-radius:10px;}
  .testi-card{
    min-width:300px; max-width:340px; padding:28px; border-radius:var(--radius-md);
    scroll-snap-align:start; flex-shrink:0;
  }
  .stars{color:var(--gold-ink); font-size:14px; margin-bottom:14px; letter-spacing:2px;}
  .testi-card p.quote{font-size:14.5px; line-height:1.65; color:var(--off-white); margin:0 0 20px;}
  .testi-name{font-weight:700; font-size:14px;}
  .testi-meta{font-size:12.5px; color:var(--ink-40);}

  /* ---------- Final CTA ---------- */
  .final-cta{
    border-radius:36px; padding:70px 34px; text-align:center; position:relative; overflow:hidden;
  }
  .final-cta h2{font-size:clamp(2rem,4.4vw,3.1rem); margin:0 0 18px; font-weight:600;}
  .final-cta p{font-size:16px; color:var(--ink-60); max-width:440px; margin:0 auto 36px;}
  .final-cta .ctas{display:flex; flex-wrap:wrap; justify-content:center; gap:14px;}

  /* ---------- FAQ ---------- */
  .faq-item{border-bottom:1px solid var(--glass-border); padding:6px 0;}
  .faq-q{
    width:100%; background:none; border:none; color:var(--off-white); text-align:left;
    display:flex; align-items:center; justify-content:space-between; gap:18px;
    padding:22px 4px; font-size:16px; font-weight:600;
  }
  .faq-q .plus{font-size:20px; color:var(--gold-ink); transition:transform 0.35s ease; flex-shrink:0;}
  .faq-item.open .faq-q .plus{transform:rotate(135deg);}
  .faq-a{max-height:0; overflow:hidden; transition:max-height 0.45s ease;}
  .faq-a p{font-size:14.5px; color:var(--ink-60); line-height:1.65; padding:0 4px 22px; margin:0;}

  /* ---------- Social ---------- */
  .social-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px;}
  @media (min-width:768px){.social-grid{grid-template-columns:repeat(4,1fr);}}
  .social-tile{
    aspect-ratio:1; border-radius:var(--radius-sm); display:flex; flex-direction:column;
    align-items:center; justify-content:center; gap:10px; font-size:13px; font-weight:600;
    transition:transform 0.3s ease;
  }
  .social-tile:hover{transform:translateY(-4px);}

  /* ---------- Footer ---------- */
  footer{padding:70px 0 30px; border-top:1px solid var(--glass-border);}
  .footer-grid{display:grid; grid-template-columns:1fr; gap:40px;}
  @media (min-width:768px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr;}}
  .footer-links{display:flex; flex-direction:column; gap:12px; font-size:14px; color:var(--ink-60);}
  .footer-links a:hover{color:var(--off-white);}
  .footer-social{display:flex; gap:12px; margin-top:16px;}
  .footer-social a{
    width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    border:1px solid var(--glass-border); font-size:14px; transition:all 0.3s ease;
  }
  .footer-social a:hover{border-color:var(--gold-ink); color:var(--gold-ink);}
  .footer-bottom{margin-top:50px; padding-top:24px; border-top:1px solid var(--glass-border); font-size:12.5px; color:var(--ink-40); text-align:center;}

  /* ---------- WhatsApp float ---------- */
  #wa-float{
    position:fixed; bottom:26px; right:22px; z-index:40;
    width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    background:linear-gradient(135deg,#2fd06b,#1fae57); box-shadow:0 12px 30px -6px rgba(31,174,87,0.6);
    animation:wa-pulse 2.6s ease-in-out infinite;
  }
  @keyframes wa-pulse{0%,100%{box-shadow:0 12px 30px -6px rgba(31,174,87,0.6);}50%{box-shadow:0 12px 38px -4px rgba(31,174,87,0.85);}}
  @media (min-width:1024px){#wa-float{bottom:32px; right:32px;}}

  .loader{
    position:fixed; inset:0; z-index:200; background:var(--charcoal);
    display:flex; align-items:center; justify-content:center; transition:opacity 0.7s ease, visibility 0.7s ease;
  }
  .loader.hide{opacity:0; visibility:hidden;}
  .loader .mark{font-family:'Playfair Display',serif; font-style:italic; font-size:32px; color:var(--gold-ink); opacity:0; animation:loader-in 1.1s ease forwards;}
  @keyframes loader-in{0%{opacity:0; letter-spacing:0.3em;}100%{opacity:1; letter-spacing:0.03em;}}
