/* Sweet Summer Spa — stylesheet
   Palette from the brand logo: plum #520184, gold #AE8930, cream #FFFBF0 */

:root{
  --plum:#520184;
  --plum-deep:#3A0560;
  --plum-soft:#7B4BB0;
  --gold:#AE8930;
  --gold-soft:#D9C283;
  --cream:#FFFBF0;
  --sand:#F3EADB;
  --sand-deep:#E6D9C3;
  --ink:#2A2230;
  --muted:#6B6373;
  --line:#E8DFCF;
  --white:#FFFFFF;
  --wa:#1E8E5A;
  --radius:14px;
  --shadow:0 10px 30px rgba(58,5,96,.08);
  --max:1140px;
  --gutter:20px;
  --font-display:"Cormorant Garamond",Georgia,serif;
  --font-body:"Manrope",system-ui,-apple-system,"Segoe UI",sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;font-family:var(--font-body);font-size:16px;line-height:1.65;color:var(--ink);background:var(--cream)}
img{max-width:100%;height:auto;display:block}
a{color:var(--plum);text-decoration:none}
a:hover{text-decoration:underline}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;line-height:1.12;margin:0 0 .5em;color:var(--plum-deep)}
h1{font-size:clamp(2.2rem,5.5vw,3.6rem)}
h2{font-size:clamp(1.8rem,4vw,2.6rem)}
h3{font-size:1.45rem}
p{margin:0 0 1em}
ul{padding-left:1.2em}
.wrap{max-width:var(--max);margin:0 auto;padding:0 var(--gutter)}
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
:focus-visible{outline:3px solid var(--gold);outline-offset:2px}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;min-height:48px;padding:.75rem 1.4rem;border-radius:999px;font-weight:600;font-size:.98rem;border:2px solid transparent;transition:transform .15s,box-shadow .15s,background .15s;white-space:nowrap}
.btn:hover{text-decoration:none;transform:translateY(-1px);box-shadow:0 8px 20px rgba(58,5,96,.18)}
.btn svg{width:20px;height:20px;flex:none}
.btn-primary{background:var(--plum);color:#fff}
.btn-primary:hover{background:var(--plum-deep)}
.btn-wa{background:var(--wa);color:#fff}
.btn-wa:hover{background:#17724a}
.btn-outline{background:transparent;color:var(--plum-deep);border-color:var(--plum-deep)}
.btn-outline:hover{background:var(--plum-deep);color:#fff}
.btn-light{background:#fff;color:var(--plum-deep)}
.btn-gold{background:var(--gold);color:#fff}
.btn-row{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.4rem}

/* Header */
.site-header{position:sticky;top:0;z-index:50;background:rgba(255,251,240,.94);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:70px}
.logo img{height:52px;width:auto}
.nav{display:none}
.nav a{color:var(--ink);font-weight:500;padding:.5rem .7rem;border-radius:8px}
.nav a:hover,.nav a[aria-current="page"]{color:var(--plum);text-decoration:none;background:var(--sand)}
.header-cta{display:none}
.nav-toggle{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border:1px solid var(--line);border-radius:10px;background:#fff;cursor:pointer}
.nav-toggle span{position:relative;display:block;width:20px;height:2px;background:var(--plum-deep);transition:transform .2s}
.nav-toggle span::before,.nav-toggle span::after{content:"";position:absolute;left:0;width:20px;height:2px;background:var(--plum-deep);transition:transform .2s,top .2s}
.nav-toggle span::before{top:-6px}.nav-toggle span::after{top:6px}
.nav-toggle[aria-expanded="true"] span{background:transparent}
.nav-toggle[aria-expanded="true"] span::before{top:0;transform:rotate(45deg)}
.nav-toggle[aria-expanded="true"] span::after{top:0;transform:rotate(-45deg)}
.mobile-nav{display:none;border-top:1px solid var(--line);background:var(--cream)}
.mobile-nav.open{display:block}
.mobile-nav a{display:block;padding:.85rem var(--gutter);border-bottom:1px solid var(--line);color:var(--ink);font-weight:500}
.mobile-nav a[aria-current="page"]{color:var(--plum);background:var(--sand)}
.mobile-nav a:hover{text-decoration:none;background:var(--sand)}
@media(min-width:900px){
  .nav{display:flex;gap:.1rem}
  .header-cta{display:inline-flex;min-height:42px;padding:.5rem 1.1rem}
  .nav-toggle,.mobile-nav{display:none!important}
}

/* Hero (lean) */
.hero{position:relative;color:#fff;background:var(--plum-deep);overflow:hidden}
.hero-media{position:absolute;inset:0}
.hero-media img{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-media::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(42,10,70,.88) 0%,rgba(42,10,70,.7) 55%,rgba(42,10,70,.45) 100%)}
.hero-inner{position:relative;padding-top:3.2rem;padding-bottom:3rem}
.hero-inner>*{max-width:700px}
.hero h1{color:#fff;margin-bottom:.7rem;font-size:clamp(2rem,4.6vw,3.1rem)}
.hero .lead{font-size:1.05rem;color:rgba(255,255,255,.9);margin-bottom:.2rem}
.eyebrow{display:inline-block;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--gold);margin-bottom:.8rem}
.hero .eyebrow{color:var(--gold-soft)}
.hero .btn-row{margin-top:1.2rem}
@media(min-width:700px){.hero-inner{padding-top:5.5rem;padding-bottom:5rem}}
.hero-compact .hero-inner{padding-top:2.6rem;padding-bottom:2.4rem}
@media(min-width:700px){.hero-compact .hero-inner{padding-top:3.6rem;padding-bottom:3.4rem}}

/* Info strip under hero */
.infobar{background:var(--plum-deep);color:rgba(255,255,255,.9);border-top:1px solid rgba(255,255,255,.12);font-size:.88rem}
.infobar-inner{display:flex;flex-wrap:wrap;gap:.5rem 1.4rem;align-items:center;padding-top:.7rem;padding-bottom:.7rem}
.infobar span,.infobar a{display:inline-flex;align-items:center;gap:.4rem;color:inherit}
.infobar svg{width:16px;height:16px;color:var(--gold-soft);flex:none}
.infobar a{font-weight:600;color:var(--gold-soft);margin-left:auto}
.status{display:inline-flex;align-items:center;gap:.45rem;font-weight:600}
.status::before{content:"";width:8px;height:8px;border-radius:50%;background:#7ED89A}
@media(max-width:600px){.infobar-inner{gap:.35rem .9rem}.infobar a{margin-left:0}}

/* Sections */
.section{padding:3.5rem 0}
@media(min-width:700px){.section{padding:5rem 0}}
.section-alt{background:var(--sand)}
.section-plum{background:var(--plum-deep);color:#fff}
.section-plum h2,.section-plum h3{color:#fff}
.section-plum .eyebrow{color:var(--gold-soft)}
.section-head{max-width:680px;margin-bottom:2.2rem}
.section-head p{color:var(--muted);font-size:1.05rem}
.section-plum .section-head p{color:rgba(255,255,255,.85)}
.center{text-align:center;margin-left:auto;margin-right:auto}

/* Quick decision strip (paid pages) */
.decide{display:grid;gap:1rem;grid-template-columns:1fr;margin-top:1.4rem;position:relative}
.decide .card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.1rem 1.2rem;box-shadow:var(--shadow)}
.decide .card strong{display:block;font-family:var(--font-display);font-size:1.35rem;color:var(--plum-deep);line-height:1.1}
.decide .card span{color:var(--muted);font-size:.92rem}
@media(min-width:700px){.decide{grid-template-columns:repeat(3,1fr)}}

/* Service cards */
.grid{display:grid;gap:1.4rem;grid-template-columns:1fr}
@media(min-width:640px){.grid-2,.grid-3{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.grid-3{grid-template-columns:repeat(3,1fr)}}
.svc{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s}
.svc:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.svc .img{aspect-ratio:4/3;overflow:hidden;background:var(--sand)}
.svc .img img{width:100%;height:100%;object-fit:cover}
.svc .body{padding:1.2rem 1.25rem 1.35rem;display:flex;flex-direction:column;flex:1}
.svc .tag{font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;font-weight:700;color:var(--gold)}
.svc h3{margin:.3rem 0 .35rem}
.svc h3 a{color:var(--plum-deep)}
.price{display:flex;align-items:baseline;gap:.5rem;margin-bottom:.6rem}
.price b{font-family:var(--font-display);font-size:1.5rem;color:var(--plum);font-weight:600}
.price small{color:var(--muted)}
.svc p{color:var(--muted);font-size:.95rem;flex:1}
.svc .actions{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.6rem}
.svc .actions .btn{min-height:42px;padding:.5rem 1rem;font-size:.9rem}

/* Price table */
.price-table{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}
.price-table th,.price-table td{padding:.9rem 1rem;text-align:left;border-bottom:1px solid var(--line)}
.price-table th{background:var(--sand);font-weight:600;font-size:.9rem;letter-spacing:.04em;text-transform:uppercase}
.price-table tr:last-child td{border-bottom:0}
.price-table td b{color:var(--plum);font-family:var(--font-display);font-size:1.25rem}
.price-table a{font-weight:600}
.price-table .btn{min-height:40px;padding:.45rem .9rem;font-size:.88rem}
@media(max-width:600px){
  .price-table,.price-table tbody,.price-table tr,.price-table td{display:block;width:100%}
  .price-table thead{display:none}
  .price-table tr{display:grid;grid-template-columns:1fr auto;gap:.15rem .8rem;padding:.9rem 1rem;border-bottom:1px solid var(--line)}
  .price-table td{padding:0;border:0}
  .price-table td:nth-child(1){grid-column:1;font-weight:600}
  .price-table td:nth-child(2){grid-column:1;color:var(--muted);font-size:.9rem}
  .price-table td:nth-child(3){grid-column:2;grid-row:1;text-align:right}
  .price-table td:nth-child(4){grid-column:2;grid-row:2;text-align:right}
}

/* Feature list */
.features{list-style:none;padding:0;margin:0;display:grid;gap:1.1rem;grid-template-columns:1fr}
@media(min-width:640px){.features{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.features.cols-3{grid-template-columns:repeat(3,1fr)}}
.features li{display:flex;gap:.9rem;align-items:flex-start;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.1rem 1.15rem}
.section-plum .features li{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.14)}
.features .ic{flex:none;width:42px;height:42px;border-radius:12px;background:var(--sand);display:grid;place-items:center;color:var(--plum)}
.section-plum .features .ic{background:rgba(255,255,255,.12);color:var(--gold-soft)}
.features .ic svg{width:22px;height:22px}
.features strong{display:block;font-size:1.02rem;margin-bottom:.15rem}
.features span{color:var(--muted);font-size:.93rem}
.section-plum .features span{color:rgba(255,255,255,.8)}

/* Split */
.split{display:grid;gap:2rem;grid-template-columns:1fr;align-items:center}
@media(min-width:860px){.split{grid-template-columns:1fr 1fr;gap:3.5rem}.split.rev>.media{order:2}}
.split .media img{border-radius:var(--radius);width:100%;aspect-ratio:4/3;object-fit:cover}
.split .media.sq img{aspect-ratio:1/1}
.checks{list-style:none;padding:0;margin:1.2rem 0 0}
.checks li{position:relative;padding-left:1.8rem;margin-bottom:.6rem}
.checks li::before{content:"";position:absolute;left:0;top:.35em;width:18px;height:18px;border-radius:50%;background:var(--gold);-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/100% no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/100% no-repeat}

/* Prose */
.prose{max-width:720px}
.prose h2{margin-top:2.2rem}
.prose h2:first-child{margin-top:0}
.prose h3{margin-top:1.6rem}
.prose li{margin-bottom:.4rem}

/* Offers */
.offer{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column}
.offer .img{aspect-ratio:16/10;overflow:hidden}
.offer .img img{width:100%;height:100%;object-fit:cover}
.offer .body{padding:1.25rem;flex:1;display:flex;flex-direction:column}
.offer .tag{font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;font-weight:700;color:var(--gold)}
.offer .body p{color:var(--muted);font-size:.95rem;flex:1}
.offer-note{font-size:.88rem;color:var(--muted);margin-top:1.5rem}

/* Gallery */
.gallery{display:grid;gap:.8rem;grid-template-columns:repeat(2,1fr)}
@media(min-width:760px){.gallery{grid-template-columns:repeat(3,1fr);gap:1rem}}
.gallery figure{margin:0;border-radius:12px;overflow:hidden;background:var(--sand)}
.gallery img{width:100%;aspect-ratio:1/1;object-fit:cover;transition:transform .3s}
.gallery figure:hover img{transform:scale(1.03)}
.gallery figcaption{font-size:.82rem;color:var(--muted);padding:.45rem .6rem}
.gallery-note{font-size:.88rem;color:var(--muted);margin-top:1.2rem}

/* FAQ */
.faq{max-width:780px}
.faq details{background:#fff;border:1px solid var(--line);border-radius:12px;margin-bottom:.7rem;padding:0 1.1rem}
.faq summary{cursor:pointer;font-weight:600;padding:1rem 2rem 1rem 0;position:relative;list-style:none;font-size:1.02rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";position:absolute;right:0;top:.85rem;font-size:1.5rem;color:var(--gold);line-height:1}
.faq details[open] summary::after{content:"–"}
.faq details p{color:var(--muted);padding-bottom:1rem;margin:0}

/* Reviews link block */
.trust{display:flex;flex-wrap:wrap;gap:1rem 1.6rem;align-items:center;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.3rem 1.4rem}
.trust p{margin:0;color:var(--muted);flex:1;min-width:220px}
.trust-score{flex:none}
.trust-score strong{display:block;color:var(--plum-deep);font-family:var(--font-display);font-size:1.5rem;line-height:1.1}
.trust-score span{color:var(--muted);font-size:.9rem}
.trust .stars{display:flex;gap:2px;margin-bottom:.25rem}
.trust .stars svg{width:17px;height:17px;color:var(--gold)}

/* Location */
.loc{display:grid;gap:1.5rem;grid-template-columns:1fr}
@media(min-width:860px){.loc{grid-template-columns:5fr 6fr;gap:2.5rem}}
.loc-facts{list-style:none;padding:0;margin:0 0 1.2rem;display:grid;gap:.9rem}
.loc-facts li{display:flex;gap:.8rem;align-items:flex-start}
.loc-facts svg{width:22px;height:22px;flex:none;color:var(--gold);margin-top:2px}
.loc-facts strong{display:block}
.loc-facts span,.loc-facts a{color:var(--muted)}
.map{border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);background:var(--sand);min-height:300px;position:relative}
.map iframe{width:100%;height:100%;min-height:340px;border:0;display:block}
.map-fallback{position:absolute;inset:0;display:grid;place-items:center;text-align:center;padding:1.5rem}
.map-fallback a{margin-top:.5rem}

/* Arabic */
.arabic{direction:rtl;text-align:right}
.arabic .price-table th,.arabic .price-table td{text-align:right}
@media(max-width:600px){.arabic .price-table td:nth-child(3){text-align:left}}

/* Final CTA */
.cta-final{background:linear-gradient(135deg,var(--plum-deep),var(--plum) 60%,#6A2AA0);color:#fff;text-align:center}
.cta-final h2{color:#fff}
.cta-final p{color:rgba(255,255,255,.88);max-width:560px;margin:0 auto 1.2rem}
.cta-final .btn-row{justify-content:center}
.cta-final .phone{font-family:var(--font-display);font-size:1.9rem;color:var(--gold-soft);display:block;margin:.5rem 0 1rem}

/* Related links */
.related{display:flex;flex-wrap:wrap;gap:.6rem}
.related a{background:#fff;border:1px solid var(--line);padding:.55rem .95rem;border-radius:999px;font-size:.92rem;font-weight:500}
.related a:hover{background:var(--sand);text-decoration:none}

/* Footer (compact) */
.site-footer{background:#1E1526;color:rgba(255,255,255,.75);padding:1.6rem 0 6rem;font-size:.86rem}
@media(min-width:900px){.site-footer{padding-bottom:1.6rem}}
.foot{display:flex;flex-direction:column;gap:.9rem}
@media(min-width:900px){.foot{flex-direction:row;align-items:center;justify-content:space-between;gap:2rem}}
.foot-brand{display:flex;align-items:center;gap:.9rem}
.foot-brand .logo img{height:40px;width:auto;filter:brightness(0) invert(1);opacity:.9}
.foot-brand p{margin:0;line-height:1.5}
.foot a{color:rgba(255,255,255,.85)}
.foot a:hover{color:var(--gold-soft)}
.foot-links{display:flex;flex-wrap:wrap;gap:.3rem 1rem}
.foot-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:1rem;padding-top:.8rem;font-size:.78rem;color:rgba(255,255,255,.5)}

/* Mobile action bar */
.action-bar{position:fixed;left:0;right:0;bottom:0;z-index:60;display:grid;grid-template-columns:repeat(3,1fr);background:#fff;border-top:1px solid var(--line);box-shadow:0 -6px 20px rgba(0,0,0,.08);padding-bottom:env(safe-area-inset-bottom)}
.action-bar a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;min-height:60px;font-size:.78rem;font-weight:700;color:var(--plum-deep);text-decoration:none}
.action-bar a svg{width:22px;height:22px}
.action-bar .wa{color:var(--wa)}
@media(min-width:900px){.action-bar{display:none}}

/* 404 */
.notfound{text-align:center;padding:6rem 0}
.notfound h1{font-size:5rem;color:var(--gold)}

@media(prefers-reduced-motion:reduce){*{transition:none!important;scroll-behavior:auto!important}}
