/* ============================================================
   Shalina Kumar, LMFT — refreshed design system
   Colors, type, and components kept faithful to the original,
   refined for hierarchy, spacing, and polish.
   ============================================================ */

:root {
  /* Brand palette (sampled from original site) */
  --indigo:      #1e1658;   /* headings, deep brand navy/indigo */
  --indigo-soft: #3a3173;
  --magenta:     #b82cd1;   /* primary accent */
  --magenta-700: #9c1fb8;
  --teal:        #34b1e7;   /* secondary accent (logo) */
  --blush:       #f9eae6;   /* warm tint background */
  --blush-2:     #fbf3f7;   /* faint lavender-pink wash */

  /* Neutrals */
  --ink:    #59556a;   /* body text — muted plum-gray */
  --ink-2:  #7d7990;   /* secondary text */
  --line:   #ece8f0;   /* hairlines */
  --bg:     #ffffff;
  --bg-2:   #faf8fc;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shape */
  --radius:   16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow:    0 18px 50px -22px rgba(30,22,88,.28);
  --shadow-sm: 0 8px 24px -14px rgba(30,22,88,.30);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--magenta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--magenta-700); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--indigo);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--magenta);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: var(--pad-y) 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.btn:hover .arr { transform: translateX(5px); }

.btn-primary {
  background: linear-gradient(120deg, #a31fc4 0%, #c637bf 55%, #d94aa6 100%);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(184,44,209,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(184,44,209,.75); color:#fff; }

.btn-ghost {
  background: #fff;
  color: var(--indigo);
  box-shadow: inset 0 0 0 1.6px var(--line);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1.6px var(--magenta); color: var(--magenta); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--magenta);
}
.link-arrow .arr { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.link-arrow:hover .arr { transform: translateX(5px); }

/* ---------- Top utility bar ---------- */
.util {
  background: var(--blush);
  color: var(--indigo-soft);
  font-size: 14px;
  border-bottom: 1px solid rgba(30,22,88,.06);
}
.util .wrap { display: flex; align-items: center; gap: 28px; min-height: 46px; }
.util a { color: var(--indigo-soft); font-weight: 600; }
.util a:hover { color: var(--magenta); }
.util-item { display: inline-flex; align-items: center; gap: 9px; }
.util-item svg { width: 15px; height: 15px; color: var(--magenta); flex: none; }
.util-spacer { margin-left: auto; }
.util-social { display: inline-flex; gap: 8px; }
.util-social a {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.7); color: var(--indigo);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.util-social a:hover { background: var(--magenta); color: #fff; transform: translateY(-2px); }
.util-social svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(30,22,88,.4); background: rgba(255,255,255,.95); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }

/* Logo lockup */
.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo .mark { width: 46px; height: 46px; flex: none; }
.logo .word { display: flex; flex-direction: column; line-height: 1; }
.logo .word .name {
  font-family: var(--serif); font-weight: 700; font-size: 22px;
  color: var(--indigo); letter-spacing: .005em; white-space: nowrap;
}
.logo .word .sub {
  font-family: var(--sans); font-weight: 700; font-size: 10.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--magenta);
  margin-top: 5px; white-space: nowrap;
}

/* Primary nav */
.menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.menu a {
  position: relative;
  font-family: var(--sans); font-weight: 700; font-size: 15.5px;
  color: var(--indigo); padding: 10px 16px; border-radius: 10px;
  transition: color .2s ease; white-space: nowrap;
}
.menu a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--magenta); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.menu a:hover { color: var(--magenta); }
.menu a:hover::after { transform: scaleX(1); }
.menu a.active { color: var(--magenta); }
.menu a.active::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; align-items: center; gap: 18px; }

/* Mobile menu toggle */
.burger {
  display: none; width: 46px; height: 46px; border: none; background: transparent;
  cursor: pointer; padding: 11px; border-radius: 10px;
}
.burger span { display: block; height: 2.4px; background: var(--indigo); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.burger span + span { margin-top: 5px; }
.burger.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.title-xl { font-size: clamp(34px, 6vw, 64px); }

/* ---------- Hero slider ---------- */
.hero { position: relative; overflow: hidden; background: #2a2350; }
.hero-track { position: relative; height: clamp(480px, 64vh, 660px); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,14,48,.72) 0%, rgba(20,14,48,.45) 42%, rgba(20,14,48,.12) 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; color: #fff; }
.hero-content h1 { color: #fff; font-size: clamp(38px, 6.2vw, 74px); line-height: 1.04; margin-bottom: 28px; }
.hero-content h1 em { font-style: italic; color: #f0c7ef; }
.hero-arrows { position: absolute; z-index: 3; inset: 0; pointer-events: none; }
.hero-arrows button {
  pointer-events: auto; position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px);
  display: grid; place-items: center; transition: background .2s ease, transform .2s ease;
}
.hero-arrows button:hover { background: rgba(255,255,255,.32); }
.hero-arrows .prev { left: 18px; }
.hero-arrows .next { right: 18px; }
.hero-dots { position: absolute; z-index: 3; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: all .25s ease; }
.hero-dots button.active { background: #fff; width: 26px; border-radius: 6px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { display: flex; flex-direction: column; }
.card-media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.card:hover .card-media img { transform: scale(1.06); }
.card-media .chip {
  position: absolute; left: 14px; bottom: 14px;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.92); color: var(--magenta);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.card:hover .card-media .chip { background: var(--magenta); color: #fff; transform: translateY(-3px); }
.card h3 { font-size: 23px; margin-top: 24px; }
.card h3 a { color: var(--indigo); }
.card:hover h3 a { color: var(--magenta); }
.card .rule { width: 38px; height: 3px; background: var(--magenta); border-radius: 3px; margin: 14px 0 16px; }
.card p { font-size: 15.5px; color: var(--ink); margin: 0; }

/* ---------- About strip ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-size: clamp(30px, 4vw, 48px); margin: 14px 0 6px; }
.about-copy .role { font-family: var(--sans); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--magenta); font-size: 13px; }
.about-copy .lead { font-size: 19px; color: var(--indigo-soft); margin: 20px 0 26px; line-height: 1.65; }

/* ---------- Testimonials ---------- */
.testi { background: linear-gradient(180deg, var(--blush-2), #fff); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px 28px; box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column;
}
.quote .mark { font-family: var(--serif); font-size: 72px; line-height: .6; color: var(--magenta); opacity: .25; height: 30px; }
.quote p { font-size: 16px; color: var(--ink); margin: 8px 0 22px; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-family: var(--sans); font-size: 15px;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
}
.quote .who .nm { font-family: var(--serif); color: var(--indigo); font-weight: 700; font-size: 18px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,22,88,.86), rgba(30,22,88,.55)); }
.cta-inner { position: relative; z-index: 2; padding-block: clamp(64px, 8vw, 110px); max-width: 620px; }
.cta-inner h2 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); margin-bottom: 26px; }
.cta-inner h2 em { font-style: italic; color: #f0c7ef; }
.cta-inner .row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta-inner .row a.alt { color: #fff; font-weight: 700; border-bottom: 1.5px solid rgba(255,255,255,.5); padding-bottom: 2px; }
.cta-inner .row a.alt:hover { border-color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--indigo); color: #c9c4e0; padding-block: 72px 30px; }
.footer a { color: #c9c4e0; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer .brand .logo .word .name { color: #fff; }
.footer .brand p { color: #a9a3c8; font-size: 15px; margin-top: 18px; max-width: 280px; }
.footer .phone { font-family: var(--serif); font-size: 26px; color: #fff; display: inline-block; margin-top: 6px; }
.footer .fsocial { display: flex; gap: 10px; margin-top: 18px; }
.footer .fsocial a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
.footer .fsocial a:hover { background: var(--magenta); transform: translateY(-2px); }
.footer .fsocial svg { width: 16px; height: 16px; }
.footer-base { border-top: 1px solid rgba(255,255,255,.12); margin-top: 52px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; font-size: 13.5px; color: #8d87b0; flex-wrap: wrap; }
.footer-base a.credit { color: #d9d3ef; font-weight: 700; border-bottom: 1px solid rgba(184,44,209,.55); padding-bottom: 1px; }
.footer-base a.credit:hover { color: #fff; border-color: var(--magenta); }

/* ---------- 404 ---------- */
.err-mark {
  font-family: var(--serif); font-weight: 800; line-height: .9;
  font-size: clamp(110px, 24vw, 260px); letter-spacing: -.04em;
  background: linear-gradient(120deg, var(--teal), #7b3fd1 45%, var(--magenta));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 4px;
}
.err-links { display: flex; gap: 8px 28px; justify-content: center; flex-wrap: wrap; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.err-links a { font-weight: 700; font-size: 15px; color: var(--indigo); }
.err-links a:hover { color: var(--magenta); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--indigo); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,22,88,.5), rgba(30,22,88,.78)); }
.page-hero .inner { position: relative; z-index: 2; padding-block: clamp(72px, 12vw, 150px); }
.page-hero h1 { color: #fff; font-size: clamp(38px, 6vw, 70px); }
.page-hero .crumb { color: #d9c9ee; font-weight: 700; font-size: 14px; letter-spacing: .06em; margin-bottom: 16px; display: flex; gap: 10px; align-items: center; }
.page-hero .crumb a { color: #d9c9ee; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero .lead { color: #e7ddf5; font-size: clamp(17px,2.2vw,21px); max-width: 620px; margin-top: 20px; line-height: 1.6; }

/* ---------- Services rows (interior) ---------- */
.svc { display: flex; flex-direction: column; gap: clamp(52px, 8vw, 96px); }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.svc-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.svc-row:hover .svc-media img { transform: scale(1.05); }
.svc-row:nth-child(even) .svc-media { order: 2; }
.svc-num { font-family: var(--sans); font-weight: 800; letter-spacing: .16em; font-size: 13px; text-transform: uppercase; color: var(--magenta); display: inline-flex; align-items: center; gap: 10px; }
.svc-num::before { content: ""; width: 26px; height: 2px; background: var(--magenta); border-radius: 2px; }
.svc-body h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 16px 0 16px; }
.svc-body p { font-size: 16.5px; }

/* ---------- Promo / telemedicine band ---------- */
.promo { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--indigo) 0%, #3a2a78 60%, #5a2f86 100%); color: #fff; padding: clamp(40px, 6vw, 72px); text-align: center; box-shadow: var(--shadow); }
.promo::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; right: -90px; top: -120px; background: radial-gradient(circle, rgba(184,44,209,.5), transparent 70%); }
.promo h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); position: relative; }
.promo p { color: #ddd4f2; max-width: 640px; margin: 18px auto 28px; position: relative; font-size: 17px; }

/* ---------- About page ---------- */
.bio { display: grid; grid-template-columns: 320px 1fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.bio-aside { position: sticky; top: 110px; }
.bio-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-top: 22px; }
.bio-card .nm { font-family: var(--serif); font-size: 22px; color: var(--indigo); font-weight: 700; }
.bio-card .rl { color: var(--magenta); font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }
.bio-card .ctline { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.bio-body .pullquote { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3vw, 30px); line-height: 1.4; color: var(--indigo); border-left: 4px solid var(--magenta); padding: 6px 0 6px 26px; margin: 0 0 32px; }
.bio-body p { margin-bottom: 1.2em; }
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; margin-top: 8px; }
.cred h4 { font-family: var(--sans); font-weight: 800; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--magenta); margin-bottom: 12px; }
.cred ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 15.5px; color: var(--ink); }
.cred li { padding-left: 18px; position: relative; }
.cred li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* Videos */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vid { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; border: 1px solid var(--line); }
.vid-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vid:hover .vid-thumb img { transform: scale(1.05); }
.vid-thumb .play { position: absolute; inset: 0; margin: auto; width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--magenta); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.vid .cap { padding: 18px 20px 22px; font-family: var(--serif); font-weight: 700; color: var(--indigo); font-size: 18px; }

/* Forms / docs list */
.docs { display: flex; flex-direction: column; gap: 14px; }
.doc { display: flex; align-items: center; gap: 18px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; }
.doc:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: rgba(184,44,209,.3); }
.doc .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--blush); color: var(--magenta); }
.doc .meta { flex: 1; }
.doc .meta .t { font-family: var(--serif); font-weight: 700; color: var(--indigo); font-size: 18px; }
.doc .meta .s { font-size: 13.5px; color: var(--ink-2); }
.doc .dl { color: var(--magenta); display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.contact-info .big-phone { font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); color: var(--indigo); display: inline-block; margin: 6px 0 24px; }
.contact-info .big-phone:hover { color: var(--magenta); }
.info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 18px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--blush); color: var(--magenta); }
.info-item .k { font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 3px; }
.info-item .v { color: var(--indigo); font-weight: 600; font-size: 16px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 13.5px; color: var(--indigo); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--indigo); padding: 14px 16px; border: 1.6px solid var(--line); border-radius: 12px; background: var(--bg-2); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input::placeholder, .field textarea::placeholder { color: #aaa5bb; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--magenta); background: #fff; box-shadow: 0 0 0 4px rgba(184,44,209,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-media { order: -1; }
  .bio { grid-template-columns: 1fr; }
  .bio-aside { position: static; }
  .vid-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .cred-grid, .vid-grid, .field-row { grid-template-columns: 1fr; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile menu panel ---------- */
.mobile-panel {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 70;
  background: #fff; box-shadow: -20px 0 60px -20px rgba(30,22,88,.5);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.3,1);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-panel.open { transform: none; }
.mobile-panel .close { align-self: flex-end; border: none; background: var(--bg-2); width: 42px; height: 42px; border-radius: 50%; cursor: pointer; color: var(--indigo); display: grid; place-items: center; }
.mobile-panel a.m-link { font-family: var(--serif); font-size: 24px; color: var(--indigo); padding: 12px 4px; border-bottom: 1px solid var(--line); }
.mobile-panel a.m-link:hover { color: var(--magenta); }
.mobile-panel .m-cta { margin-top: 22px; }
.scrim { position: fixed; inset: 0; background: rgba(30,22,88,.4); z-index: 65; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.scrim.open { opacity: 1; pointer-events: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .menu, .nav-cta .btn { display: none; }
  .burger { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .cards, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .util .wrap { gap: 14px; }
  .util .util-item.email { display: none; }
  .logo .word .name { font-size: 19px; }
  .logo .mark { width: 40px; height: 40px; }
}
