/* ═══════════════════════════════════
   VARIABLES
═══════════════════════════════════ */
:root {
  --cream:       #fff5f7;
  --warm-white:  #ffffff;
  --sage:        #c4637a;
  --sage-light:  #f5d0d9;
  --rose:        #e8909e;
  --rose-light:  #fde0e7;
  --gold:        #c4637a;
  --gold-light:  #e8909e;
  --charcoal:    #1a1a1a;
  --mid:         #333333;
  --soft:        #888888;
  --border:      rgba(196,99,122,0.16);
  --shadow:      0 20px 60px rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════
   RESET
═══════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════
   UTILITY
═══════════════════════════════════ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title strong { font-weight: 600; font-style: normal; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--left.visible, .reveal--right.visible { transform: translateX(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  padding: 1rem 2.8rem;
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.btn-ghost {
  padding: 1rem 2.8rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}
.btn-ghost:hover { color: white; }
.btn-ghost:hover::before { transform: translateX(0); }
.btn-ghost--dark {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost--dark::before { background: rgba(255,255,255,0.1); }
.btn-ghost--dark:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo .logo-flourish { color: var(--gold); }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: white; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.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 {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--charcoal);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.7rem 2rem;
}

/* ═══════════════════════════════════
   S1 — HERO
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(196,99,122,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(245,208,217,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(196,99,122,0.05) 0%, transparent 70%);
}
.hero-petals {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.petal {
  position: absolute;
  font-size: 1rem;
  opacity: 0;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.12; }
  92%  { opacity: 0.12; }
  100% { transform: translateY(-12vh) rotate(360deg); opacity: 0; }
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  animation: fadeUp 1s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
  animation: fadeUp 1s 0.18s ease both;
  max-width: 800px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-title strong { font-weight: 600; font-style: normal; }
.hero-divider {
  color: var(--gold);
  letter-spacing: 0.5em;
  font-size: 0.9rem;
  margin: 1.4rem 0;
  animation: fadeUp 1s 0.32s ease both;
  opacity: 0.7;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  font-style: italic;
  color: var(--mid);
  max-width: 660px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
  animation: fadeUp 1s 0.42s ease both;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  animation: fadeUp 1s 0.54s ease both;
}
.hero-note {
  font-size: 0.78rem;
  color: var(--soft);
  letter-spacing: 0.05em;
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s 1s ease both;
  cursor: pointer;
}
.scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{ opacity:0.35; } 50%{ opacity:1; } }

/* ═══════════════════════════════════
   S2 — EMOTIONAL RECOGNITION
═══════════════════════════════════ */
.recognition {
  padding: 6rem 2rem;
  background: var(--warm-white);
}
.recognition-body {
  max-width: 720px;
  margin: 3rem auto 0;
}
.recognition-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--mid);
  line-height: 1.75;
  margin-top: 1.5rem;
}
.recognition-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
}
.recognition-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.recognition-item.visible { opacity:1; transform:translateX(0); }
.recognition-item:hover .ri-dot { background: var(--gold); transform: scale(1.4); }
.ri-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 0.45rem;
  transition: all 0.3s;
}
.ri-text {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}
.recognition-closing {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ═══════════════════════════════════
   S3 — TRANSFORMATION
═══════════════════════════════════ */
.transformation {
  padding: 6rem 2rem;
  background: var(--cream);
}
.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}
.transformation-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.transformation-media-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--rose-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.transformation-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.transformation-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.transformation-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  column-gap: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.transformation-line:last-child { border-bottom: none; }
.transformation-line.visible { opacity: 1; transform: translateY(0); }
.tl-from { color: var(--soft); font-style: italic; text-align: right; }
.tl-arrow { color: var(--gold); font-size: 1.1rem; text-align: center; }
.tl-to { color: var(--charcoal); font-weight: 500; text-align: left; }
.tl-to--full { grid-column: 1 / -1; text-align: center; }

/* ═══════════════════════════════════
   S4 — WHY SURAIYA
═══════════════════════════════════ */
.why-suraiya {
  padding: 6rem 2rem;
  background: var(--warm-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.why-portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.why-portrait-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--rose-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.why-portrait-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(250,246,240,0.93);
  padding: 1.2rem 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.5;
  backdrop-filter: blur(4px);
}
.why-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.credential-tag {
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  background: white;
}
.why-bio {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.9;
}
.why-bio + .why-bio { margin-top: 1rem; }
.why-bio em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
}

/* ═══════════════════════════════════
   S5 — HOW COACHING WORKS
═══════════════════════════════════ */
.how-it-works {
  padding: 6rem 2rem;
  background: var(--cream);
}
.how-it-works .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  cursor: default;
}
.process-step:first-child { border-top: 1px solid var(--border); }
.process-step.visible { opacity:1; transform:translateY(0); }
.process-step:hover .process-num { color: var(--gold); }
.process-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.2rem;
  gap: 0.5rem;
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  transition: color 0.35s;
}
.process-icon { font-size: 1.1rem; }
.process-content { padding: 0.2rem 0; }
.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.process-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════
   S6 — TESTIMONIALS
═══════════════════════════════════ */
.testimonials {
  padding: 6rem 2rem;
  background: var(--warm-white);
}
.testimonials .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.35s ease;
  cursor: default;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: rgba(196,99,122,0.35);
}
.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.7;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--charcoal);
  line-height: 1.7;
  flex: 1;
}
.testimonial-outcomes {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.testimonial-outcome {
  font-size: 0.78rem;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.testimonial-outcome::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.05rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--rose-light));
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}
.testimonial-avatar img { width:100%; height:100%; object-fit:cover; }
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--soft);
  margin-top: 0.1rem;
}

/* ── EMPTY TESTIMONIALS STATE ── */
.testimonials-empty {
  text-align: center;
  padding: 3rem;
  color: var(--soft);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

/* ═══════════════════════════════════
   S7 — CTA
═══════════════════════════════════ */
.cta-section {
  padding: 7rem 2rem;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(196,99,122,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(245,208,217,0.08) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section .section-tag { color: var(--gold-light); }
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.cta-headline em { color: var(--gold-light); font-style: italic; }
.cta-headline strong { font-weight: 600; font-style: normal; }
.cta-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.cta-explore {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  display: inline-flex;
}
.cta-explore-label {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.4rem;
  display: block;
}
.cta-explore-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.cta-explore-item::before {
  content: '✿';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.05rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.cta-secondary {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.3s;
}
.cta-secondary:hover { color: rgba(255,255,255,0.6); }
.cta-divider {
  color: var(--gold);
  letter-spacing: 0.5em;
  font-size: 0.85rem;
  margin: 2rem 0;
  opacity: 0.3;
}

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact-section {
  padding: 6rem 2rem;
  background: #111111;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-section .section-tag { color: var(--gold-light); }
.contact-section .section-title { color: white; }
.contact-intro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 1.2rem;
}
.contact-email-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(196,99,122,0.25);
  color: var(--gold-light);
  font-size: 0.88rem;
  transition: all 0.3s;
}
.contact-email-link:hover {
  background: rgba(196,99,122,0.08);
  border-color: var(--gold);
}
.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-link {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.form-input, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: white;
  padding: 0.9rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-error { font-size: 0.75rem; color: #e8a090; margin-top: 0.3rem; display: none; }
.form-submit {
  padding: 0.95rem 2.4rem;
  background: var(--gold);
  border: none;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-message {
  display: none;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(196,99,122,0.35);
  color: var(--sage-light);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-top: 1rem;
}
.form-message.error {
  border-color: rgba(232,160,144,0.35);
  color: #e8a090;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: #0d0d0d;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.25);
}
.footer-logo .logo-flourish { color: var(--gold); opacity: 0.6; }
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.13);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 8rem 1.5rem 5rem; }

  .why-grid,
  .contact-grid,
  .transformation-grid { grid-template-columns: 1fr; gap: 3rem; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .process-step { grid-template-columns: 48px 1fr; gap: 1.2rem; }
  .process-num  { font-size: 1.8rem; }

  .transformation-line { grid-template-columns: 1fr; row-gap: 0.3rem; text-align: center; }
  .tl-from, .tl-to { text-align: center; }

  section, .recognition, .transformation, .why-suraiya,
  .how-it-works, .testimonials, .cta-section, .contact-section {
    padding: 4.5rem 1.5rem;
  }

  .container { padding: 0 1.2rem; }
  .why-portrait { max-height: 380px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.6rem, 10vw, 3.5rem); }
  .transform-col { padding: 2rem 1.5rem; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .cta-section { padding: 5rem 1.5rem; }
}

/* ═══════════════════════════════════
   WP ALIGNMENT
═══════════════════════════════════ */
.wp-block-image { margin: 1.5rem 0; }
.alignleft  { float:left;  margin-right:1.5rem; margin-bottom:1rem; }
.alignright { float:right; margin-left:1.5rem;  margin-bottom:1rem; }
.aligncenter { display:block; margin-left:auto; margin-right:auto; }

/* ═══════════════════════════════════
   ADMIN BAR FIX
   WordPress adds 32px bar at top —
   offset our fixed nav so it doesn't overlap.
═══════════════════════════════════ */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

/* ═══════════════════════════════════
   BLOG — SHARED
═══════════════════════════════════ */
.interior-page {
  padding-top: 80px;
  min-height: 80vh;
}
.admin-bar .interior-page { padding-top: 112px; }

/* Page header banner */
.page-banner {
  background: var(--cream);
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-banner .section-tag { margin-bottom: 0.8rem; }
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}
.page-banner h1 em { color: var(--gold); font-style: italic; }
.page-banner .banner-desc {
  font-size: 0.95rem;
  color: var(--mid);
  margin-top: 0.8rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════
   BLOG — POST CARDS (archive/home)
═══════════════════════════════════ */
.blog-section {
  padding: 5rem 2rem;
  background: var(--warm-white);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.post-card {
  background: white;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}
.post-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.post-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.post-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-image-placeholder {
  font-size: 2.5rem;
  opacity: 0.2;
}
.post-card-body {
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.post-category {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,99,122,0.08);
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(196,99,122,0.2);
}
.post-date {
  font-size: 0.72rem;
  color: var(--soft);
  letter-spacing: 0.04em;
}
.post-read-time {
  font-size: 0.72rem;
  color: var(--soft);
}
.post-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.post-card:hover .post-card-title { color: var(--gold); }
.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.4rem;
}
.post-read-more {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
  align-self: flex-start;
}
.post-card:hover .post-read-more { gap: 0.7rem; }

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--mid);
  background: white;
  transition: all 0.3s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.blog-pagination .prev, .blog-pagination .next {
  width: auto;
  padding: 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   BLOG — SINGLE POST
═══════════════════════════════════ */
.single-hero {
  padding: 5.5rem 2rem 3rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.admin-bar .single-hero { padding-top: 6rem; }
.single-hero-inner { max-width: 820px; margin: 0 auto; }
.single-hero .post-meta { margin-bottom: 1.2rem; }
.single-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
}
.single-post-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--mid);
  margin-top: 1rem;
  line-height: 1.6;
}
.single-featured-image {
  max-width: 960px;
  margin: 3rem auto 0;
  overflow: hidden;
}
.single-featured-image img {
  width: 100%;
  display: block;
}

/* Post body */
.single-content-wrap {
  padding: 4rem 2rem 5rem;
  background: var(--warm-white);
}
.entry-content {
  max-width: 720px;
  margin: 0 auto;
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.9;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--charcoal);
  margin: 2.5rem 0 0.8rem;
  line-height: 1.2;
}
.entry-content h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.entry-content h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
.entry-content h4 { font-size: 1.15rem; }
.entry-content p  { margin-bottom: 1.4rem; }
.entry-content ul,
.entry-content ol {
  margin: 1.2rem 0 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.entry-content li { line-height: 1.7; }
.entry-content ul li { list-style: none; padding-left: 1.2rem; position: relative; }
.entry-content ul li::before {
  content: '✿';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.3rem;
}
.entry-content ol { list-style: decimal; }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  background: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--charcoal);
  line-height: 1.6;
}
.entry-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.entry-content a:hover { opacity: 0.75; }
.entry-content img { border-radius: 0; margin: 1.5rem 0; }
.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}
.entry-content strong { font-weight: 500; color: var(--charcoal); }

/* Post tags */
.post-tags {
  max-width: 720px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  background: white;
  transition: all 0.3s;
}
.post-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Post navigation */
.post-navigation {
  max-width: 720px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: white;
  transition: all 0.3s;
}
.post-nav-link:hover { border-color: var(--gold); transform: translateY(-2px); }
.post-nav-link--next { text-align: right; }
.post-nav-direction {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.35;
}

/* ═══════════════════════════════════
   BLOG — COMMENTS
═══════════════════════════════════ */
.comments-area {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.comments-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.comment-list { display: flex; flex-direction: column; gap: 0; }
.comment {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.comment-author-name {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.comment-meta-line {
  font-size: 0.75rem;
  color: var(--soft);
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
}
.comment-body p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
}
.comment-reply-link {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.6rem;
  display: inline-block;
}
.no-comments {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--soft);
  margin-bottom: 2rem;
}

/* Comment form */
.comment-respond { margin-top: 2.5rem; }
.comment-reply-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comment-form label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
  display: block;
  margin-bottom: 0.4rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--gold); }
.comment-form textarea { min-height: 130px; resize: vertical; }
.comment-form .form-submit input[type="submit"] {
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  border: none;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.comment-form .form-submit input:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════
   SEARCH
═══════════════════════════════════ */
.search-form-wrap {
  display: flex;
  gap: 0;
  margin: 2rem 0 3rem;
  max-width: 560px;
}
.search-form-wrap input[type="search"] {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-right: none;
  background: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
}
.search-form-wrap input:focus { border-color: var(--gold); }
.search-form-wrap button {
  padding: 0.9rem 1.4rem;
  background: var(--gold);
  border: none;
  color: white;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s;
}
.search-form-wrap button:hover { background: var(--charcoal); }

/* ── RESPONSIVE — BLOG ── */
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .post-navigation { grid-template-columns: 1fr; }
  .single-hero { padding: 5rem 1.5rem 2.5rem; }
  .single-content-wrap { padding: 3rem 1.5rem 4rem; }
  .blog-section { padding: 4rem 1.5rem; }
  .page-banner { padding: 4rem 1.5rem 2.5rem; }
}
