/* ============================================================
   NOT:S Salon & Spa — stylesheet
   ============================================================ */

:root {
  --coral:        #DD6A5B;
  --coral-deep:   #C7574A;
  --orange:       #EE6C39;
  --sand:         #E8DCCD;
  --sand-deep:    #DDCDB7;
  --cream:        #F6EFE6;
  --paper:        #FBF7F1;
  --ink:          #2C2722;
  --ink-soft:     #5A5147;
  --muted:        #968B7D;
  --line:         rgba(44, 39, 34, 0.14);
  --line-soft:    rgba(44, 39, 34, 0.08);

  --font-display: 'Jost', sans-serif;
  --font-body:    'Mulish', sans-serif;
  --font-script:  'Kaushan Script', cursive;
  --font-ar:      'Tajawal', sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Arabic accent helpers ---------- */
.ar {
  font-family: var(--font-ar);
  direction: rtl;
  unicode-bidi: embed;
}
/* Small Arabic subtitle that sits below an English line */
.ar-sub {
  font-family: var(--font-ar);
  font-size: 0.7em;
  color: var(--muted);
  display: block;
  margin-top: 4px;
  direction: rtl;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.5;
}
/* Inline Arabic accent (same line, muted) */
.ar-inline {
  font-family: var(--font-ar);
  font-size: 0.82em;
  color: var(--muted);
  letter-spacing: 0;
  direction: rtl;
  unicode-bidi: embed;
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 11vw, 150px); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--coral);
  flex-shrink: 0;
}
.eyebrow .ar-inline { font-size: 13px; opacity: .7; }

.script {
  font-family: var(--font-script);
  color: var(--coral);
  font-weight: 400;
  line-height: 1;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.h-display { font-size: clamp(38px, 6.5vw, 92px); }
.h-section  { font-size: clamp(30px, 4.6vw, 58px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding: 16px 30px;
  border-radius: 100px;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .4s;
  white-space: nowrap;
}
.btn-coral { background: var(--coral); color: var(--paper); box-shadow: 0 12px 30px -12px rgba(221,106,91,.7); }
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(221,106,91,.8); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-3px); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -14px rgba(0,0,0,.4); }
.btn .arrow { transition: transform .4s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 22px;
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s;
}
.header.scrolled {
  background: rgba(251,247,241,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 13px;
  box-shadow: 0 1px 0 var(--line-soft);
}
.header .wrap { display: flex; align-items: center; gap: 28px; }

.brand { display: flex; align-items: baseline; gap: 12px; line-height: 1; }
.brand .mark {
  font-family: var(--font-display); font-weight: 300;
  font-size: 30px; letter-spacing: 0.12em; color: var(--ink);
}
.brand .mark b { font-weight: 300; color: var(--coral); }
.brand .sub {
  font-family: var(--font-display); font-size: 9.5px; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--muted); font-weight: 400;
}

.nav { display: flex; align-items: center; gap: 30px; margin-inline-start: auto; }
.nav a {
  font-family: var(--font-display); font-size: 14px; letter-spacing: 0.08em;
  color: var(--ink-soft); font-weight: 400; position: relative; padding-block: 4px;
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--coral);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header .btn { padding: 12px 24px; }

.burger { display: none; width: 30px; height: 18px; position: relative; flex-shrink: 0; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.6px; background: var(--ink); transition: .35s var(--ease); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 8px; }
.burger span:nth-child(3) { top: 16px; }
body.menu-open .burger span:nth-child(1) { top: 8px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--sand);
  display: flex; flex-direction: column; justify-content: center; padding: var(--pad);
  transform: translateY(-100%); transition: transform .55s var(--ease); gap: 4px;
}
body.menu-open .mobile-nav { transform: translateY(0); }
.mobile-nav a { font-family: var(--font-display); font-weight: 300; font-size: 38px; padding-block: 8px; color: var(--ink); }
.mobile-nav .btn { margin-top: 26px; align-self: flex-start; font-size: 16px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--sand); overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 60px); align-items: center; width: 100%; padding-top: 90px;
}
.hero-copy { max-width: 600px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 6px; }
.hero h1 .line2 { color: var(--coral); }

.hero .script-tag { font-family: var(--font-script); color: var(--coral); font-size: clamp(34px, 5vw, 68px); line-height: .95; display: block; }
.hero-script-wrap { margin: 8px 0 26px; }
.hero-script-wrap .ar-sub { font-size: 15px; color: var(--muted); margin-top: 10px; text-align: left; direction: ltr; font-family: var(--font-ar); }

.hero p.lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); max-width: 460px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-loc {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: 40px;
}
.hero-loc .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.hero-loc .ar-inline { text-transform: none; letter-spacing: 0; }

.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 280px 280px 18px 18px; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(44,39,34,.4);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 26px; left: 26px;
  background: rgba(251,247,241,.92); backdrop-filter: blur(8px);
  padding: 14px 20px; border-radius: 100px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
}
.hero-badge .stars { color: var(--orange); letter-spacing: 2px; }

/* Marquee */
.marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding-block: 16px; }
.marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display); font-weight: 300; font-size: 18px;
  letter-spacing: .14em; text-transform: uppercase;
  padding-inline: 28px; display: inline-flex; align-items: center; gap: 28px;
}
.marquee-track span::after { content: "✦"; color: var(--coral); font-size: 11px; }
.marquee-track .ar-m {
  font-family: var(--font-ar); letter-spacing: 0; text-transform: none;
  color: rgba(246,239,230,.65); font-size: 17px; font-weight: 400;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   About
   ============================================================ */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,5vw,84px); align-items: center; }
.about-visual { position: relative; }
.about-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 18px; }
.about-visual .float {
  position: absolute; right: -22px; bottom: 38px;
  background: var(--coral); color: var(--paper);
  padding: 26px 30px; border-radius: 16px; max-width: 210px;
  box-shadow: 0 30px 60px -30px rgba(221,106,91,.8);
}
.about-visual .float .num { font-family: var(--font-display); font-weight: 300; font-size: 46px; line-height: 1; }
.about-visual .float .lbl { font-size: 13px; opacity: .92; margin-top: 6px; }
.about-copy h2 { margin: 16px 0 22px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 50ch; }
.about-copy .script { font-size: 38px; margin-top: 12px; display: block; }
.about-copy .ar-sub { font-size: 14px; margin-top: 8px; }

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--cream); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 56px; flex-wrap: wrap; }
.sec-head p { color: var(--ink-soft); max-width: 38ch; }

.svc-list { display: grid; gap: 18px; }
.svc {
  display: grid; grid-template-columns: 76px 1fr auto auto;
  gap: 28px; align-items: center;
  padding: 26px 30px; background: var(--paper);
  border-radius: 18px; border: 1px solid var(--line-soft);
  transition: transform .5s var(--ease), box-shadow .5s;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -36px rgba(44,39,34,.45); }
.svc-thumb { width: 76px; height: 76px; border-radius: 14px; overflow: hidden; }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc:hover .svc-thumb img { transform: scale(1.08); }
.svc-num { font-family: var(--font-display); font-size: 12px; color: var(--coral); letter-spacing: .12em; display: block; margin-bottom: 4px; }
.svc h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 300; }
.svc h3 .ar-sub { font-size: 14px; }
.svc-desc { color: var(--ink-soft); font-size: 15px; max-width: 46ch; }
.svc-from { font-family: var(--font-display); text-align: right; }
.svc-from .from { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: block; }
.svc-from .price { font-size: 26px; font-weight: 300; color: var(--ink); }
.svc-go {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .4s var(--ease), border-color .4s;
}
.svc:hover .svc-go { background: var(--coral); border-color: var(--coral); color: var(--paper); }
.svc-go svg { transition: transform .4s var(--ease); }
.svc:hover .svc-go svg { transform: translateX(3px); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { background: var(--paper); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gal-item { overflow: hidden; border-radius: 14px; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-cap {
  position: absolute; inset: auto 0 0 0; padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(44,39,34,.72), transparent);
  color: var(--cream); font-family: var(--font-script); font-size: 26px;
  opacity: 0; transform: translateY(10px); transition: .5s var(--ease);
}
.gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }

/* ============================================================
   Pricing / Menu
   ============================================================ */
.menu { background: var(--sand); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 64px); margin-top: 50px; }
.menu-col h3 {
  font-size: 22px; font-weight: 400; padding-bottom: 16px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px;
}
.menu-col h3 .ic { color: var(--coral); }
.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  align-items: baseline; padding: 14px 0; border-bottom: 1px dashed var(--line-soft);
}
.menu-row .name { font-size: 16px; }
.menu-row .name .ar-sub { font-size: 12px; margin-top: 2px; }
.menu-row .cost { font-family: var(--font-display); font-size: 18px; white-space: nowrap; }
.menu-row .cost .sar { font-size: 12px; color: var(--muted); letter-spacing: .08em; }
.menu-note { margin-top: 36px; text-align: center; color: var(--ink-soft); font-size: 14.5px; }

/* ============================================================
   Team
   ============================================================ */
.team { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.member { text-align: center; }
.member .photo {
  aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  margin-bottom: 18px; background: var(--sand-deep);
  display: flex; align-items: center; justify-content: center;
}
.member .photo image-slot { width: 100%; height: 100%; display: block; }
.member h3 { font-size: 22px; font-weight: 400; }
.member .role { font-family: var(--font-display); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); margin-top: 5px; }
.member .role .ar-sub { letter-spacing: 0; font-size: 12px; margin-top: 4px; }

/* ============================================================
   Booking band
   ============================================================ */
.booking { background: var(--coral); color: var(--paper); text-align: center; position: relative; overflow: hidden; padding-block: clamp(72px,10vw,140px); }
.booking .script { color: rgba(251,247,241,.9); font-size: clamp(34px, 5vw, 60px); display: block; margin-bottom: 12px; }
.booking h2 { color: var(--paper); margin-bottom: 14px; }
.booking p { color: rgba(251,247,241,.84); max-width: 44ch; margin: 0 auto 34px; }
.booking .deco {
  position: absolute; font-family: var(--font-display); font-weight: 300;
  font-size: 28vw; color: rgba(255,255,255,.06);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; user-select: none; letter-spacing: .1em;
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); }
.footer .section { padding-block: clamp(64px, 8vw, 96px); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; }
.foot-brand .mark { font-family: var(--font-display); font-weight: 300; font-size: 34px; letter-spacing: .12em; }
.foot-brand .mark b { color: var(--coral); font-weight: 300; }
.foot-brand .sub { font-family: var(--font-display); font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(246,239,230,.45); margin-top: 4px; }
.foot-brand p { color: rgba(246,239,230,.6); margin-top: 20px; max-width: 28ch; font-size: 15px; }
.foot-col h4 {
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--coral); margin-bottom: 20px;
}
.foot-col ul li { margin-bottom: 12px; }
.foot-col a, .foot-col li { color: rgba(246,239,230,.68); font-size: 15px; transition: color .3s; }
.foot-col a:hover { color: var(--cream); }
.hours-row { display: flex; justify-content: space-between; gap: 16px; color: rgba(246,239,230,.68); font-size: 14px; margin-bottom: 10px; }
.hours-row span:last-child { color: var(--cream); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(246,239,230,.2);
  display: grid; place-items: center; transition: .4s var(--ease);
}
.socials a:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-3px); }
.foot-bottom {
  border-top: 1px solid rgba(246,239,230,.12); padding-block: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: rgba(246,239,230,.45); font-size: 13px;
}

/* Hero content is always immediately visible — no animation delay */
.hero-anim { opacity: 1; transform: none; }

/* ============================================================
   Scroll reveal (below-fold sections)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-anim { animation: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav, .header .btn.desk { display: none; }
  .burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 110px; }
  .hero-visual { aspect-ratio: 16/13; border-radius: 200px 200px 14px 14px; max-height: 60vh; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 460px; }
  .about-visual .float { right: 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 620px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gal-item.wide { grid-column: span 2; }
  .svc { grid-template-columns: 56px 1fr; gap: 14px; row-gap: 10px; padding: 20px; }
  .svc-thumb { width: 56px; height: 56px; }
  .svc-desc { grid-column: 1 / -1; }
  .svc-from { grid-column: 1; text-align: left; }
  .svc-go { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}
