/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #262223;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

:root {
  --accent: #A94867;
  --accent-dark: #8a3a54;
  --ink: #262223;
  --ink-soft: #524d4e;
  --muted: #837c7e;
  --white: #FFFFFF;
  --rose-bg: #FBF6F7;
  --card-bg: #f3f0ee;
  --border: #e6dde0;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --max-width: 1160px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 136px 0;
}

/* ---------- Headings ---------- */
.serif-heading {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h2.serif-heading {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.25;
}
h1.serif-heading {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

p {
  color: var(--ink-soft);
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 48px;
  max-width: 780px;
}

.kicker {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-claim {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.4;
  color: var(--accent);
  max-width: 34ch;
  margin: 0 0 18px;
}

/* ---------- Buttons & Links ---------- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-light {
  background: #fff;
  color: var(--accent);
  border: 1px solid #fff;
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
}

.link-arrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}
.link-arrow::after {
  content: "\2192";
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.15s ease;
}
.link-arrow:hover::after {
  transform: translateX(3px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 20px rgba(38, 34, 35, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: padding 0.25s ease;
}
.site-header.is-scrolled .header-inner {
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: block;
}
.logo-img {
  height: 48px;
  width: auto;
  transition: height 0.25s ease;
}
.site-header.is-scrolled .logo-img {
  height: 38px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-left: 48px;
}

.primary-nav ul {
  display: flex;
  gap: 40px;
}

.primary-nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.primary-nav a:not(.btn):hover {
  color: var(--accent);
}

.nav-cta {
  padding: 12px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--white);
  padding: 160px 0 180px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.hero-text h1 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-text h1 em {
  display: block;
  margin-top: 6px;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 24px;
}
.hero-byline {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 36px;
}
.hero-price {
  display: block;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}
.hero-frame {
  aspect-ratio: 3 / 4;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Identification ---------- */
.identification {
  background: var(--rose-bg);
}
.identification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.id-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 30px;
}
.id-card p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.lead-out {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  max-width: 700px;
  border-left: 2px solid var(--accent);
  padding-left: 22px;
}

/* ---------- Person ---------- */
.person {
  background: var(--white);
}
.person-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.person-frame {
  aspect-ratio: 4 / 5;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.person-text .section-head {
  margin-bottom: 28px;
}
.person-text p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.socials-line {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.socials-line a {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Topics ---------- */
.topics {
  background: var(--rose-bg);
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.topic-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 30px;
}
.topic-card p {
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.card-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}

/* ---------- Offers ---------- */
.offers {
  background: var(--white);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.offer-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.offer-card {
  border-radius: 3px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-light {
  background: #fff;
  border: 1px solid var(--border);
}
.offer-dark {
  background: #8C5A68;
  border: 1px solid #8C5A68;
}
.offer-label {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.offer-dark .offer-label {
  color: #F3DCE3;
}
.offer-card h3 {
  font-size: 1.5rem;
}
.offer-dark h3 {
  color: #fff;
}
.offer-text {
  font-size: 1rem;
}
.offer-dark .offer-text {
  color: rgba(255, 255, 255, 0.78);
}
.link-arrow-light {
  color: #fff;
}
.offer-price {
  font-weight: 600;
  color: var(--ink);
}
.offer-card .link-arrow {
  margin-top: auto;
}

/* ---------- Fit ---------- */
.fit {
  background: var(--rose-bg);
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fit-col {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 38px;
}
.fit-yes {
  background: var(--white);
}
.fit-no {
  background: var(--card-bg);
}
.fit-col h3 {
  margin-bottom: 22px;
}
.fit-yes h3 {
  color: var(--accent);
}
.fit-col ul {
  display: grid;
  gap: 16px;
}
.fit-col li {
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ---------- Steps ---------- */
.steps {
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.steps-grid--four {
  grid-template-columns: repeat(4, 1fr);
}
.steps-grid--vertical {
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.steps-grid--vertical .step-col p {
  max-width: 640px;
}
.step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.step-col h3 {
  margin-bottom: 12px;
}
.step-col p {
  font-size: 1rem;
}
.step-col .link-arrow {
  margin-top: 12px;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--accent);
}
.cta-photo {
  background-size: cover;
  background-position: center;
}
.cta-photo--home {
  background-image: linear-gradient(rgba(38, 34, 35, 0.72), rgba(38, 34, 35, 0.72)), url("assets/hamonazaryan1-notebook-2386034_1920.jpg");
}
.cta-photo--check {
  background-image: linear-gradient(rgba(38, 34, 35, 0.72), rgba(38, 34, 35, 0.72)), url("assets/stevepb-calculator-385506_1920.jpg");
}
.cta-photo--sparring {
  background-image: linear-gradient(rgba(38, 34, 35, 0.72), rgba(38, 34, 35, 0.72)), url("assets/oleksandrpidvalnyi-telework-6795505_1920.jpg");
}
.cta-photo--about {
  background-image: linear-gradient(rgba(38, 34, 35, 0.72), rgba(38, 34, 35, 0.72)), url("assets/pexels-analysis-1841158_1920.jpg");
}
.cta-photo--orientation {
  background-image: linear-gradient(rgba(38, 34, 35, 0.72), rgba(38, 34, 35, 0.72)), url("assets/51581-work-1627703_1920.jpg");
}
.cta-photo--fahrplan {
  background-image: linear-gradient(rgba(38, 34, 35, 0.72), rgba(38, 34, 35, 0.72)), url("assets/firmbee-office-620822_1920.jpg");
}
.cta-inner {
  text-align: center;
  max-width: 640px;
}
.cta h2 {
  color: #fff;
  margin: 0 auto 20px;
}
.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-intro {
  color: rgba(255, 255, 255, 0.85);
  max-width: 380px;
}
.footer-nav ul {
  display: grid;
  gap: 12px;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}
.footer-social a:hover {
  border-color: #fff;
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-claim {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 480px;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* ---------- Subpage: Solo Hero ---------- */
.hero-inner.solo {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}
.hero-text h1 em.accent-inline {
  display: inline;
  margin-top: 0;
}

/* ---------- Subpage Section Backgrounds ---------- */
.situations { background: var(--rose-bg); }
.focus-areas { background: var(--white); }
.takeaways { background: var(--rose-bg); }
.process { background: var(--white); }
.investment { background: var(--rose-bg); }
.for-whom { background: var(--white); }
.faq { background: var(--rose-bg); }
.problem { background: var(--rose-bg); }
.included { background: var(--white); }
.timeline-section { background: var(--rose-bg); }
.human-side { background: var(--white); }
.onboarding { background: var(--white); }
.how-i-work { background: var(--rose-bg); }
.what-you-get { background: var(--white); }
.career { background: var(--rose-bg); }
.education { background: var(--white); }
.weichen-section { background: var(--white); }
.your-question { background: var(--rose-bg); }
.orientation-fit { background: var(--white); }
.orientation-flow { background: var(--rose-bg); }
.orientation-outcome { background: var(--white); }
.orientation-price { background: var(--rose-bg); }
.orientation-booking { background: var(--white); }
.orientation-faq { background: var(--rose-bg); }
.orientation-scope { background: var(--white); }
.fahrplan-fit { background: var(--rose-bg); }
.fahrplan-outcome { background: var(--white); }
.fahrplan-flow { background: var(--rose-bg); }
.fahrplan-scope { background: var(--white); }
.fahrplan-price { background: var(--rose-bg); }
.fahrplan-next { background: var(--white); }
.fahrplan-faq { background: var(--rose-bg); }
.quote-section {
  position: relative;
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("assets/ylanite-desk-3076954_1920.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 200px;
  padding-bottom: 200px;
}
.call-flow { background: var(--rose-bg); }
.preparation { background: var(--white); }
.fallback {
  position: relative;
  background-image: linear-gradient(rgba(38, 34, 35, 0.72), rgba(38, 34, 35, 0.72)), url("assets/stocksnap-man-2562325_1920.jpg");
  background-size: cover;
  background-position: center;
}
.fallback h2 {
  color: #fff;
}
.fallback .prose p {
  color: rgba(255, 255, 255, 0.85);
}
.fallback .section-lede {
  color: rgba(255, 255, 255, 0.85);
}
.fallback .text-link {
  color: #fff;
}
.fallback .text-link:hover {
  color: rgba(255, 255, 255, 0.75);
}
.fallback .socials-line {
  color: rgba(255, 255, 255, 0.75);
}
.fallback .socials-line a {
  color: #fff;
}
.blog-list { background: var(--rose-bg); }

/* ---------- Photo quote transitions (dark overlay, white italic text) ---------- */
.photo-quote {
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: 200px;
  padding-bottom: 200px;
}
.photo-quote--overview {
  background-image: linear-gradient(rgba(38, 34, 35, 0.8), rgba(38, 34, 35, 0.8)), url("assets/pexels-analysis-1841158_1920.jpg");
}
.photo-quote--check-step {
  background-image: linear-gradient(rgba(38, 34, 35, 0.58), rgba(38, 34, 35, 0.58)), url("assets/planet_fox-tax-office-5503976_1920.jpg");
  background-position: 25% 30%;
}
.photo-quote--sparring-year {
  background-image: linear-gradient(rgba(38, 34, 35, 0.72), rgba(38, 34, 35, 0.72)), url("assets/ralf1403-calendar-10045176_1920.jpg");
}
.photo-quote-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.5;
  color: #fff;
}

/* ---------- Booking page: compact hero + calendar ---------- */
.hero-compact {
  padding-bottom: 48px;
}
.calendar-note {
  background: var(--white);
  padding-top: 0;
  padding-bottom: 24px;
}
.calendar-section {
  background: var(--white);
  padding-top: 0;
}
.calendar-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Titled blocks (no bullets, no badges) ---------- */
.block-list {
  display: grid;
  gap: 36px;
  max-width: 760px;
}
.block-item h3 {
  margin-bottom: 8px;
}
.block-item p {
  font-size: 1.05rem;
}

/* ---------- Sub-headings within a section ---------- */
.sub-heading {
  margin-top: 40px;
  margin-bottom: 20px;
}
.sub-heading-first {
  margin-top: 0;
}

/* ---------- Quote block ---------- */
.quote-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.quote-block p {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.5;
  color: var(--ink);
}
.quote-block-top-gap {
  margin-top: 48px;
}

/* ---------- Prose (running paragraphs) ---------- */
.prose {
  max-width: 760px;
}
.prose p {
  font-size: 1.05rem;
}
.prose p + p {
  margin-top: 20px;
}
.prose-top-gap {
  margin-top: 20px;
}

.fine-print {
  max-width: 760px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 20px;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover {
  color: var(--accent-dark);
}

/* ---------- Feature cards (title + text) ---------- */
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-card h3 {
  font-size: 1.05rem;
}
.feature-card p {
  font-size: 0.98rem;
}

/* ---------- Timeline ---------- */
.timeline {
  border-left: 2px solid var(--border);
  padding-left: 32px;
  display: grid;
  gap: 44px;
  max-width: 820px;
}
.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-item h3 {
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: 1rem;
}

/* ---------- Plain stacked list (no bullets) ---------- */
.plain-list {
  display: grid;
  gap: 22px;
  max-width: 760px;
}
.plain-list li {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.section-note {
  max-width: 760px;
  font-size: 1.05rem;
  margin-top: 32px;
}

.section-note--emphasis {
  max-width: none;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--accent);
  margin-top: 2.5rem;
}

.section-lede {
  max-width: 760px;
  font-size: 1.05rem;
}

.notice .btn {
  margin-top: 28px;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 30px;
}
.testimonial-quote {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}
.testimonial-name {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--muted);
}

.lead-out-top-gap {
  margin-top: 56px;
}

/* ---------- Sequential steps (numbered rows) ---------- */
.steps-sequence {
  display: grid;
  gap: 32px;
  max-width: 820px;
}
.step-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-row .step-badge {
  flex-shrink: 0;
  margin-bottom: 0;
}
.step-row p {
  font-size: 1.05rem;
  padding-top: 8px;
}

/* ---------- Highlight box ---------- */
.highlight-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 32px;
  margin-top: 28px;
  max-width: 760px;
}
.highlight-box p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* ---------- Accordion (FAQ) ---------- */
.accordion {
  border-top: 1px solid var(--border);
  max-width: 820px;
}
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 2px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.accordion-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.accordion-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.accordion-item.is-open .accordion-icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.accordion-panel-inner {
  overflow: hidden;
}
.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}
.accordion-panel-inner p {
  padding-top: 0;
  padding-bottom: 24px;
  font-size: 1rem;
}

/* ---------- Card Icons ---------- */
.card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  color: var(--accent);
}
.card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Visual Timeline (with connecting line + numbered badges) ---------- */
.timeline-visual {
  position: relative;
  max-width: 820px;
  margin-top: 40px;
}
.timeline-visual::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--border);
}
.timeline-visual-item {
  position: relative;
  display: flex;
  gap: 28px;
}
.timeline-visual-item + .timeline-visual-item {
  margin-top: 48px;
}
.timeline-visual-marker {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  justify-content: center;
}
.timeline-visual-marker .step-badge {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.timeline-visual-content {
  padding-top: 4px;
}
.timeline-visual-content .timeline-label {
  margin-bottom: 6px;
}
.timeline-visual-content h3 {
  margin-bottom: 8px;
}
.timeline-visual-content p {
  font-size: 1rem;
}

/* ---------- Side photo + text block ---------- */
.side-photo-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.side-photo-block .side-photo .person-frame {
  width: 100%;
}

/* ---------- Stat highlights ---------- */
.stat-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 32px;
}
.stat-number {
  display: block;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  color: var(--accent);
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
.stat-standalone {
  display: inline-block;
  margin-bottom: 28px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 8px 0 32px;
  max-width: 720px;
}
.stat-row .stat-highlight {
  text-align: center;
}

.stat-quote {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 880px;
  margin: 0 auto;
}
.stat-quote .stat-highlight {
  flex-shrink: 0;
  text-align: center;
}
.stat-quote .pull-quote-text {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.stat-quote .pull-quote-text:only-child {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pull-quote-line {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  color: var(--ink);
  margin-bottom: 12px;
}

/* ---------- Decorative background shapes ---------- */
.has-decor {
  position: relative;
  overflow: hidden;
}
.has-decor > .container {
  position: relative;
  z-index: 1;
}
.bg-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
}
.bg-decor-rose { background: var(--rose-bg); }
.bg-decor-gray { background: var(--card-bg); }
.bg-decor-accent { background: rgba(255, 255, 255, 0.16); }

.bg-decor--tr { width: 560px; height: 560px; top: -220px; right: -180px; }
.bg-decor--tl { width: 520px; height: 520px; top: -220px; left: -200px; }
.bg-decor--br { width: 520px; height: 520px; bottom: -220px; right: -180px; }
.bg-decor--bl { width: 460px; height: 460px; bottom: -200px; left: -180px; }
.bg-decor--center {
  width: 640px;
  height: 640px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- Text marker highlight ---------- */
/* ---------- Blog: placeholder image pattern ---------- */
.image-placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: repeating-linear-gradient(45deg, var(--card-bg), var(--card-bg) 12px, var(--rose-bg) 12px, var(--rose-bg) 24px);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* ---------- Blog: article cards ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(38, 34, 35, 0.08);
}
.article-card .image-placeholder {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}
.article-image {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-image-date {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 2px;
}
.article-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.article-category {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-card h3 {
  font-size: 1.2rem;
}
.article-teaser {
  font-size: 0.95rem;
  color: var(--ink-soft);
  flex: 1;
}
.article-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: auto;
}

/* ---------- Blog: article page ---------- */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.article-back::before {
  content: "\2190";
}
.article-header {
  max-width: 780px;
  margin: 40px 0 48px;
}
.article-header .article-category {
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 20px;
}
.article-hero-image {
  max-width: 780px;
  margin-bottom: 56px;
}
.article-body {
  max-width: 780px;
}
.article-body p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.article-body .sub-heading {
  margin-top: 44px;
}
.article-body h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 44px;
  margin-bottom: 16px;
}
.article-body .highlight-box {
  margin-top: 40px;
  margin-bottom: 20px;
  max-width: none;
}
.article-body .highlight-box p {
  font-style: italic;
}

/* ---------- Secondary offer links ---------- */
.offer-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.offer-mini-grid--stacked {
  grid-template-columns: 1fr;
  gap: 12px;
}
.mini-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(38, 34, 35, 0.08);
}
.mini-card-text {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.mini-card-q {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.mini-card-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--ink);
  transition: transform 0.25s ease;
}
.mini-card:hover .mini-card-arrow {
  transform: translateX(4px);
}

/* ---------- Offer / Card Hover ---------- */
.offer-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(38, 34, 35, 0.08);
}

/* ---------- Scroll Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .hero { padding: 100px 0 96px; }
  .section-note--emphasis { font-size: 1.2rem; }
  .hero-price { font-size: 1.25rem; }
  .quote-section,
  .photo-quote {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-media { max-width: 340px; margin: 0 auto; }

  .person-inner {
    grid-template-columns: 1fr;
  }
  .person-media { max-width: 300px; }

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

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

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

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

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

  .offer-mini-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .timeline {
    padding-left: 24px;
  }
  .timeline-item::before {
    left: -31px;
  }

  .timeline-visual-item {
    gap: 18px;
  }
  .timeline-visual-marker {
    width: 40px;
  }
  .timeline-visual::before {
    left: 20px;
  }

  .hero-compact {
    padding-bottom: 40px;
  }
  .calendar-section {
    padding-top: 0;
  }

  .side-photo-block {
    grid-template-columns: 1fr;
  }
  .side-photo-block .side-photo {
    order: 2;
    max-width: 240px;
    margin: 32px auto 0;
  }
  .side-photo-block .side-text {
    order: 1;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stat-quote {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .bg-decor--tr,
  .bg-decor--tl,
  .bg-decor--br,
  .bg-decor--bl,
  .bg-decor--center {
    width: 360px;
    height: 360px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .primary-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 18px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    width: 100%;
  }
}
