@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* =====================================================================
   Qasawa Plastic Surgery — brand design system.
   This file is the single source of truth; issa-home.css imports it.
   Loaded AFTER Bootstrap (core injects Bootstrap), so it overrides it.
   ===================================================================== */

:root {
  --ink: #0e1726; --ink-soft: #48505e; --ink-mute: #737d8c;
  --pine: #1f7aea; --pine-700: #1461c4; --pine-600: #2a7de1; --pine-050: #e8f2fd;
  --gold: #2a7de1; --gold-600: #2a7de180; --gold-tint: #dcecfb;
  --blush: #dcedfb; --sand: #eaf4fe; --ivory: #f7fbff; --white: #ffffff;
  --line: #dbe7f2; --navy: #0f2747; --ok: #2f7d59; --focus: #1f7aea;
  --sky-1: #cfe8fb; --sky-2: #e6f4fe;
  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --step--1: clamp(.83rem, .79rem + .18vw, .94rem);
  --step-0: clamp(1rem, .95rem + .25vw, 1.13rem);
  --step-1: clamp(1.2rem, 1.11rem + .44vw, 1.5rem);
  --step-2: clamp(1.44rem, 1.28rem + .79vw, 2rem);
  --step-3: clamp(1.73rem, 1.47rem + 1.29vw, 2.66rem);
  --step-4: clamp(2.07rem, 1.67rem + 2vw, 3.55rem);
  --step-5: clamp(2.49rem, 1.87rem + 3.08vw, 4.73rem);
  --space-3xs: .25rem; --space-2xs: .5rem; --space-xs: .75rem; --space-s: 1rem;
  --space-m: 1.5rem; --space-l: 2rem; --space-xl: 3rem; --space-2xl: 4.5rem; --space-3xl: 7rem;
  --container: 1200px; --container-narrow: 760px;
  --radius-s: 6px; --radius: 12px; --radius-l: 22px; --radius-pill: 999px;
  --shadow-s: 0 1px 2px rgba(28,43,42,.06), 0 2px 8px rgba(28,43,42,.05);
  --shadow-m: 0 6px 20px rgba(28,43,42,.08), 0 2px 6px rgba(28,43,42,.05);
  --shadow-l: 0 24px 60px rgba(14,59,57,.14);
  --ease: cubic-bezier(.22,1,.36,1);
}

/* --- neutralize Bootstrap reboot defaults we don't want --- */
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, blockquote, figure, .container { margin: 0; }
.container { --bs-gutter-x: 0; max-width: var(--container); }
a { text-decoration: none; }
button { background: none; border: 0; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body); font-size: var(--step-0); line-height: 1.65;
  color: var(--ink); background: var(--ivory);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--pine-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); text-wrap: balance; }
h3, h4 { font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { text-wrap: pretty; }

/* --- layout helpers --- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--space-3xl); }
.section-sm { padding-block: var(--space-2xl); }
.stack > * + * { margin-top: var(--space-s); }
.center { text-align: center; }
.grid { display: grid; gap: var(--space-m); }
.divider { height: 1px; background: var(--line); border: 0; }

/* --- eyebrow / lede --- */
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-body); font-size: var(--step--1); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.eyebrow::before { content: ""; width: 1.75rem; height: 1px; background: var(--gold); opacity: .7; }
.eyebrow.is-centered::before { display: none; }
.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; }

/* --- buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem 1.6rem; border-radius: var(--radius-pill); font-weight: 600; font-size: var(--step-0); line-height: 1.15; text-align: center; text-decoration: none; border: 1px solid transparent; transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--pine); color: var(--white); box-shadow: var(--shadow-m); }
.btn-primary:hover { background: var(--pine-700); color: var(--white); }
.btn-gold { background: var(--white); color: var(--pine); box-shadow: var(--shadow-m); }
.btn-gold:hover { background: #eaf2fd; color: var(--pine); }
.btn-outline { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn-outline:hover { background: var(--pine); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--white); border-color: var(--pine-600); }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
:where(a, button, input, textarea, select, [tabindex]):focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: var(--radius-s); }

/* --- surfaces / cards --- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-s); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.surface-sand { background: var(--sand); }
.surface-pine { background: var(--pine); color: var(--white); }
.surface-pine h1, .surface-pine h2, .surface-pine h3 { color: var(--white); }

/* --- prose --- */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 1.8em; font-size: var(--step-3); }
.prose h3 { margin-top: 1.5em; font-size: var(--step-1); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: .4em; }
.prose a { color: var(--pine-600); }
.prose blockquote { border-left: 3px solid var(--gold); padding-left: 1.2em; font-family: var(--font-display); font-size: var(--step-1); color: var(--ink-soft); font-style: italic; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-s); }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 999; background: var(--pine); color: #fff; padding: .7rem 1.2rem; border-radius: var(--radius); transition: top .2s var(--ease); }
.skip-link:focus { top: 1rem; }

/* --- section header helper --- */
.sh { max-width: 62ch; }
.sh--center { max-width: 68ch; margin-inline: auto; text-align: center; }
.sh__title { margin-top: .7rem; }
.sh__intro { margin-top: 1.1rem; }

/* =====================================================================
   Header / nav
   ===================================================================== */
.site-header { position: sticky; top: 0; z-index: 100; background: transparent; transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease); }
.site-header[data-scrolled] { background: color-mix(in srgb, var(--white) 86%, transparent); backdrop-filter: saturate(140%) blur(10px); box-shadow: var(--shadow-s); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 1rem; }
.logo { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.logo__text { display: inline-flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--ink); letter-spacing: .02em; }
.logo__sub { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
.nav__list { list-style: none; display: flex; align-items: center; gap: .4rem; padding: 0; margin: 0; }
.nav__link { display: inline-flex; align-items: center; gap: .25rem; padding: .6rem .9rem; border-radius: var(--radius-pill); color: var(--ink); font-weight: 500; font-size: 1rem; text-decoration: none; transition: color .2s var(--ease), background .2s var(--ease); }
.nav__link:hover, .nav__link.is-active { color: var(--pine); background: var(--pine-050); }
.nav__chev { transition: transform .25s var(--ease); }
.nav__item--has-children { position: relative; }
.nav__submenu { list-style: none; margin: 0; padding: .5rem; position: absolute; top: calc(100% + .4rem); left: 0; min-width: 230px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-m); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; }
.nav__item--has-children:hover .nav__submenu, .nav__item--has-children:focus-within .nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__item--has-children:hover .nav__chev { transform: rotate(180deg); }
.nav__sublink { display: block; padding: .6rem .8rem; border-radius: var(--radius-s); color: var(--ink-soft); text-decoration: none; font-size: .95rem; }
.nav__sublink:hover, .nav__sublink.is-active { background: var(--sand); color: var(--pine); }
.nav__cta { padding: .7rem 1.4rem; font-size: .95rem; margin-left: .4rem; }
.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--white); position: relative; }
.nav__toggle-bars, .nav__toggle-bars::before, .nav__toggle-bars::after { content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .25s var(--ease), opacity .2s; }
.nav__toggle-bars::before { transform: translate(-50%, -8px); }
.nav__toggle-bars::after { transform: translate(-50%, 6px); }
@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__list { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); flex-direction: column; align-items: stretch; gap: .15rem; background: var(--white); padding: 6rem 1.25rem 2rem; box-shadow: var(--shadow-l); transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; }
  .nav[data-open] .nav__list { transform: translateX(0); }
  .nav[data-open] .nav__toggle-bars { background: transparent; }
  .nav[data-open] .nav__toggle-bars::before { transform: translate(-50%) rotate(45deg); }
  .nav[data-open] .nav__toggle-bars::after { transform: translate(-50%) rotate(-45deg); }
  .nav__link { font-size: 1.05rem; padding: .8rem .85rem; }
  .nav__submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin-left: .85rem; padding-left: .5rem; }
  .nav__item--cta { margin-top: .75rem; }
  .nav__cta { width: 100%; margin-left: 0; }
  .nav__chev { display: none; }
}

/* =====================================================================
   Footer (navy)
   ===================================================================== */
.footer { background: var(--navy); color: #d6e6fb; margin-top: var(--space-3xl); }
.footer a { color: #d6e6fb; text-decoration: none; transition: color .2s var(--ease); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: var(--space-xl); grid-template-columns: 1.6fr 1fr 1fr 1.2fr; padding-block: var(--space-2xl) var(--space-xl); }
.footer__logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; }
.footer__logo span { display: block; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: #bcd6fb; margin-top: 4px; }
.footer__desc { margin-top: 1rem; font-size: var(--step--1); line-height: 1.6; color: #b9d2f6; max-width: 34ch; }
.footer__contact { font-style: normal; display: flex; flex-direction: column; gap: .35rem; margin-top: 1.2rem; font-size: var(--step--1); }
.footer__contact a { font-weight: 600; color: #fff; }
.footer__social { display: flex; gap: 1rem; margin-top: 1.2rem; font-size: var(--step--1); }
.footer__social a { border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 2px; }
.footer__heading { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: #bcd6fb; margin-bottom: 1rem; font-weight: 600; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; font-size: var(--step--1); }
.footer__hours ul li { display: flex; justify-content: space-between; gap: 1rem; color: #b9d2f6; }
.footer__hours ul li span:last-child { color: #fff; }
.footer .footer__cta { margin-top: 1.3rem; color: var(--navy); }
.footer .footer__cta:hover { color: var(--navy); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.2rem; font-size: .78rem; color: #a7c4ee; }
.footer__legal { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0; margin: 0; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } .footer__bottom-inner { flex-direction: column; align-items: flex-start; } }

/* =====================================================================
   Breadcrumbs
   ===================================================================== */
.crumbs { border-bottom: 1px solid var(--line); background: var(--sand); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .3rem; padding: .85rem 0; margin: 0; font-size: var(--step--1); }
.crumbs li { display: inline-flex; align-items: center; gap: .3rem; color: var(--ink-mute); }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--pine); text-decoration: underline; }
.crumbs svg { color: var(--ink-mute); opacity: .6; }
.crumbs span { color: var(--ink); font-weight: 500; }

/* =====================================================================
   CTA band (pine)
   ===================================================================== */
.cta { background: var(--pine); color: #fff; }
.cta__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-xl); align-items: center; padding-block: var(--space-2xl); }
.cta h2 { color: #fff; margin-top: .6rem; max-width: 22ch; }
.cta p { color: #dbeafe; margin-top: 1rem; max-width: 52ch; }
.cta__actions { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.cta__inner .eyebrow { color: #eaf3ff; }
.cta__inner .eyebrow::before { background: #cfe0ff; }
.cta__call { color: #fff; border-color: #fff6; }
.cta__call:hover { background: #fff; color: var(--pine); border-color: #fff; }
@media (max-width: 800px) { .cta__inner { grid-template-columns: 1fr; gap: var(--space-l); } .cta__actions { flex-direction: row; flex-wrap: wrap; } }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq__head { text-align: center; margin-bottom: var(--space-xl); }
.faq__head h2 { margin-top: .5rem; }
.faq__list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: .75rem; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq__item[open] { border-color: var(--pine-600); box-shadow: var(--shadow-s); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.35rem; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: var(--step-1); color: var(--ink); font-weight: 500; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { flex-shrink: 0; color: var(--pine); transition: transform .25s var(--ease); }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding: 0 1.35rem 1.3rem; }
.faq__answer p { color: var(--ink-soft); line-height: 1.65; }

/* =====================================================================
   HOME
   ===================================================================== */
.hero { background: linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 42%, var(--white) 100%); padding-block: var(--space-2xl) var(--space-3xl); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-2xl); align-items: center; }
.hero__title { font-size: clamp(2.6rem, 1.7rem + 4.2vw, 4.6rem); font-weight: 800; line-height: 1.04; letter-spacing: -.03em; }
.hero__title .accent { color: var(--pine); }
.hero__sub { margin-top: 1.4rem; font-size: var(--step-1); color: var(--ink-soft); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: 2.2rem; }
.hero__link { display: inline-flex; align-items: center; gap: .4rem; color: var(--pine); font-weight: 600; text-decoration: none; }
.hero__link:hover { gap: .7rem; }
.hero__rating { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.6rem; font-size: var(--step--1); color: var(--ink-soft); text-decoration: none; }
.hero__rating span { color: #f4b400; letter-spacing: 1px; }
.hero__rating strong { color: var(--ink); }
.hero__rating:hover { color: var(--pine); }
.hero__media { position: relative; display: grid; place-items: center; }
.hero__frame { position: relative; z-index: 1; width: 100%; max-width: 520px; }
.hero__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-l); box-shadow: var(--shadow-l); }
.hero__circle { position: absolute; right: 6%; bottom: -34px; width: 230px; height: 230px; border-radius: 50%; background: var(--pine); z-index: 0; }
.welcome { display: flex; flex-direction: column; align-items: center; text-align: center; }
.welcome__links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.welcome__links a { color: var(--pine); font-weight: 600; }
.proc-grid { grid-template-columns: repeat(3, 1fr); margin-top: var(--space-xl); }
.about-teaser { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-2xl); align-items: center; }
.about-teaser__media { max-width: 380px; }
.about-teaser__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-l); box-shadow: var(--shadow-m); }
.about-teaser__text h2 { margin: .6rem 0 1rem; }
.about-teaser__text p { color: var(--ink-soft); max-width: 56ch; }
.about-teaser__note { font-size: var(--step--1); color: var(--ink-mute); margin-top: .8rem; }
.about-teaser__text .btn { margin-top: 1.5rem; }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .proc-grid { grid-template-columns: 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: var(--space-l); }
  .about-teaser__media { max-width: 300px; }
}

/* service cards (home + services index) */
.scard { display: flex; flex-direction: column; padding: 2rem 1.8rem; text-decoration: none; color: inherit; height: 100%; }
.scard:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); border-color: var(--pine-600); }
.scard__top { display: flex; align-items: baseline; gap: .8rem; }
.scard__num { font-family: var(--font-display); font-size: .95rem; color: var(--gold); font-weight: 600; }
.scard__title { font-size: var(--step-2); }
.scard__desc { margin-top: .9rem; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; }
.scard__list { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.scard__list li { font-size: .8rem; color: var(--pine); background: var(--pine-050); padding: .3rem .7rem; border-radius: var(--radius-pill); }
.scard__link { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; color: var(--pine); font-weight: 600; font-size: var(--step--1); }
.scard:hover .scard__link svg { transform: translateX(4px); }
.scard__link svg { transition: transform .25s var(--ease); }

/* trust row */
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.trust__item h3 { font-size: var(--step-1); margin: 1rem 0 .5rem; }
.trust__item p { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; max-width: 34ch; }
.trust__icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--white); color: var(--pine); border: 1px solid var(--line); }
@media (max-width: 800px) { .trust__grid { grid-template-columns: 1fr; gap: var(--space-l); } }

/* testimonials */
.tst__head { text-align: center; margin-bottom: var(--space-xl); }
.tst__head h2 { margin-top: .5rem; }
.tst__rating { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; text-decoration: none; color: var(--ink-soft); font-size: var(--step-0); }
.tst__rating strong { color: var(--ink); font-size: var(--step-1); }
.tst__stars { color: #f4b400; letter-spacing: 2px; font-size: var(--step-1); }
.tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-m); }
.tst__card { padding: 1.8rem; display: flex; flex-direction: column; gap: .9rem; }
.tst__stars-sm { color: #f4b400; letter-spacing: 2px; font-size: 1.1rem; }
.tst__card blockquote { font-family: var(--font-display); font-size: var(--step-1); line-height: 1.4; color: var(--ink); font-weight: 500; }
.tst__card figcaption { display: flex; align-items: center; gap: .6rem; margin-top: auto; font-size: var(--step--1); color: var(--ink-mute); }
.tst__avatar { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--pine-050); color: var(--pine); font-weight: 700; font-size: .85rem; }
.tst__more { text-align: center; margin-top: var(--space-l); }
.tst__more a { color: var(--pine); font-weight: 600; }
@media (max-width: 820px) { .tst__grid { grid-template-columns: 1fr; } }

/* =====================================================================
   SERVICES (index / category / procedure)
   ===================================================================== */
.services-grid { grid-template-columns: repeat(3, 1fr); margin-top: var(--space-xl); }
.all-procs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); margin-top: var(--space-xl); }
.all-procs__col h3 { font-size: var(--step-1); margin-bottom: 1rem; }
.all-procs__col h3 a { color: var(--pine); text-decoration: none; }
.all-procs__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.all-procs__col a { color: var(--ink-soft); text-decoration: none; font-size: var(--step--1); }
.all-procs__col ul a:hover { color: var(--pine); }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } .all-procs { grid-template-columns: 1fr; gap: var(--space-l); } }

.cat-hero { padding-block: var(--space-2xl); border-bottom: 1px solid var(--line); }
.cat-hero__inner { display: grid; grid-template-columns: 1.3fr .9fr; gap: var(--space-2xl); align-items: center; }
.cat-hero h1 { margin: .8rem 0 1.1rem; max-width: 20ch; }
.cat-hero .lede { max-width: 62ch; }
.cat-hero__media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--radius-l); box-shadow: var(--shadow-l); }
.cat-hero__jump { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.cat-hero__jump a { font-size: .82rem; font-weight: 500; color: var(--pine); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .45rem 1rem; text-decoration: none; transition: all .2s var(--ease); }
.cat-hero__jump a:hover { background: var(--pine); color: #fff; border-color: var(--pine); }
@media (max-width: 860px) { .cat-hero__inner { grid-template-columns: 1fr; } .cat-hero__media { max-width: 420px; } }

.proc-stack { display: flex; flex-direction: column; gap: var(--space-3xl); }
.proc { display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--space-xl); align-items: center; }
.proc__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-l); box-shadow: var(--shadow-m); }
.proc--flip .proc__media { order: 2; }
.proc__aka { font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.proc__title { font-size: var(--step-3); margin: .5rem 0 .9rem; scroll-margin-top: 6rem; }
.proc__summary { font-size: var(--step-1); color: var(--ink); line-height: 1.5; font-family: var(--font-display); font-weight: 500; }
.proc__text { margin-top: 1rem; color: var(--ink-soft); }
.proc__ideal { margin-top: 1.5rem; background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.proc__ideal h4 { font-family: var(--font-body); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); font-weight: 600; }
.proc__ideal ul { list-style: none; padding: 0; margin: .8rem 0 0; display: flex; flex-direction: column; gap: .6rem; }
.proc__ideal li { display: flex; align-items: flex-start; gap: .6rem; color: var(--ink); font-size: var(--step--1); }
.proc__ideal svg { color: var(--pine); flex-shrink: 0; margin-top: 2px; }
.proc__cta { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.5rem; color: var(--pine); font-weight: 600; text-decoration: none; }
.proc__cta:hover { gap: .7rem; }
@media (max-width: 820px) { .proc { grid-template-columns: 1fr; gap: var(--space-l); } .proc--flip .proc__media { order: 0; } .proc__media { max-width: 420px; } }

.cross__title { text-align: center; font-size: var(--step-2); margin-bottom: var(--space-l); }
.cross__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-m); }
.cross__card { padding: 1.8rem; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.cross__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--pine-600); }
.cross__card h3 { font-size: var(--step-1); }
.cross__card p { color: var(--ink-soft); font-size: var(--step--1); margin: .6rem 0 1rem; }
.cross__link { color: var(--pine); font-weight: 600; font-size: var(--step--1); margin-top: auto; }
@media (max-width: 700px) { .cross__grid { grid-template-columns: 1fr; } }

/* procedure detail page */
.ppage { display: grid; grid-template-columns: 1.6fr .9fr; gap: var(--space-2xl); align-items: start; }
.ppage__body h1 { font-size: var(--step-4); margin: .6rem 0 1rem; }
.ppage__summary { max-width: 60ch; }
.ppage__prose { margin-top: 1.5rem; }
.ppage__prose p { margin-top: 1rem; color: var(--ink-soft); max-width: 65ch; }
.ppage__ideal { margin-top: 2rem; background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.8rem; }
.ppage__ideal h2 { font-size: var(--step-1); }
.ppage__ideal ul { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .7rem; }
.ppage__ideal li { display: flex; align-items: flex-start; gap: .6rem; color: var(--ink); }
.ppage__ideal svg { color: var(--pine); flex-shrink: 0; margin-top: 2px; }
.ppage__ideal-note { margin-top: 1.2rem; font-size: var(--step--1); color: var(--ink-soft); }
.ppage__ideal-note a { color: var(--pine); font-weight: 600; }
.ppage__reading { margin-top: 2rem; }
.ppage__reading h2 { font-size: var(--step-1); margin-bottom: .8rem; }
.ppage__reading ul { padding-left: 1.1rem; }
.ppage__reading a { color: var(--pine); font-weight: 500; }
.ppage__aside { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.2rem; }
.ppage__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-l); box-shadow: var(--shadow-m); }
.ppage__cta-card, .ppage__related { padding: 1.6rem; }
.ppage__cta-card h2 { font-size: var(--step-1); }
.ppage__cta-card p { color: var(--ink-soft); font-size: var(--step--1); margin: .6rem 0 1.2rem; }
.ppage__cta-btn { width: 100%; }
.ppage__cta-link { display: inline-block; margin-top: 1rem; color: var(--pine); font-weight: 600; font-size: var(--step--1); text-decoration: none; }
.ppage__related h2 { font-size: var(--step-0); color: var(--pine); margin-bottom: .8rem; }
.ppage__related ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.ppage__related a { color: var(--ink-soft); text-decoration: none; font-size: var(--step--1); }
.ppage__related a:hover { color: var(--pine); }
.ppage__related-all a { color: var(--pine); font-weight: 600; }
@media (max-width: 900px) { .ppage { grid-template-columns: 1fr; } .ppage__aside { position: static; } }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-hero { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-2xl); align-items: center; }
.about-hero__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-l); box-shadow: var(--shadow-l); max-width: 420px; }
.about-hero__role { color: var(--ink-mute); font-size: var(--step--1); margin: .4rem 0 1rem; letter-spacing: .02em; }
.about-hero h1 { margin-top: .5rem; }
.about-hero p { color: var(--ink-soft); margin-top: 1rem; max-width: 56ch; }
.about-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.about-body { display: grid; grid-template-columns: 1.5fr .9fr; gap: var(--space-2xl); align-items: start; }
.about-body__main h2 { font-size: var(--step-3); margin-top: 2rem; }
.about-body__main h2:first-child { margin-top: 0; }
.about-body__main p { color: var(--ink-soft); margin-top: 1rem; max-width: 64ch; }
.about-card { position: sticky; top: 6rem; padding: 1.8rem; }
.about-card h3 { font-size: var(--step-1); margin-bottom: 1rem; }
.about-card dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; margin: 0 0 1.2rem; font-size: var(--step--1); }
.about-card dt { color: var(--ink-mute); }
.about-card dd { margin: 0; color: var(--ink); font-weight: 500; text-align: right; }
.about-card ul { list-style: none; padding: 0; margin: 0 0 1.2rem; display: flex; flex-direction: column; gap: .5rem; font-size: var(--step--1); }
.about-card ul a { color: var(--pine); font-weight: 500; text-decoration: none; }
.about-creds { margin-top: 1.4rem; }
.about-creds ul { padding-left: 1.2rem; color: var(--ink-soft); }
.about-creds li + li { margin-top: .5rem; }
@media (max-width: 900px) { .about-hero, .about-body { grid-template-columns: 1fr; gap: var(--space-l); } .about-card { position: static; } }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-2xl); align-items: start; }
.contact__intro h1 { margin: .6rem 0 1rem; }
.contact__intro p { color: var(--ink-soft); max-width: 46ch; }
.cform { margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.cform label { display: block; font-size: var(--step--1); font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.cform input, .cform select, .cform textarea { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); }
.cform textarea { min-height: 120px; resize: vertical; }
.cform__hp { position: absolute; left: -9999px; }
.cform__consent { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--step--1); color: var(--ink-soft); }
.cform__consent a { color: var(--pine); font-weight: 600; }
.cform__note { font-size: .82rem; color: var(--ink-mute); }
.cform__note strong { color: var(--ink); }
.contact__aside { padding: 2rem; }
.contact__aside h2 { font-size: var(--step-1); }
.contact__aside address { font-style: normal; display: flex; flex-direction: column; gap: .7rem; margin: 1.2rem 0; font-size: var(--step-0); }
.contact__aside address a { color: var(--ink); text-decoration: none; }
.contact__hours { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.contact__hours h3 { font-size: var(--step-0); margin-bottom: .7rem; }
.contact__hours ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; font-size: var(--step--1); }
.contact__hours li { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-soft); }
.contact__map { margin-top: 1.4rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.contact__map iframe { width: 100%; height: 240px; border: 0; display: block; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; gap: var(--space-l); } .cform__row { grid-template-columns: 1fr; } }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-m); margin-top: var(--space-xl); }
.gcard { position: relative; border-radius: var(--radius-l); overflow: hidden; text-decoration: none; box-shadow: var(--shadow-m); aspect-ratio: 4/5; }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gcard:hover img { transform: scale(1.05); }
.gcard__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; background: linear-gradient(180deg, rgba(15,39,71,0) 40%, rgba(15,39,71,.82) 100%); color: #fff; }
.gcard__overlay h2 { color: #fff; font-size: var(--step-1); }
.gcard__overlay span { font-size: var(--step--1); color: #dbeafe; margin-top: .3rem; }
.gallery-note { max-width: 640px; margin: var(--space-xl) auto 0; text-align: center; color: var(--ink-soft); }
.gallery-note a { color: var(--pine); font-weight: 600; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   BLOG
   ===================================================================== */
.blog-list { display: flex; flex-direction: column; gap: var(--space-l); margin-top: var(--space-xl); max-width: 820px; }
.bcard { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-l); align-items: center; padding: 1.5rem; text-decoration: none; color: inherit; }
.bcard__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2; }
.bcard__media img { width: 100%; height: 100%; object-fit: cover; }
.bcard__tag { font-size: var(--step--1); font-weight: 600; color: var(--gold); }
.bcard__date { font-size: .8rem; color: var(--ink-mute); margin-left: .6rem; }
.bcard h2 { font-size: var(--step-2); margin: .5rem 0 .6rem; }
.bcard p { color: var(--ink-soft); font-size: var(--step--1); }
.bcard__more { display: inline-block; margin-top: .8rem; color: var(--pine); font-weight: 600; font-size: var(--step--1); }
.bcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
@media (max-width: 700px) { .bcard { grid-template-columns: 1fr; } }

.article { max-width: 760px; margin-inline: auto; }
.article__tag { color: var(--gold); font-weight: 600; font-size: var(--step--1); }
.article h1 { margin: .6rem 0 1rem; font-size: var(--step-4); }
.article__byline { display: flex; align-items: center; gap: .7rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); margin-bottom: 1.8rem; font-size: var(--step--1); color: var(--ink-mute); }
.article__avatar { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--pine-050); color: var(--pine); font-weight: 700; }
.article__author-name { color: var(--ink); font-weight: 600; }
.article__lede { font-size: var(--step-1); color: var(--ink); line-height: 1.55; font-family: var(--font-display); font-weight: 500; }
.article__author { margin-top: 2.5rem; padding: 1.6rem; display: flex; gap: 1rem; align-items: flex-start; }
.article__author p { color: var(--ink-soft); font-size: var(--step--1); }
.article__author a { color: var(--pine); font-weight: 600; }
.article__disclaimer { margin-top: 1.5rem; font-size: .82rem; color: var(--ink-mute); border-top: 1px solid var(--line); padding-top: 1.2rem; }
.article__disclaimer a { color: var(--pine); }

/* =====================================================================
   LEGAL / prose pages + thank-you + 404
   ===================================================================== */
.legal { max-width: 760px; margin-inline: auto; }
.legal h1 { font-size: var(--step-4); }
.legal__updated { color: var(--ink-mute); font-size: var(--step--1); margin: .6rem 0 2rem; }
.msg-page { min-height: 52vh; display: grid; place-items: center; text-align: center; padding-block: var(--space-2xl); }
.msg-page__inner { max-width: 640px; }
.msg-page h1 { font-size: var(--step-4); margin-bottom: 1rem; }
.msg-page p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.msg-page__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.msg-page__code { font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 12vw, 8rem); color: var(--pine-050); line-height: 1; }
.msg-page__links { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: center; margin-top: 2rem; }
.msg-page__links a { color: var(--pine); font-weight: 600; font-size: var(--step--1); }
