/* =========================================================
   Alma — Home Nursing
   Layout adapted from a sage / cream cosmetics case study,
   tuned with Alma brand colors + fonts (caredbyalma.com).
   ========================================================= */

@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Serif+TC:wght@400;500;600;700&display=swap");

:root {
  /* Brand palette — sourced from caredbyalma.com (cream + dusty pink) */
  --ink: #111111;            /* near-black for text & primary buttons */
  --cream: #ece9e3;          /* warm cream — section panels */
  --cream-soft: #f3efe8;     /* lighter cream — card backgrounds */
  --cream-light: #f8f5ef;    /* page background inside the shell */
  --pink: #f3d5d5;           /* dusty pink — feature panels & accents */
  --pink-soft: #f9e7e7;      /* softer pink for secondary surfaces */
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.10);
  --muted: rgba(17, 17, 17, 0.65);

  /* Legacy aliases (so existing rules still resolve) */
  --green-deep: var(--ink);
  --sage: var(--cream);
  --sage-soft: var(--cream-soft);

  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --maxw: 100%;
  --pad: clamp(16px, 4vw, 32px);

  /* Display serif (warm, readable) for headings; Satoshi for UI text. */
  --serif: "PT Serif", "Noto Serif TC", "Songti TC", "PingFang TC", Georgia, serif;
  --sans:  "Satoshi", "PingFang TC", "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.65;
}

/* Page wrapper — thin cream gutter so the rounded shell sits inside */
.page {
  background: var(--cream);
  padding: clamp(10px, 1.2vw, 18px);
}

.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--cream-light);
  border-radius: var(--radius-xl);
  /* overflow: clip lets position:sticky on child .nav still work
     (overflow:hidden would break it). */
  overflow: clip;
  box-shadow: 0 30px 80px rgba(17,17,17,0.08);
}

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

a { color: inherit; text-decoration: none; }

/* ---------- Typography (warm Fraunces serif for display) ---------- */
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
  margin: 0 0 0.45em;
  color: var(--ink);
}
h3, h4 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.1; }
h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; }
h3 { font-size: clamp(19px, 1.8vw, 22px); line-height: 1.3; }
p  { margin: 0 0 1em; color: var(--muted); font-size: 17px; line-height: 1.65; }

.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  color: var(--ink);
  opacity: 0.7;
}

/* ---------- Header / Nav (sticky) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(20px, 5vw, 48px);
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 24px; font-weight: 400;
  color: var(--ink);
}
.nav__brand img { height: 28px; width: auto; }

.nav__menu {
  display: flex; gap: 28px; align-items: center;
  font-size: 16px; letter-spacing: 0;
}
.nav__menu a {
  color: var(--ink);
  opacity: 0.75;
  transition: opacity .2s ease;
}
.nav__menu a:hover, .nav__menu a.is-active { opacity: 1; }

.nav__right {
  display: flex; align-items: center; gap: 12px;
}

.lang-switch {
  display: inline-flex;
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 4px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-switch button {
  border: 0; background: transparent;
  padding: 6px 12px; border-radius: var(--radius-pill);
  cursor: pointer; color: var(--ink); opacity: 0.55;
  font: inherit; letter-spacing: inherit;
}
.lang-switch button.is-active {
  background: var(--ink); color: var(--cream-light); opacity: 1;
}

.nav__burger {
  display: none;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: ""; display: block;
  width: 16px; height: 1.5px; background: var(--ink);
  position: relative;
}
.nav__burger span::before { position: absolute; top: -5px; }
.nav__burger span::after  { position: absolute; top:  5px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  letter-spacing: 0;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--ink); color: var(--cream-light);
}
.btn--primary:hover { background: #2a3a0d; }
.btn--ghost {
  background: var(--cream-light); color: var(--ink);
  border-color: var(--line);
}
.btn--sage {
  background: var(--pink); color: var(--ink);
}
.btn--sm { padding: 10px 20px; font-size: 14px; }

/* ---------- Section base ---------- */
.section {
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--cream-light);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero__copy { padding-right: clamp(0px, 2vw, 24px); }
.hero__title {
  margin-top: 22px;
}
.hero p { font-size: 18px; max-width: 500px; line-height: 1.6; }
.hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}
.hero__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--cream);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- "Why Alma" — pink panel with two cards ---------- */
.why {
  background: var(--pink);
  border-radius: var(--radius-xl);
  margin: clamp(20px, 4vw, 40px);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
  text-align: center;
}
.why__head { max-width: 620px; margin: 0 auto 40px; }
.why__head p { font-size: 17px; }
.why__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
.why__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 36px;
  display: flex; gap: 16px; align-items: flex-start;
  position: relative;
  min-height: 160px;
}
.why__card .icon {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 50%; background: var(--pink);
  display: grid; place-items: center;
  color: var(--ink);
}
.why__card h3 { margin-bottom: 8px; font-size: 22px; font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.why__card p  { font-size: 16px; margin: 0; color: var(--ink); opacity: 0.78; line-height: 1.55; }

/* ---------- Services — recommended-products grid ---------- */
.services { padding-top: clamp(24px, 4vw, 48px); }
.services__head { margin-bottom: 32px; max-width: 560px; }
.services__head h2 { margin-top: 8px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--cream-light);
  display: flex; flex-direction: column; gap: 12px;
}
.service-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--cream);
}
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 {
  font-size: 22px; font-family: var(--serif); font-weight: 400;
  letter-spacing: -0.01em; margin: 12px 0 6px; line-height: 1.25;
}
.service-card p { font-size: 16px; margin: 0 0 16px; line-height: 1.55; }
.service-card .btn { align-self: flex-start; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--pink);
  border-radius: var(--radius-xl);
  margin: clamp(20px, 4vw, 40px);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
}
.testimonial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.testimonial blockquote {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.3;
  letter-spacing: -0.01em; color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.testimonial cite {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 15px; letter-spacing: 0;
  color: var(--ink); opacity: 0.7;
  margin-top: 24px;
}
.testimonial__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--cream);
}
.testimonial__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq {
  background: var(--cream);
  border-radius: var(--radius-xl);
  margin: clamp(20px, 4vw, 40px);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
}
.faq h2 { margin-bottom: 32px; }
.faq__list { max-width: 760px; }
.faq__list { max-width: 820px; }
.faq__item {
  background: var(--cream-light);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: background .2s ease;
}
.faq__item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 24px; font-weight: 400;
  margin-left: 16px; transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
  margin: 14px 0 0; font-size: 17px; color: var(--ink);
  opacity: 0.78; line-height: 1.65;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--pink);
  border-radius: var(--radius-xl);
  margin: clamp(20px, 4vw, 40px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-banner__copy {
  padding: clamp(36px, 5vw, 64px) clamp(24px, 5vw, 56px);
  align-self: center;
}
.cta-banner__copy h2 { font-size: clamp(24px, 3vw, 36px); }
.cta-banner__copy p  { max-width: 380px; margin-bottom: 24px; }
.cta-banner__media { background: var(--cream); }
.cta-banner__media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }

/* ---------- Pricing strip (home page small) ---------- */
.pricing {
  padding-top: 0;
  padding-bottom: clamp(40px, 6vw, 72px);
}
.pricing__head { max-width: 560px; margin-bottom: 24px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing__tile {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 24px 24px 28px;
}
.pricing__tile .label { font-family: var(--serif); font-style: italic; font-size: 17px; opacity: 0.85; }
.pricing__tile .time  { font-size: 14px; margin: 6px 0 18px; opacity: 0.65; }
.pricing__tile .amount {
  font-family: var(--serif); font-weight: 400;
  font-size: 40px; line-height: 1;
  letter-spacing: -0.02em;
}
.pricing__tile .amount .currency { font-size: 16px; opacity: 0.7; margin-right: 4px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream-light);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 64px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 24px; font-weight: 400;
}
.footer__brand img { height: 28px; filter: invert(1) brightness(2); }
.footer__tag { opacity: 0.7; margin-top: 12px; max-width: 280px; font-size: 16px; }

.footer h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 16px; letter-spacing: 0;
  color: var(--cream-light); opacity: 0.7; margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; font-size: 16px; }
.footer li { margin-bottom: 12px; opacity: 0.85; }
.footer a:hover { opacity: 1; text-decoration: underline; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 36px; padding-top: 20px;
  font-size: 14px; opacity: 0.6;
  text-align: center;
}

/* ---------- Nurses page extras ---------- */
.benefits__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  min-height: 180px;
}
.benefit-card .num {
  font-family: var(--serif); font-style: italic; font-size: 32px; opacity: 0.45;
}
.benefit-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; letter-spacing: -0.01em; margin-top: 12px;
}
.benefit-card p { font-size: 16px; margin: 8px 0 0; line-height: 1.55; }

.requirements__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center;
}
.requirements__media {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 5/4; background: var(--sage);
}
.requirements__media img { width: 100%; height: 100%; object-fit: cover; }
.requirements ul {
  list-style: none; padding: 0; margin: 16px 0 0;
}
.requirements li {
  padding: 16px 0; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  font-size: 17px;
}
.requirements li:last-child { border-bottom: 1px solid var(--line); }
.requirements li::before {
  content: "✓"; color: var(--ink);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; flex: 0 0 24px;
}

.process__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 32px;
}
.process-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
}
.process-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; letter-spacing: -0.01em; line-height: 1.25;
}
.process-card p { font-size: 16px; margin: 10px 0 0; line-height: 1.55; }

/* ---------- Area / scope list (programmatic SEO pages) ---------- */
.area-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}
.area-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 17px;
  display: flex; align-items: baseline; gap: 10px;
}
.area-list li:last-child { border-bottom: 1px solid var(--line); }
.area-list .muted { color: var(--muted); font-size: 14px; }
@media (max-width: 720px) {
  .area-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .area-list { grid-template-columns: 1fr; }
}

/* ---------- Floating social rail (right side, fixed) ---------- */
.social-rail {
  position: fixed;
  top: 50%;
  right: clamp(10px, 1.4vw, 22px);
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--cream-light);
  border-radius: var(--radius-pill);
  padding: 14px 12px;
  box-shadow: 0 12px 36px rgba(17,17,17,0.12);
}
.social-rail a {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.social-rail a:hover {
  background: var(--ink);
  color: var(--cream-light);
  transform: translateY(-1px);
}
.social-rail svg { width: 24px; height: 24px; display: block; }
/* LINE icon noticeably larger than the email icon */
.social-rail .icon-line { width: 44px; height: 44px; background: #06C755; color: #fff; border-radius: 50%; display: grid; place-items: center; }
.social-rail .icon-line svg { width: 28px; height: 28px; }
.social-rail a:hover .icon-line { background: #04a949; }

@media (max-width: 720px) {
  .social-rail { display: none; }
}

/* ---------- Blog ---------- */
.blog-hero { text-align: center; max-width: 760px; margin: 0 auto; padding-bottom: 32px; }
.blog-hero h1 { margin-top: 14px; }
.blog-hero p  { font-size: 18px; color: var(--muted); }

.blog-list { padding-top: 24px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog__loading, .blog__empty, .blog__error {
  grid-column: 1 / -1;
  text-align: center; padding: 60px 0;
  color: var(--muted); font-size: 17px;
}

.post-card {
  display: flex; flex-direction: column; gap: 16px;
  color: var(--ink);
  border-radius: var(--radius-lg);
  transition: transform .2s ease;
}
.post-card:hover { transform: translateY(-2px); }
.post-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 0 4px; }
.post-card__meta {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; opacity: 0.65;
}
.post-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 24px; line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 8px 0 10px;
}
.post-card__excerpt { font-size: 16px; color: var(--muted); margin: 0 0 12px; }
.post-card__more {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
}

/* Single post */
.post-wrap { max-width: 760px; margin: 0 auto; }
.post__header { text-align: center; padding: 16px 0 28px; }
.post__meta {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; opacity: 0.7;
}
.post__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4vw, 52px); line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 14px 0 0;
}
.post__cover {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--cream);
  margin-bottom: 32px;
}
.post__cover img { width: 100%; height: 100%; object-fit: cover; }

.post__body { font-size: 18px; line-height: 1.7; color: var(--ink); }
.post__body .post__h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px); line-height: 1.2;
  margin: 40px 0 16px; letter-spacing: -0.01em;
}
.post__body .post__h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2vw, 26px); line-height: 1.25;
  margin: 32px 0 12px;
}
.post__body .post__p { margin: 0 0 18px; }
.post__body .post__list { padding-left: 20px; margin: 0 0 18px; }
.post__body .post__list li { margin-bottom: 8px; }
.post__body .post__quote {
  border-left: 3px solid var(--pink);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.4;
  color: var(--ink); opacity: 0.85;
}
.post__body .post__figure { margin: 32px 0; }
.post__body .post__figure img {
  width: 100%; border-radius: var(--radius-lg);
}
.post__body .post__figure figcaption {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--muted);
  margin-top: 10px; text-align: center;
}
.post__body a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.post__back { margin-top: 56px; text-align: center; }

.post__crumbs {
  font-family: var(--sans);
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 18px;
}
.post__crumbs a { text-decoration: underline; text-decoration-color: rgba(17,17,17,0.2); text-underline-offset: 3px; }
.post__crumbs a:hover { text-decoration-color: var(--ink); }

.post__author {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-top: 48px;
}
.post__author-pic {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex: 0 0 56px;
}
.post__author-label {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; opacity: 0.6;
}
.post__author-name {
  font-family: var(--serif); font-weight: 400;
  font-size: 20px; margin-top: 2px; line-height: 1.2;
}
.post__author-role {
  font-family: var(--sans); font-size: 14px;
  opacity: 0.7; margin-top: 2px;
}
.post__author-bio {
  font-size: 15px; line-height: 1.6;
  color: var(--muted);
  margin: 10px 0 0;
}

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post__body { font-size: 17px; }
}

/* ---------- Mobile menu drawer ---------- */
.drawer {
  position: fixed; inset: 0;
  background: var(--cream-light);
  z-index: 50;
  padding: 24px clamp(20px, 5vw, 48px);
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex; flex-direction: column; gap: 24px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__top {
  display: flex; justify-content: space-between; align-items: center;
}
.drawer__close {
  background: transparent; border: 1px solid var(--line);
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 22px; line-height: 1; cursor: pointer;
}
.drawer__menu {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--serif); font-size: 28px;
}
.drawer__menu a { padding: 12px 0; border-bottom: 1px solid var(--line); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 4/3; }

  .why__cards,
  .testimonial__grid,
  .cta-banner,
  .requirements__grid {
    grid-template-columns: 1fr;
  }
  .cta-banner { display: flex; flex-direction: column; }
  .cta-banner__media img { min-height: 220px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid  { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid  { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
}
