/* === base/reset.css === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--surface-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === base/typography.css === */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em { font-style: italic; }

.text-muted { color: var(--text-secondary); }
.text-small { font-size: 0.9rem; }
.text-center { text-align: center; }

/* === base/variables.css === */
:root {
  --surface-base: #f3f1f4;
  --surface-elevated: #ffffff;
  --text-primary: #1f1822;
  --accent-primary: #4a2a55;
  --accent-secondary: #8aa57a;
  --accent-text: #ffffff;
  --text-secondary: #7a7280;
  --divider: #dfd9e3;
}

/* === layout/grid.css === */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* === layout/nav.css === */
/* N3 — hamburger-always */
#module-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--surface-base);
  border-bottom: 1px solid var(--divider);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.nav__brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__brand:hover { text-decoration: none; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.25s, opacity 0.25s;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
  display: none;
  flex-direction: column;
  padding-block: 1rem 1.5rem;
  gap: 0.5rem;
  border-top: 1px solid var(--divider);
}

.nav__menu.is-open { display: flex; }

.nav__menu a {
  padding: 0.5rem 0;
  color: var(--text-primary);
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s;
}

.nav__menu a:hover { color: var(--accent-secondary); }

.nav__menu .nav__cta {
  margin-top: 0.5rem;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: var(--accent-primary);
  color: var(--accent-text);
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav__menu .nav__cta:hover { opacity: 0.88; text-decoration: none; }

/* === components/hero.css === */
/* H2 — image-right + text-left (50/50) */
#module-hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero__content {
  padding: var(--section-pad) clamp(1.5rem, 4vw, 4rem) var(--section-pad) 0;
  padding-left: clamp(1rem, 4vw, 2.5rem);
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-secondary);
  margin-bottom: 1.2rem;
}

.hero__headline {
  margin-bottom: 1.4rem;
}

.hero__subhead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 48ch;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__image {
  height: 90vh;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  #module-hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero__image {
    height: 50vw;
    min-height: 280px;
    order: -1;
  }
  .hero__content {
    padding: 3rem clamp(1rem, 4vw, 2.5rem);
  }
}

/* === components/sections.css === */
.section {
  padding-block: var(--section-pad);
}

.section--alt {
  background-color: var(--surface-elevated);
}

.section__header {
  margin-bottom: 3rem;
  max-width: 60ch;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 0.8rem;
}

.section__title { margin-bottom: 0.75rem; }
.section__lead { font-size: 1.1rem; color: var(--text-secondary); }

@media (max-width: 600px) {
  .section { padding-block: var(--section-pad-sm); }
}

/* === components/service-card.css === */
/* SC2 — image-left + content-right */
.service-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background-color: var(--surface-base);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: var(--shadow-md); }

.service-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.service-card__cta:hover { color: var(--accent-secondary); text-decoration: none; }

@media (max-width: 700px) {
  .service-card {
    grid-template-columns: 1fr;
  }
  .service-card__image { aspect-ratio: 16/9; }
}

/* === components/buttons.css === */
/* C2 — rounded 8px */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
}

.btn:hover { text-decoration: none; opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background-color: var(--accent-primary);
  color: var(--accent-text);
}

.btn--secondary {
  background-color: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn--secondary:hover { background-color: var(--surface-elevated); }

/* === components/process.css === */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  counter-reset: process-step;
}

.process-item {
  counter-increment: process-step;
}

.process-item::before {
  content: counter(process-step, decimal-leading-zero);
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.process-item__title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.process-item__text { color: var(--text-secondary); font-size: 0.95rem; }

@media (max-width: 800px) {
  .process-list { grid-template-columns: 1fr; gap: 2rem; }
}

/* === components/stats.css === */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.stat__value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
}

/* === components/testimonials.css === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--surface-base);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-card__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.testimonial-card__quote::before { content: '\201C'; }
.testimonial-card__quote::after  { content: '\201D'; }

.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

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

/* === components/faq.css === */
.faq-list { max-width: 740px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-item:first-child { border-top: 1px solid var(--divider); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  gap: 1rem;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: '';
  position: absolute;
  background-color: var(--accent-secondary);
  transition: transform 0.25s, opacity 0.25s;
}

.faq-question__icon::before { width: 14px; height: 2px; }
.faq-question__icon::after  { width: 2px; height: 14px; }

.faq-item.is-open .faq-question__icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer { display: block; }

/* === components/cta-strip.css === */
.cta-strip {
  text-align: center;
  padding-block: var(--section-pad);
  background-color: var(--accent-primary);
  color: var(--accent-text);
}

.cta-strip h2 { color: var(--accent-text); margin-bottom: 1rem; }
.cta-strip p  { color: rgba(255,255,255,0.8); max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }

.btn--on-dark {
  background-color: var(--accent-text);
  color: var(--accent-primary);
}

.btn--on-dark:hover { opacity: 0.92; }

/* === components/contact-form.css === */
.contact-form {
  max-width: 640px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-md);
  background-color: var(--surface-base);
  color: var(--text-primary);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-note { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.5rem; }

.form-error {
  font-size: 0.8rem;
  color: #b44040;
  margin-top: 0.4rem;
  display: none;
}

.form-error.is-visible { display: block; }

/* === components/footer.css === */
/* F3 — 2-column: about-blurb-left + links-right */
#module-footer {
  background-color: var(--surface-elevated);
  border-top: 1px solid var(--divider);
  padding-block: 4rem 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.footer__blurb {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 46ch;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer__contact {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer__contact a { color: var(--text-secondary); }
.footer__contact a:hover { color: var(--accent-secondary); }

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__nav-links a:hover { color: var(--accent-primary); }

.footer__bottom {
  border-top: 1px solid var(--divider);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: var(--text-secondary);
  max-width: 65ch;
  line-height: 1.6;
}

.footer__legal-links {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  white-space: nowrap;
}

.footer__legal-links a { color: var(--text-secondary); text-decoration: none; }
.footer__legal-links a:hover { color: var(--accent-primary); }

.footer__manage-cookies {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.footer__manage-cookies:hover { color: var(--accent-primary); }

@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; }
}

/* === components/cookie.css === */
#module-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--accent-primary);
  color: var(--accent-text);
  padding: 1.25rem;
  display: none;
}

#module-cookie-banner.is-visible { display: block; }

.cookie-banner__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  max-width: 60ch;
}

.cookie-banner__text a { color: var(--accent-secondary); }

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn--cookie-accept {
  background-color: var(--accent-text);
  color: var(--accent-primary);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  cursor: pointer;
  border: none;
}

.btn--cookie-reject {
  background-color: transparent;
  color: var(--accent-text);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  cursor: pointer;
}

.btn--cookie-customize {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border: none;
  padding: 0.6rem 0;
  font-size: 0.8rem;
  font-family: Georgia, 'Times New Roman', serif;
  cursor: pointer;
  text-decoration: underline;
}

/* Cookie preferences dialog */
#cookie-prefs-dialog {
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: calc(100% - 2rem);
  box-shadow: var(--shadow-md);
}

#cookie-prefs-dialog::backdrop {
  background: rgba(26,24,20,0.6);
}

.dialog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid var(--divider);
}

.dialog__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.dialog__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1;
  padding: 0.2rem;
}

.dialog__body {
  padding: 1.5rem 2rem;
}

.pref-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--divider);
}

.pref-item:last-of-type { border-bottom: none; }

.pref-item__label { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.pref-item__desc  { font-size: 0.8rem; color: var(--text-secondary); }

.pref-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  cursor: pointer;
  accent-color: var(--accent-primary);
}

.dialog__footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--divider);
}

/* === components/misc.css === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background-color: var(--accent-primary);
  color: var(--accent-text);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  z-index: 999;
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

.divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 0;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: var(--surface-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--divider);
}

.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;
}

/* About page image placeholder */
.about-visual {
  background-color: var(--surface-elevated);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.credential-block {
  padding: 1.5rem;
  background-color: var(--surface-base);
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
}

.credential-block__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.credential-block__value {
  font-weight: 700;
  color: var(--text-primary);
}

/* Page hero (for inner pages) */
.page-hero {
  padding-block: 5rem 3rem;
  border-bottom: 1px solid var(--divider);
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-secondary);
  margin-bottom: 0.8rem;
}

.page-hero__title { margin-bottom: 0.75rem; }
.page-hero__lead { font-size: 1.1rem; color: var(--text-secondary); max-width: 60ch; }

/* Legal pages */
.legal-content {
  max-width: 740px;
  margin-inline: auto;
  padding-block: 4rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal-content ol { list-style: decimal; }

/* === Section variants === */
.section--narrow { padding-block: 3rem; }

/* === Page intro (inner page hero — text only) === */
.page-intro {
  padding-block: 5rem 3rem;
  border-bottom: 1px solid var(--divider);
}
.page-intro__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-secondary);
  margin-bottom: 0.8rem;
}
.page-intro__heading { margin-bottom: 1.25rem; }
.page-intro__lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 64ch;
  line-height: 1.75;
}
.page-intro__lead a { color: var(--accent-secondary); }

/* === Bio intro — SH4 opening === */
.bio-intro { border-bottom: 1px solid var(--divider); padding-block: 5rem 3.5rem; }
.bio-intro__content { max-width: 720px; }
.bio-intro__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-secondary);
  margin-bottom: 0.8rem;
}
.bio-intro__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.75rem;
  font-style: italic;
}
.bio-intro__body { font-size: 1.1rem; color: var(--text-secondary); max-width: 64ch; }

/* === Backstory — B35 === */
.backstory__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.backstory__heading { margin-bottom: 1.5rem; }
.backstory__main { font-size: 1.05rem; }
.backstory__main p { color: var(--text-secondary); margin-bottom: 1.25rem; }
.backstory__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}
.backstory__fact-card {
  background: var(--surface-elevated);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}
.backstory__fact-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.backstory__fact-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
@media (max-width: 860px) {
  .backstory__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .backstory__aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .backstory__fact-card { flex: 1 1 140px; }
}

/* === Pivot — SH4 turn === */
.pivot__heading { margin-bottom: 1.75rem; }
.pivot__body { max-width: 72ch; }
.pivot__body p { color: var(--text-secondary); margin-bottom: 1.25rem; }
.pivot__quote {
  border-left: 3px solid var(--accent-secondary);
  margin-block: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--surface-elevated);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pivot__quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* === Approach === */
.approach__header { margin-bottom: 3rem; max-width: 64ch; }
.approach__heading { margin-bottom: 0.75rem; }
.approach__intro { color: var(--text-secondary); font-size: 1.05rem; }
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.approach__item {
  background: var(--surface-elevated);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.approach__item-heading {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--accent-primary);
}
.approach__item-body { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 0; }
@media (max-width: 700px) {
  .approach__grid { grid-template-columns: 1fr; }
}

/* === Credentials === */
.credentials__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.credentials__heading { margin-bottom: 1rem; }
.credentials__subtext { font-size: 1rem; color: var(--text-secondary); }
.credentials__list {
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.credentials__item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--divider);
  align-items: start;
}
.credentials__item:last-child { border-bottom: none; }
.credentials__item-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  padding-top: 0.1rem;
}
.credentials__item-value { font-size: 0.95rem; color: var(--text-primary); }
@media (max-width: 800px) {
  .credentials__layout { grid-template-columns: 1fr; gap: 2rem; }
  .credentials__item { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* === Disclaimer strip === */
.disclaimer-strip {
  background: var(--surface-elevated);
  border-block: 1px solid var(--divider);
  padding-block: 2rem;
}
.disclaimer-strip__text {
  max-width: 72ch;
  margin-inline: auto;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
  margin-bottom: 0;
}

/* === Services list (full-page servizi) === */
.services-list { display: flex; flex-direction: column; gap: 0; }
.services-list .service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--divider);
  padding-block: 4rem;
}
.services-list .service-card--featured {
  background: var(--surface-elevated);
  border-radius: var(--radius-md);
  border: 2px solid var(--accent-secondary);
  margin-bottom: 3rem;
  padding: 2rem;
}
.service-card__badge {
  display: inline-block;
  background: var(--accent-secondary);
  color: var(--accent-text);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.service-card__sessions {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
@media (max-width: 760px) {
  .services-list .service-card { grid-template-columns: 1fr; }
}

/* === Per chi (for whom) === */
.per-chi__heading { margin-bottom: 2.5rem; }
.per-chi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.per-chi__col-heading {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent-secondary);
}
.per-chi__col--no .per-chi__col-heading { border-bottom-color: var(--divider); }
.per-chi__list { display: flex; flex-direction: column; gap: 0.75rem; }
.per-chi__item {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}
.per-chi__col--si .per-chi__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: 700;
}
.per-chi__col--no .per-chi__item::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--text-secondary);
}
@media (max-width: 700px) {
  .per-chi__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* === Booking options (prenota) === */
.booking-options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.booking-option {
  background: var(--surface-elevated);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booking-option--primary {
  border-color: var(--accent-secondary);
  border-width: 2px;
}
.booking-option__header { display: flex; flex-direction: column; gap: 0.4rem; }
.booking-option__heading { font-size: 1.3rem; margin-bottom: 0; }
.booking-option__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-secondary);
}
.booking-option__price--free { color: var(--text-secondary); font-size: 1.1rem; }
.booking-option__desc { font-size: 0.95rem; color: var(--text-secondary); }
.booking-option__details {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: auto;
}
.booking-option__details li {
  padding-left: 1rem;
  position: relative;
}
.booking-option__details li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
}
@media (max-width: 860px) {
  .booking-options__grid { grid-template-columns: 1fr; }
}

/* === Info pratiche === */
.info-pratiche__heading { margin-bottom: 2.5rem; }
.info-pratiche__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.info-pratiche__item {
  padding: 1.5rem;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
}
.info-pratiche__item-heading { font-size: 1.05rem; margin-bottom: 0.75rem; }
.info-pratiche__item-body { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 0; }
@media (max-width: 700px) {
  .info-pratiche__grid { grid-template-columns: 1fr; }
}

/* === Alt contact strip === */
.alt-contact { background: var(--surface-elevated); border-block: 1px solid var(--divider); padding-block: 2rem; }
.alt-contact__content { text-align: center; }
.alt-contact__text { font-size: 1rem; color: var(--text-secondary); margin-bottom: 0; }
.alt-contact__text a { color: var(--accent-secondary); }

/* === Contact layout (contatti page) === */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* === Contact info block === */
.contact-info__heading { margin-bottom: 1.5rem; }
.contact-info__address { font-style: normal; }
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--divider);
}
.contact-info__item:last-of-type { border-bottom: none; }
.contact-info__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.contact-info__value { font-size: 1rem; color: var(--text-primary); }
.contact-info__value a { color: var(--accent-primary); }
.contact-info__availability { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--divider); }
.contact-info__avail-heading { font-size: 1rem; margin-bottom: 0.5rem; }
.contact-info__avail-body { font-size: 0.9rem; color: var(--text-secondary); }
.contact-info__booking-link { margin-top: 2rem; }
.contact-info__booking-link p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 0.75rem; }

/* === Contact form extras === */
.contact-form__group--privacy { margin-top: 0.5rem; }
.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.contact-form__checkbox {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  accent-color: var(--accent-primary);
}
.contact-form__checkbox-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-form__checkbox-text a { color: var(--accent-secondary); }
.contact-form__submit { margin-top: 0.5rem; }
.contact-form__note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* === Confirmation (grazie) === */
.confirmation {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.confirmation__content { text-align: center; max-width: 540px; }
.confirmation__icon {
  font-size: 3rem;
  color: var(--accent-secondary);
  display: block;
  margin-bottom: 1.25rem;
}
.confirmation__heading { margin-bottom: 1.25rem; }
.confirmation__body { color: var(--text-secondary); margin-bottom: 1rem; }
.confirmation__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* === Error page (404) === */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.error-page__content { text-align: center; max-width: 540px; }
.error-page__code {
  font-size: 7rem;
  font-weight: 700;
  color: var(--surface-elevated);
  line-height: 1;
  margin-bottom: 0.5rem;
  user-select: none;
}
.error-page__heading { margin-bottom: 1rem; }
.error-page__body { color: var(--text-secondary); margin-bottom: 2rem; }
.error-page__nav { margin-bottom: 2rem; }
.error-page__nav ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: center; }
.error-page__nav a { color: var(--accent-secondary); font-size: 0.95rem; }

/* === Legal page (new full-width legal layout) === */
.legal-page__content {
  max-width: 740px;
  margin-inline: auto;
}
.legal-page__heading { margin-bottom: 0.75rem; }
.legal-page__meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.legal-page__updated {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-style: italic;
}
.legal-page__content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
}
.legal-page__content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-page__content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-page__content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.legal-page__content ul,
.legal-page__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}
.legal-page__content ol { list-style: decimal; }
.legal-page__content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}
.legal-page__content address {
  font-style: normal;
  margin-block: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  line-height: 1.8;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.legal-page__content strong { color: var(--text-primary); }
.legal-page__content a { color: var(--accent-secondary); }

/* === Legal table (cookie policy) === */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-block: 1.25rem;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.legal-table caption {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-align: left;
}
.legal-table th {
  background: var(--surface-elevated);
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--divider);
}
.legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--divider);
  color: var(--text-secondary);
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table code {
  font-family: monospace;
  font-size: 0.85em;
  background: var(--surface-elevated);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}
@media (max-width: 600px) {
  .legal-table { font-size: 0.8rem; }
  .legal-table th, .legal-table td { padding: 0.5rem 0.75rem; }
}
/* ============================================================
   v3.0 IT — visual fix patch (rebuild)
   Restores undefined CSS variables and adds 82 missing BEM
   class rules whose names appear in HTML but had no selectors
   in the generated stylesheet.
   ============================================================ */

:root {
  --container-max: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.06);
}

/* ---------- Page wrappers (body classes) ---------- */
.page-home,
.page-chi-sono,
.page-contatti,
.page-prenota,
.page-servizi,
.page-cookie,
.page-privacy,
.page-termini,
.page-note-legali,
.page-grazie,
.page-404,
.page-legal { background-color: var(--surface-base); }

.legal-page { padding-block: 3rem; }
.legal-page h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-page h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-page p { margin-bottom: 1rem; }

/* ---------- Site header ---------- */
.site-header {
  background-color: var(--surface-elevated);
  border-bottom: 1px solid var(--divider);
  padding-block: 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

/* ---------- Nav ---------- */
.nav { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.nav__item { display: inline-flex; }
.nav__link {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background-color 0.15s;
}
.nav__link:hover { color: var(--accent-primary); text-decoration: none; }
.nav__item--active .nav__link { color: var(--accent-primary); }
.nav__item--cta .nav__link {
  background-color: var(--accent-primary);
  color: var(--accent-text);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
}
.nav__item--cta .nav__link:hover { opacity: 0.9; color: var(--accent-text); }
.nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 4px 0;
}

/* ---------- Buttons (missing modifiers) ---------- */
.btn--ghost {
  background-color: transparent;
  color: var(--accent-primary);
  border: 1.5px solid var(--accent-primary);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
}
.btn--ghost:hover { background-color: var(--accent-primary); color: var(--accent-text); }
.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; }
.btn--lg { padding: 0.95rem 1.8rem; font-size: 1.05rem; }

/* ---------- Cookie banner (.cookie-banner co-exists with #module-cookie-banner) ---------- */
.cookie-banner { /* HTML uses class — keep as base, ID still applies positioning */ }

/* ---------- Cookie preferences dialog ---------- */
.cookie-dialog { padding: 0; border: none; border-radius: var(--radius-lg); max-width: 520px; width: calc(100% - 2rem); box-shadow: var(--shadow-lg); }
.cookie-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--divider);
}
.cookie-dialog__title { font-size: 1.2rem; margin: 0; }
.cookie-dialog__close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0.25rem 0.5rem;
}
.cookie-dialog__close:hover { color: var(--text-primary); }
.cookie-dialog__body { padding: 1.25rem 1.5rem; max-height: 60vh; overflow-y: auto; }
.cookie-dialog__item { padding-block: 0.85rem; border-bottom: 1px solid var(--divider); }
.cookie-dialog__item:last-child { border-bottom: none; }
.cookie-dialog__label { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; cursor: pointer; }
.cookie-dialog__label-text { font-size: 0.95rem; }
.cookie-dialog__description { margin-top: 0.4rem; margin-left: 1.6rem; font-size: 0.85rem; color: var(--text-secondary); }
.cookie-dialog__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--divider);
  background-color: var(--surface-base);
}

/* ---------- Site footer ---------- */
.site-footer {
  background-color: var(--text-primary);
  color: var(--surface-elevated);
  padding-block: 3rem 1.5rem;
  margin-top: 4rem;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--accent-text); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer__col h3,
.site-footer__col h4 { color: var(--surface-elevated); margin-bottom: 0.85rem; font-size: 1rem; }
.site-footer__col--about { /* widest column */ }
.site-footer__col--nav .site-footer__nav-list { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__brand { font-size: 1.15rem; font-weight: 700; color: var(--surface-elevated); margin-bottom: 0.5rem; }
.site-footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.site-footer__contact { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.85); }
.site-footer__nav-list { list-style: none; padding: 0; margin: 0; }
.site-footer__nav-link { font-size: 0.9rem; }
.site-footer__legal-nav { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.site-footer__copy { font-size: 0.8rem; }
.site-footer__disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 1rem; max-width: 60ch; }

/* ---------- Forms (contact) ---------- */
.contact-form-section { padding-block: 3rem; }
.contact-layout__form { padding: 2rem; background-color: var(--surface-elevated); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.contact-layout__info { padding: 2rem 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; font-size: 0.95rem; }
.contact-form__label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.contact-form__required { color: var(--accent-secondary); margin-left: 0.15rem; }
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--surface-elevated);
  color: var(--text-primary);
  margin-bottom: 1rem;
  transition: border-color 0.15s;
}
.contact-form__input:focus,
.contact-form__textarea:focus { outline: none; border-color: var(--accent-primary); }
.contact-form__textarea { resize: vertical; min-height: 140px; }
.contact-form__error { color: #c0392b; font-size: 0.85rem; margin-top: -0.6rem; margin-bottom: 0.8rem; }

/* ---------- Service card BEM elements ---------- */
.service-card__media { aspect-ratio: 16/10; overflow: hidden; border-radius: var(--radius-md); margin-bottom: 1rem; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__content { display: flex; flex-direction: column; gap: 0.75rem; }
.service-card__heading { font-size: 1.25rem; line-height: 1.3; }
.service-card__features { list-style: none; padding: 0; margin: 0.5rem 0; display: flex; flex-direction: column; gap: 0.4rem; }
.service-card__feature { font-size: 0.92rem; padding-left: 1.3rem; position: relative; color: var(--text-secondary); }
.service-card__feature::before { content: "✓"; position: absolute; left: 0; color: var(--accent-primary); font-weight: 700; }
.service-card__pricing { padding-top: 0.85rem; border-top: 1px solid var(--divider); margin-top: 0.5rem; }
.service-card__price { font-size: 1.1rem; font-weight: 700; color: var(--accent-primary); }
.service-card__price-note { font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.2rem; }

/* ---------- CTA strip ---------- */
.cta-strip__content { max-width: 720px; margin-inline: auto; text-align: center; }
.cta-strip__heading { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-strip__body { font-size: 1.05rem; margin-bottom: 1.5rem; color: var(--text-secondary); }
.cta-strip__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-strip--dark { background-color: var(--text-primary); color: var(--surface-elevated); padding-block: 3rem; }
.cta-strip--dark .cta-strip__heading,
.cta-strip--dark .cta-strip__body { color: var(--surface-elevated); }
.cta-strip--dark .cta-strip__body { color: rgba(255,255,255,0.85); }

/* ---------- FAQ extras ---------- */
.faq__heading { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.5rem; }
.faq__list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-answer__body { padding: 0.5rem 0 1rem; color: var(--text-secondary); line-height: 1.7; }

/* ---------- Section blocks (semantic landmarks) ---------- */
.approach,
.backstory,
.credentials,
.per-chi,
.pivot,
.booking-options,
.info-pratiche { padding-block: 3rem; }
.approach > .container,
.backstory > .container,
.credentials > .container,
.per-chi > .container,
.pivot > .container,
.booking-options > .container,
.info-pratiche > .container { display: flex; flex-direction: column; gap: 1.5rem; }
.credentials__intro { font-size: 1.05rem; color: var(--text-secondary); max-width: 65ch; margin-bottom: 1.5rem; }
.stat { display: flex; flex-direction: column; gap: 0.25rem; padding: 1.25rem; background-color: var(--surface-elevated); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
/* ============================================================
   v3.0 IT — visual fix patch v2 (override)
   Fixes after first browser inspection:
   1. Header nav menu was hidden on desktop (display:none, only
      .is-open showed it; no min-width media query). Now visible.
   2. Cookie banner buttons (.btn--ghost) blended into the dark
      accent-primary banner background. Now contrast-corrected.
   3. Footer was 2-col grid (1.4fr 1fr) on index — too wide and
      reads as "one row" of nav links. Now 4-col on desktop and
      legal/footer-bottom items stack on narrow viewports.
   ============================================================ */

/* ---------- Header: show nav menu on desktop ---------- */
@media (min-width: 800px) {
  .nav__menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding-block: 0;
    border-top: none;
    list-style: none;
    margin: 0;
  }
  .nav__menu a {
    padding: 0.4rem 0;
    border-bottom: none;
  }
  .nav__hamburger { display: none; }
  #module-nav .nav,
  .site-header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1rem;
    gap: 1.5rem;
  }
}

/* ---------- Cookie banner: make .btn--ghost visible on dark accent bg ---------- */
.cookie-banner .btn--ghost,
#module-cookie-banner .btn--ghost {
  color: var(--accent-text);
  border-color: rgba(255,255,255,0.65);
  background-color: transparent;
}
.cookie-banner .btn--ghost:hover,
#module-cookie-banner .btn--ghost:hover {
  background-color: var(--accent-text);
  color: var(--accent-primary);
  border-color: var(--accent-text);
}
.cookie-banner .btn--primary,
#module-cookie-banner .btn--primary {
  background-color: var(--accent-text);
  color: var(--accent-primary);
  border: 1.5px solid var(--accent-text);
}
.cookie-banner .btn--primary:hover,
#module-cookie-banner .btn--primary:hover {
  opacity: 0.9;
}

/* ---------- Footer: 4-column grid on desktop, vertical-stack on mobile ---------- */
@media (min-width: 900px) {
  .footer__grid {
    display: grid !important;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}
@media (max-width: 899px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__nav-links a { display: block; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  justify-content: flex-start;
}
.footer__contact { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__contact p { margin: 0; line-height: 1.5; }

/* ---------- Site-footer (used on non-index pages): same 4-col discipline ---------- */
@media (min-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr !important;
  }
}
.site-footer__nav-list { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__legal-nav { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Hero on narrow viewports: don't 2-column on mobile ---------- */
@media (max-width: 800px) {
  #module-hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  #module-hero .hero__content { padding: 2rem 1.25rem !important; }
  #module-hero .hero__image img { max-height: 320px; object-fit: cover; width: 100%; }
}
