/* ============================================================
   Wejdan Zawari — site styles
   Design tokens extracted from the media kit
   ============================================================ */
:root{
  --ivory:#F6F2EB;
  --ivory-2:#FAF7F1;
  --beige-band:#EAE1D4;
  --beige-tint:#EFE6DA;
  --card:#FCFAF6;
  --hairline:#E3D9CB;
  --terracotta:#BE7B64;
  --terracotta-deep:#A2624C;
  --rose:#C98E7C;
  --ink:#33302B;
  --ink-soft:#4E4942;
  --muted:#8C7B6B;

  --serif:'Playfair Display', Georgia, serif;
  --sans:'Montserrat', system-ui, sans-serif;
  --ar-display:'Aref Ruqaa', serif;
  --ar-body:'Tajawal', system-ui, sans-serif;

  --maxw:1140px;
  --radius:16px;
  --radius-sm:10px;
  --shadow:0 18px 50px -28px rgba(51,48,43,.45);
  --ease:cubic-bezier(.22,.61,.36,1);
}

/* Language-aware font families */
html:lang(ar){ --font-head:var(--ar-display); --font-body:var(--ar-body); }
html:lang(en){ --font-head:var(--serif);      --font-body:var(--sans); }

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
html:lang(ar) .script{ font-style:normal; }  /* Aref Ruqaa has no italic */

body{
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font-family:var(--font-body);
  font-weight:400;
  line-height:1.75;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:24px; }

/* ---------- Typography helpers ---------- */
.kicker{
  font-family:var(--sans);
  font-size:11px;
  font-weight:500;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--terracotta);
  margin:0 0 14px;
}
html:lang(ar) .kicker{ font-family:var(--ar-body); letter-spacing:.06em; font-weight:700; }

.section-title{
  font-family:var(--font-head);
  font-weight:700;
  color:var(--ink);
  line-height:1.08;
  margin:0;
  font-size:clamp(30px,5vw,46px);
}
.section-title.script{ font-style:italic; }
html:lang(ar) .section-title{ font-weight:700; }

.section-sub{
  color:var(--muted);
  margin:10px 0 0;
  font-size:15px;
}

.body{ color:var(--ink-soft); margin:0 0 18px; max-width:54ch; }
.body:last-of-type{ margin-bottom:0; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--sans);
  font-size:12.5px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  line-height:1; padding:14px 28px; border-radius:999px; cursor:pointer;
  border:1.5px solid transparent; transition:all .25s var(--ease);
  white-space:nowrap;
}
html:lang(ar) .btn{ font-family:var(--ar-body); letter-spacing:0; font-weight:500; text-transform:none; font-size:14px; padding-block:13px; }
.btn-solid{ background:var(--terracotta); color:#fff; border-color:var(--terracotta); }
.btn-solid:hover{ background:var(--terracotta-deep); border-color:var(--terracotta-deep); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--terracotta-deep); border-color:var(--terracotta); }
.btn-ghost:hover{ background:var(--terracotta); color:#fff; transform:translateY(-2px); }
.btn-block{ width:100%; }

/* ---------- Skip link ---------- */
.skip-link{
  position:absolute; inset-inline-start:-9999px; top:0; z-index:200;
  background:var(--terracotta-deep); color:#fff; padding:10px 18px; border-radius:0 0 8px 8px;
  font-family:var(--sans); font-size:13px;
}
.skip-link:focus{ inset-inline-start:16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(246,242,235,.82);
  backdrop-filter:saturate(140%) blur(12px);
  -webkit-backdrop-filter:saturate(140%) blur(12px);
  transition:box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled{ box-shadow:0 1px 0 var(--hairline), 0 10px 30px -24px rgba(51,48,43,.4); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:18px; height:74px; }

.wordmark{
  font-family:var(--font-head); font-weight:700; font-size:22px; color:var(--ink);
  letter-spacing:.01em; line-height:1; white-space:nowrap;
}
html:lang(ar) .wordmark{ font-size:26px; }

.nav-desktop{ display:flex; gap:30px; }
.nav-desktop a{
  font-family:var(--sans); font-size:12px; font-weight:500; letter-spacing:.14em;
  text-transform:uppercase; color:var(--ink-soft); position:relative; padding:6px 0;
  transition:color .2s var(--ease);
}
html:lang(ar) .nav-desktop a{ font-family:var(--ar-body); letter-spacing:0; font-weight:500; text-transform:none; font-size:15px; }
.nav-desktop a::after{
  content:''; position:absolute; inset-inline-start:0; bottom:0; height:1.5px; width:0;
  background:var(--terracotta); transition:width .25s var(--ease);
}
.nav-desktop a:hover{ color:var(--terracotta-deep); }
.nav-desktop a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:14px; }
.lang-toggle{
  display:inline-flex; align-items:center; justify-content:center; line-height:1;
  font-family:var(--sans); font-size:12px; font-weight:600; letter-spacing:.06em;
  background:transparent; color:var(--ink); border:1.5px solid var(--hairline);
  border-radius:999px; width:46px; height:40px; cursor:pointer; transition:all .2s var(--ease);
}
.lang-toggle:hover{ border-color:var(--terracotta); color:var(--terracotta-deep); }
html:lang(ar) .lang-toggle{ font-family:var(--sans); }

.menu-btn{ display:none; background:none; border:none; color:var(--ink); cursor:pointer; padding:4px; }

.mobile-menu{ border-top:1px solid var(--hairline); background:var(--ivory-2); }
.mobile-menu nav{ display:flex; flex-direction:column; padding:8px 24px 16px; }
.mobile-menu a{
  font-family:var(--font-body); padding:12px 4px; color:var(--ink-soft);
  border-bottom:1px solid var(--hairline); font-size:15px;
}
.mobile-menu a:last-child{ border-bottom:none; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; overflow:hidden; padding:clamp(36px,7vw,72px) 0 clamp(56px,8vw,92px); }
.hero .container{ position:relative; z-index:1; }
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px,5vw,64px);
  align-items:center;
}
.hero-kicker{ margin-bottom:18px; }
.hero-name{
  font-family:var(--font-head); font-weight:700; color:var(--ink);
  font-size:clamp(48px,8.5vw,86px); line-height:.98; margin:0;
  letter-spacing:-.01em;
}
html:lang(ar) .hero-name{ font-size:clamp(54px,9vw,94px); line-height:1.1; letter-spacing:0; }
.hero-role{
  font-family:var(--font-head); font-style:italic; color:var(--terracotta-deep);
  font-size:clamp(17px,2.4vw,22px); margin:14px 0 0;
}
html:lang(ar) .hero-role{ font-family:var(--ar-body); font-style:normal; font-weight:500; }
.hero-intro{ color:var(--ink-soft); max-width:46ch; margin:20px 0 26px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

.pills{ display:flex; flex-wrap:wrap; gap:9px; margin-top:30px; }
.pill{
  display:inline-flex; align-items:center; line-height:1;
  font-family:var(--sans); font-size:11px; font-weight:500; letter-spacing:.08em;
  text-transform:uppercase; color:var(--terracotta-deep);
  background:var(--beige-tint); border:1px solid var(--hairline);
  border-radius:999px; padding:9px 16px;
}
html:lang(ar) .pill{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:13px; font-weight:500; }

/* Arched portrait */
.hero-photo{ position:relative; }
.arch-frame{
  position:relative;
  border-top-left-radius:50% 42%;
  border-top-right-radius:50% 42%;
  border-bottom-left-radius:18px;
  border-bottom-right-radius:18px;
  overflow:hidden;
  border:1px solid var(--hairline);
  box-shadow:var(--shadow);
  background:var(--beige-tint);
  aspect-ratio:4/5;
}
.arch-frame img{ width:100%; height:100%; object-fit:cover; object-position:center 18%; }
.photo-badge{
  position:absolute; bottom:18px; left:0; right:0; margin-inline:auto; width:max-content; line-height:1;
  font-family:var(--sans); font-size:10.5px; font-weight:500; letter-spacing:.12em; text-transform:uppercase;
  color:#fff; background:rgba(51,48,43,.42); backdrop-filter:blur(4px);
  border-radius:999px; padding:9px 18px; white-space:nowrap;
}
html:lang(ar) .photo-badge{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:13px; }

/* ============================================================
   SECTIONS / generic
   ============================================================ */
.section{ padding:clamp(56px,9vw,104px) 0; }
.band{ background:var(--beige-band); }
.section-head{ margin-bottom:clamp(34px,5vw,54px); }
.section-head.center{ text-align:center; }
.section-head.center .kicker{ display:block; }

/* underline accent under titles */
.section-head.center .section-title{ position:relative; display:inline-block; padding-bottom:16px; }
.section-head.center .section-title::after{
  content:''; position:absolute; left:0; right:0; bottom:0;
  margin-inline:auto; width:54px; height:2px; background:var(--terracotta);
}

/* ---------- About ---------- */
.about-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(28px,5vw,64px); align-items:center; }
.about-photo{ position:relative; max-width:420px; }
.about-frame{
  position:relative; z-index:1; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--hairline); box-shadow:var(--shadow); aspect-ratio:3/4;
}
.about-frame img{ width:100%; height:100%; object-fit:cover; }
.about-deco{
  position:absolute; z-index:0; inset-block-start:22px; inset-inline-start:-20px;
  width:100%; height:100%; border:1.5px solid var(--terracotta);
  border-radius:var(--radius); opacity:.45;
}
.about-text .section-title{ margin:6px 0 22px; position:relative; padding-bottom:16px; }
.about-text .section-title::after{
  content:''; position:absolute; inset-inline-start:0; bottom:0; width:54px; height:2px; background:var(--terracotta);
}
.roles{
  margin-top:24px; font-family:var(--sans); font-size:12px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--muted); font-weight:500;
}
html:lang(ar) .roles{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:14px; }

/* ---------- Connect / social ---------- */
.social-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.social-card{
  display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center;
  background:var(--card); border:1px solid var(--hairline); border-radius:var(--radius);
  padding:30px 18px; transition:transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.social-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--rose); }
.social-ic{
  width:56px; height:56px; border-radius:50%; display:grid; place-items:center;
  background:var(--beige-tint); color:var(--terracotta-deep); transition:all .28s var(--ease);
}
.social-card:hover .social-ic{ background:var(--terracotta); color:#fff; }
.social-name{ font-family:var(--font-head); font-size:18px; font-weight:600; color:var(--ink); }
html:lang(ar) .social-name{ font-family:var(--ar-body); font-weight:700; }
.social-handle{ font-family:var(--sans); font-size:12.5px; color:var(--muted); letter-spacing:.02em; direction:ltr; }

/* ---------- Content / gallery ---------- */
.gallery{
  display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:14px;
}
.g-item{
  border:none; padding:0; cursor:pointer; overflow:hidden; border-radius:var(--radius-sm);
  background:var(--beige-tint); position:relative; box-shadow:0 8px 26px -22px rgba(51,48,43,.6);
}
.g-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.g-item::after{
  content:''; position:absolute; inset:0; background:rgba(162,98,76,0); transition:background .3s var(--ease);
}
.g-item:hover img{ transform:scale(1.06); }
.g-item:hover::after{ background:rgba(162,98,76,.12); }
.g-tall{ grid-row:span 2; }
.g-wide{ grid-column:span 2; }
.content-cta{ text-align:center; margin-top:34px; }

/* ---------- Collaborations ---------- */
.collab-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(30px,5vw,64px); align-items:center; }
.collab-text .section-title{ margin:6px 0 20px; }
.collab-text .btn{ margin-top:10px; }
.offer-list{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.offer-list li{
  display:flex; align-items:center; gap:12px;
  background:var(--card); border:1px solid var(--hairline); border-radius:var(--radius-sm);
  padding:18px 18px; font-family:var(--font-body); font-size:15px; color:var(--ink-soft);
  transition:transform .25s var(--ease), border-color .25s var(--ease);
}
.offer-list li:hover{ transform:translateY(-3px); border-color:var(--rose); }
.offer-ic{ width:40px; height:40px; flex:none; border-radius:50%; display:grid; place-items:center; background:var(--beige-tint); color:var(--terracotta-deep); }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(30px,5vw,60px); align-items:start; }
.contact-row{ display:flex; align-items:center; gap:16px; padding:16px 0; border-bottom:1px solid var(--hairline); }
.contact-info > .contact-row:first-child{ padding-top:0; }
.contact-ic{ width:46px; height:46px; flex:none; border-radius:50%; display:grid; place-items:center; background:var(--beige-tint); color:var(--terracotta-deep); transition:all .25s var(--ease); }
a.contact-row:hover .contact-ic{ background:var(--terracotta); color:#fff; }
.contact-meta{ display:flex; flex-direction:column; }
.contact-label{ font-family:var(--sans); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
html:lang(ar) .contact-label{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:13px; }
.contact-val{ font-size:15.5px; color:var(--ink); font-weight:500; }

.newsletter{ margin-top:30px; background:var(--card); border:1px solid var(--hairline); border-radius:var(--radius); padding:26px; }
.news-title{ font-family:var(--font-head); font-weight:600; font-size:21px; margin:0 0 6px; color:var(--ink); }
html:lang(ar) .news-title{ font-family:var(--ar-body); font-weight:700; }
.news-sub{ margin:0 0 16px; color:var(--muted); font-size:14px; }
.news-form{ display:flex; gap:10px; flex-wrap:wrap; }
.news-form input{ flex:1; min-width:0; }

.contact-form{ background:var(--card); border:1px solid var(--hairline); border-radius:var(--radius); padding:clamp(24px,4vw,38px); box-shadow:var(--shadow); }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--sans); font-size:11px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-bottom:8px; }
html:lang(ar) .field label{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:13px; }

input, textarea{
  width:100%; font-family:var(--font-body); font-size:15px; color:var(--ink);
  background:var(--ivory-2); border:1.5px solid var(--hairline); border-radius:10px;
  padding:13px 15px; transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input::placeholder, textarea::placeholder{ color:#b3a594; }
input:focus, textarea:focus{ outline:none; border-color:var(--terracotta); box-shadow:0 0 0 3px rgba(190,123,100,.16); }
textarea{ resize:vertical; min-height:110px; }

.form-note{ font-size:13.5px; margin:14px 0 0; min-height:1em; }
.form-note.ok{ color:#3f7d52; }
.form-note.err{ color:#b3503e; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--beige-band); border-top:1px solid var(--hairline); padding:54px 0 40px; }
.footer-inner{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px; }
.footer-mark{ font-size:26px; }
.footer-tagline{ font-family:var(--sans); font-size:11.5px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin:0; }
html:lang(ar) .footer-tagline{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:14px; }
.footer-social{ display:flex; gap:12px; margin-top:4px; }
.footer-social a{
  width:42px; height:42px; border-radius:50%; display:grid; place-items:center;
  border:1px solid var(--hairline); color:var(--terracotta-deep); background:var(--ivory);
  transition:all .25s var(--ease);
}
.footer-social a:hover{ background:var(--terracotta); color:#fff; border-color:var(--terracotta); transform:translateY(-3px); }
.footer-rights{ font-size:12.5px; color:var(--muted); margin:8px 0 0; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{
  position:fixed; inset:0; z-index:300; background:rgba(40,36,31,.9);
  display:grid; place-items:center; padding:24px;
  opacity:0; animation:lbIn .25s var(--ease) forwards;
}
.lightbox[hidden]{ display:none; }
@keyframes lbIn{ to{ opacity:1; } }
.lightbox img{ max-width:90vw; max-height:86vh; border-radius:12px; box-shadow:0 30px 80px -30px rgba(0,0,0,.7); }
.lb-close{
  position:absolute; top:22px; inset-inline-end:24px; width:48px; height:48px;
  border-radius:50%; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.3);
  color:#fff; cursor:pointer; display:grid; place-items:center; transition:background .2s var(--ease);
}
.lb-close:hover{ background:rgba(255,255,255,.25); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:980px){
  .nav-desktop{ display:none; }
  .header-cta{ display:none; }
  .menu-btn{ display:inline-flex; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-photo{ max-width:440px; margin-inline:auto; order:-1; }
  .about-grid{ grid-template-columns:1fr; }
  .about-photo{ order:-1; margin-inline:auto; }
  .collab-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .social-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .container{ padding-inline:18px; }
  .gallery{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
  .g-wide{ grid-column:span 2; }
  .g-tall{ grid-row:span 1; }
  .offer-list{ grid-template-columns:1fr; }
  .news-form{ flex-direction:column; }
  .news-form .btn{ width:100%; }
  .hero-cta .btn{ flex:1; }
}

@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
}

/* ============================================================
   BEAUTIFICATION LAYER
   ============================================================ */

/* ---- Scroll progress bar ---- */
.scroll-progress{
  position:fixed; top:0; inset-inline:0; height:3px; width:0;
  background:linear-gradient(90deg, var(--terracotta), var(--rose));
  z-index:200; transition:width .12s linear;
}

/* ---- Soft decorative glows ---- */
.blob{ position:absolute; border-radius:50%; pointer-events:none; z-index:0; }
.blob-hero{
  width:560px; height:560px; background:var(--rose); opacity:.16; filter:blur(90px);
  inset-block-start:-150px; inset-inline-end:-110px;
}

/* ---- Layered arch outline behind hero portrait ---- */
.hero-photo .arch-frame{ position:relative; z-index:1; }
.arch-outline{
  position:absolute; z-index:0; inset-block-start:26px; inset-inline-start:-24px;
  width:100%; height:100%; border:1.5px solid var(--terracotta); opacity:.45;
  border-top-left-radius:50% 42%; border-top-right-radius:50% 42%;
  border-bottom-left-radius:18px; border-bottom-right-radius:18px;
}

/* ---- Scroll cue ---- */
.scroll-cue{
  position:absolute; bottom:18px; left:0; right:0; margin-inline:auto; z-index:2;
  width:26px; height:42px; border:1.5px solid var(--muted); border-radius:999px;
  display:flex; justify-content:center; padding-top:8px; opacity:.7;
  transition:opacity .2s var(--ease);
}
.scroll-cue:hover{ opacity:1; }
.scroll-cue-dot{ width:5px; height:5px; border-radius:50%; background:var(--terracotta); animation:scrollDot 1.7s var(--ease) infinite; }
@keyframes scrollDot{ 0%{ transform:translateY(0); opacity:1; } 70%{ transform:translateY(15px); opacity:0; } 100%{ opacity:0; } }

/* ---- Heading kicker flourishes ---- */
.section-head.center .kicker{ display:flex; justify-content:center; align-items:center; gap:12px; }
.section-head.center .kicker::before,
.section-head.center .kicker::after{ content:''; width:26px; height:1px; background:var(--terracotta); opacity:.55; }
.about-text .kicker, .collab-text .kicker{ display:inline-flex; align-items:center; gap:11px; }
.about-text .kicker::before, .collab-text .kicker::before{ content:''; width:24px; height:1px; background:var(--terracotta); opacity:.7; }

/* ---- Gallery hover overlay ---- */
.g-zoom{ position:absolute; inset:0; z-index:2; display:grid; place-items:center; opacity:0; transition:opacity .3s var(--ease); }
.g-zoom svg{ width:46px; height:46px; padding:12px; border-radius:50%; background:rgba(190,123,100,.94); color:#fff; box-shadow:0 10px 24px -10px rgba(51,48,43,.6); transform:scale(.85); transition:transform .3s var(--ease); }
.g-item:hover .g-zoom{ opacity:1; }
.g-item:hover .g-zoom svg{ transform:scale(1); }
.g-item:hover::after{ background:rgba(162,98,76,.22); }

/* ---- Social card top accent ---- */
.social-card{ position:relative; overflow:hidden; }
.social-card::before{
  content:''; position:absolute; inset-block-start:0; inset-inline:0; height:3px;
  background:var(--terracotta); transform:scaleX(0); transition:transform .32s var(--ease);
}
.social-card:hover::before{ transform:scaleX(1); }

/* ---- Numbered collaboration offers ---- */
.offer-list{ counter-reset:offer; }
.offer-list li{ position:relative; }
.offer-list li::after{
  counter-increment:offer; content:counter(offer, decimal-leading-zero);
  position:absolute; inset-block-start:11px; inset-inline-end:15px;
  font-family:var(--serif); font-weight:600; font-size:13px; color:var(--rose); opacity:.75;
}

/* ---- Newsletter accent ---- */
.newsletter{ position:relative; overflow:hidden; }
.newsletter::before{ content:''; position:absolute; inset-block-start:0; inset-inline:0; height:3px; background:linear-gradient(90deg, var(--terracotta), var(--rose)); }

/* ---- Collaboration band decorative ring ---- */
.collab{ position:relative; overflow:hidden; }
.collab::before{
  content:''; position:absolute; width:300px; height:300px; border:1px solid var(--terracotta);
  border-radius:50%; opacity:.13; inset-block-start:-120px; inset-inline-end:-70px; pointer-events:none;
}

/* ---- Contact decorative glow ---- */
.contact{ position:relative; overflow:hidden; }
.contact > .container{ position:relative; z-index:1; }
.contact::before{
  content:''; position:absolute; width:380px; height:380px; background:var(--rose); opacity:.10;
  filter:blur(85px); border-radius:50%; inset-block-end:-130px; inset-inline-start:-110px; pointer-events:none;
}

/* ---- Footer polish ---- */
.footer-orn{ width:9px; height:9px; background:var(--terracotta); transform:rotate(45deg); border-radius:2px; margin-bottom:6px; }
.footer-nav{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px 24px; margin:6px 0 2px; }
.footer-nav a{
  font-family:var(--sans); font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-soft); transition:color .2s var(--ease);
}
html:lang(ar) .footer-nav a{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:14px; }
.footer-nav a:hover{ color:var(--terracotta-deep); }
.footer-rights{ margin-top:20px; padding-top:20px; border-top:1px solid var(--hairline); width:min(100%, 720px); text-align:center; }

/* ---- Back-to-top ---- */
.to-top{
  position:fixed; bottom:24px; inset-inline-end:24px; z-index:80;
  width:46px; height:46px; border-radius:50%; background:var(--terracotta); color:#fff;
  border:none; display:grid; place-items:center; cursor:pointer; box-shadow:var(--shadow);
  opacity:0; pointer-events:none; transform:translateY(12px); transition:all .3s var(--ease);
}
.to-top.show{ opacity:1; pointer-events:auto; transform:none; }
.to-top:hover{ background:var(--terracotta-deep); transform:translateY(-3px); }

/* ---- Beautification responsive ---- */
@media (max-width:980px){
  .scroll-cue{ display:none; }
  .arch-outline{ inset-inline-start:-16px; inset-block-start:18px; }
  .about-deco{ inset-inline-start:-14px; inset-block-start:16px; }
}
@media (max-width:560px){
  .to-top{ bottom:18px; inset-inline-end:18px; width:42px; height:42px; }
}

/* ============================================================
   CONSULTATION PAGE
   ============================================================ */
.nav-desktop a.active{ color:var(--terracotta-deep); }
.nav-desktop a.active::after{ width:100%; }

.consult-title{ font-size:clamp(36px,5.4vw,60px); line-height:1.12; }
html:lang(en) .consult-title{ font-size:clamp(36px,5.4vw,60px); }
html:lang(ar) .consult-title{ font-size:clamp(40px,6vw,66px); line-height:1.22; }
.consult-hero .hero-intro{ max-width:52ch; margin:16px 0 0; }
.consult-hero .hero-intro + .hero-intro{ margin-top:14px; }
.consult-hero .hero-cta{ margin-top:26px; }

/* Topics grid */
.talk-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; max-width:860px; margin-inline:auto; }
.talk-card{
  display:flex; align-items:center; gap:16px;
  background:var(--card); border:1px solid var(--hairline); border-radius:var(--radius);
  padding:22px 24px; transition:transform .25s var(--ease), border-color .25s var(--ease);
}
.talk-card:hover{ transform:translateY(-3px); border-color:var(--rose); }
.talk-ic{ flex:none; width:46px; height:46px; border-radius:50%; display:grid; place-items:center; background:var(--beige-tint); color:var(--terracotta-deep); }
.talk-txt{ font-size:15.5px; color:var(--ink-soft); line-height:1.5; }

/* Pricing tiers */
.tier-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; max-width:760px; margin-inline:auto; align-items:stretch; }
.tier{
  position:relative; display:flex; flex-direction:column; text-align:center;
  background:var(--card); border:1px solid var(--hairline); border-radius:var(--radius);
  padding:36px 30px 30px; transition:transform .28s var(--ease), box-shadow .28s var(--ease);
}
.tier:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.tier-featured{ border:1.5px solid var(--terracotta); box-shadow:var(--shadow); }
.tier-badge{
  position:absolute; top:-13px; left:0; right:0; margin-inline:auto; width:max-content;
  background:var(--terracotta); color:#fff; border-radius:999px; padding:6px 16px; line-height:1;
  font-family:var(--sans); font-size:10.5px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
}
html:lang(ar) .tier-badge{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:13px; padding:7px 16px; }
.tier-name{ font-family:var(--font-head); font-size:20px; font-weight:600; color:var(--ink); margin:0 0 12px; }
html:lang(ar) .tier-name{ font-family:var(--ar-body); font-weight:700; }
.tier-price{ direction:ltr; display:flex; align-items:flex-start; justify-content:center; gap:3px; font-family:var(--serif); font-weight:700; font-size:56px; line-height:1; color:var(--terracotta-deep); }
.tier-cur{ font-size:26px; margin-top:9px; }
.tier-usd{ font-family:var(--sans); font-size:11px; font-weight:600; letter-spacing:.1em; color:var(--muted); margin-top:9px; }
.tier-dur{ margin:12px 0 0; font-family:var(--sans); font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
html:lang(ar) .tier-dur{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:15px; color:var(--terracotta-deep); }
.tier-desc{ flex:1; color:var(--ink-soft); font-size:14.5px; line-height:1.65; margin:16px 0 24px; }
.paypal-form{ margin-top:auto; }

.sched-note{ text-align:center; color:var(--muted); font-size:14px; line-height:1.7; max-width:560px; margin:28px auto 0; }

/* Disclaimer */
.disclaimer{
  display:flex; gap:14px; align-items:flex-start; max-width:720px; margin:32px auto 0;
  background:var(--beige-tint); border:1px solid var(--hairline); border-radius:var(--radius-sm); padding:20px 22px;
}
.disclaimer-ic{ flex:none; width:38px; height:38px; border-radius:50%; display:grid; place-items:center; background:#fff; color:var(--terracotta-deep); border:1px solid var(--hairline); }
.disclaimer-title{ margin:2px 0 6px; font-family:var(--sans); font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--terracotta-deep); }
html:lang(ar) .disclaimer-title{ font-family:var(--ar-body); letter-spacing:0; text-transform:none; font-size:14px; }
.disclaimer-text{ margin:0; color:var(--muted); font-size:13.5px; line-height:1.75; }

@media (max-width:760px){
  .talk-grid{ grid-template-columns:1fr; }
  .tier-grid{ grid-template-columns:1fr; max-width:400px; }
}

/* Women-only indicators (consultation) */
.pill-accent{ gap:7px; background:var(--terracotta); color:#fff; border-color:var(--terracotta); }
.women-note{
  display:flex; align-items:center; justify-content:center; gap:8px;
  max-width:560px; margin:20px auto 0; color:var(--terracotta-deep);
  font-family:var(--font-body); font-size:14.5px; font-weight:500;
}
.women-note svg{ flex:none; }

/* Header: 1:1 Session promoted to a prominent CTA next to "Work with me" */
.header-actions{ gap:12px; }
.header-cta{ padding-inline:22px; }

/* Header logo image */
.logo-link{ display:inline-flex; align-items:center; }
.logo-img{ height:50px; width:auto; display:block; }
@media (max-width:560px){ .logo-img{ height:40px; } }

/* ---- Conversion: whole tier card clickable + SAR pricing ---- */
.tier{ cursor:pointer; }
/* Stretched link: the booking anchor covers the entire card, so a click
   anywhere on the box opens PayPal (button still hover-highlights). */
.tier .paypal-link::after{
  content:""; position:absolute; inset:0; z-index:2; border-radius:var(--radius);
}
.tier-badge{ z-index:3; pointer-events:none; }


.currency-note{
  text-align:center; color:var(--muted); font-size:13px; line-height:1.7;
  max-width:560px; margin:20px auto 0;
}
/* The card itself lifts on hover; the anchor must NOT transform, or it would
   become the containing block for its ::after overlay and collapse it. */
.tier .paypal-link:hover{ transform:none; }


