/* Core base stylesheet of every Forja site. Colours and fonts come from :root, generated per tenant from the brand kind
   (IPageContext.BrandCss); everything here uses var(--primary), var(--bg), var(--text), var(--accent), var(--font-*).
   Sections, in order: reset and typography · header/navigation · page body · auth pages · block-based landing (bands, hero,
   cards, lists, testimonials, plans, FAQ, gallery, CTA, contact) · social footer and WhatsApp button · visual themes
   (minimal, bold, classic) · per-block design overrides. Formatted by Prettier: one declaration per line. */
*,
*::before,
*::after {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
a {
  color: var(--primary);
}
a:hover {
  text-decoration-thickness: 2px;
}
.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
}
.skip:focus {
  left: 1rem;
  z-index: 10;
}
/* ---------- Header, brand and navigation (sticky header, mobile drawer under 760px) ---------- */
.site-header {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  z-index: 5;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.75rem;
  flex-wrap: wrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
}
.brand svg {
  height: 1.75rem;
  width: auto;
  color: var(--primary);
}
.brand-icon {
  height: 2rem;
  width: 2rem;
  object-fit: contain;
  border-radius: 0.4rem;
  flex: none;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-brand strong {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .footer-brand .muted {
    flex-basis: 100%;
  }
  .footer-brand .sep {
    display: none;
  }
} /* phone: name on one line, tagline underneath (10/09 audit: 'Serena / Massoterapia' broke beside the tagline) */
.footer-brand .brand-icon {
  height: 1.5rem;
  width: 1.5rem;
}
nav {
  display: flex;
  gap: 0.25rem 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.header-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.nav-toggle {
  background: none;
  border: 0;
  color: var(--text);
  padding: 0.4rem;
  cursor: pointer;
  display: inline-flex;
}
.nav-toggle .i-close {
  display: none;
}
.site-header.open .nav-toggle .i-close {
  display: block;
}
.site-header.open .nav-toggle .i-open {
  display: none;
}
@media (max-width: 760px) {
  .site-header .wrap {
    flex-wrap: nowrap;
  }
  .header-right {
    display: flex;
  }
  .header-cta {
    padding: 0.45rem 0.8rem;
    font-size: 0.9rem;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);
    padding: 0.5rem 1.25rem 1rem;
  }
  .site-header.open nav {
    display: flex;
  }
  .site-header nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
    font-size: 1.05rem;
  }
  .site-header nav a.btn {
    display: none;
  }
  .site-header nav a.active {
    border-bottom-color: color-mix(in srgb, var(--text) 8%, transparent);
    color: var(--primary);
    font-weight: 600;
  }
  body.nav-open {
    overflow: hidden;
  }
}
nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
}
nav a.active {
  border-bottom-color: var(--primary);
}
.btn,
nav a.btn {
  background: var(--primary);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  border: 0;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
/* ---------- Page body: main, prose, hero (classic pages), footer, tables ---------- */
main {
  padding: 2.5rem 1.25rem 4rem;
  min-height: 60vh;
}
main.wrap {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
.prose {
  max-width: 46rem;
}
.prose img {
  max-width: 100%;
}
.hero {
  padding: 3rem 0 2rem;
  max-width: 52rem;
}
.hero p.lead {
  font-size: 1.2rem;
  opacity: 0.85;
}
.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  padding: 1.5rem 0 2.5rem;
  font-size: 0.95rem;
}
/* Two rows (11/09: the owner asked for a footer that reads): brand and networks on top, links and copyright below a hairline.
   On a phone everything stacks in that same order instead of wrapping into an uneven pile. */
.site-footer .wrap {
  display: grid;
  gap: 1.1rem;
}
.footer-top,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  padding-top: 1.1rem;
}
/* The legal links keep their own spacing: the row gap of the footer would leave a lonely link a whole line below the others. */
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}
.footer-brand {
  display: grid;
  gap: 0.15rem;
}
.footer-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.muted {
  opacity: 0.7;
}
.small {
  font-size: 0.85rem;
}
table {
  border-collapse: collapse;
  max-width: 100%;
  display: block;
  overflow-x: auto;
}
td,
th {
  padding: 0.4rem 0.6rem;
  border-bottom: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
  text-align: left;
}
/* ---------- Auth pages (/account, sign-in): tabs, panels, inputs, messages, key/value lists ---------- */
.auth {
  max-width: 26rem;
}
.tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
}
.tab {
  background: none;
  border: 0;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  color: var(--text);
  opacity: 0.7;
  border-bottom: 2px solid transparent;
  font: inherit;
}
.tab.active {
  opacity: 1;
  border-bottom-color: var(--primary);
  font-weight: 600;
}
.panel {
  display: grid;
  gap: 0.9rem;
}
label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.95rem;
}
input {
  font: inherit;
  padding: 0.6rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--text) 25%, transparent);
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--bg) 96%, #fff);
  color: var(--text);
}
input:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.or {
  text-align: center;
  opacity: 0.6;
  margin: 1rem 0 0.75rem;
}
.auth .btn.full,
.auth #google .btn {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
} /* Google as wide as the Sign in button (10/09 audit: three alignments in one column) */
.msg {
  padding: 0.7rem 0.9rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.msg.ok {
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}
.msg.err {
  background: #fde8e8;
  color: #8a1c1c;
}
.kv {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.25rem;
}
.kv dt {
  opacity: 0.65;
}
.kv dd {
  margin: 0;
}
/* ---------- Block-based landing (PageDoc.Sections) ---------- */
main.bleed {
  padding: 0;
  max-width: none;
}
main.bleed .wrap {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.wrap.narrow {
  max-width: 46rem;
}
/* Bands (.blk): vertical rhythm, tint/dark backgrounds, eyebrow and lead text */
.blk {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.blk + .blk {
  padding-top: 0;
}
.blk.style-tint {
  background: color-mix(in srgb, var(--primary) 7%, var(--bg));
  padding-top: clamp(3rem, 7vw, 5.5rem);
}
.blk.style-dark {
  background: color-mix(in srgb, var(--primary) 82%, #000);
  color: #fff;
  padding-top: clamp(3rem, 7vw, 5.5rem);
}
.blk.style-dark a:not(.btn) {
  color: #fff;
}
.blk.style-dark .btn {
  background: #fff;
  color: var(--primary);
}
.blk.style-dark .btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.blk.style-tint + .blk,
.blk.style-dark + .blk {
  padding-top: clamp(3rem, 7vw, 5.5rem);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.6rem;
}
.style-dark .eyebrow {
  color: color-mix(in srgb, #fff 75%, var(--primary));
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  opacity: 0.85;
  max-width: 40rem;
  margin: 0.2rem 0 1rem;
}
.blk-head {
  max-width: 44rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.blk-head .lead {
  margin-left: auto;
  margin-right: auto;
}
.blk-in {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 820px) {
  .blk-in {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
  .img-left .blk-in > .blk-copy {
    order: 2;
  }
  .img-left .blk-in > .blk-media {
    order: 1;
  }
}
.blk-media img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px -20px color-mix(in srgb, var(--text) 40%, transparent);
  display: block;
}
/* Hero band */
.blk-hero {
  padding-top: clamp(2.5rem, 6vw, 5rem);
}
.blk-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.blk-hero .blk-media img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
@media (max-width: 819px) {
  .blk-hero .blk-media img {
    aspect-ratio: 16/11;
  }
}
/* Calls to action and button sizes */
.ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.ctas.center {
  justify-content: center;
}
.btn-lg {
  padding: 0.85rem 1.4rem;
  font-size: 1.05rem;
  border-radius: 0.7rem;
}
.btn:hover {
  filter: brightness(1.08);
}
/* Card grids: features, services, steps */
.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
}
/* no orphans (10/09 audit: 6 treatments in 4 columns, 3 quotes in 2): column count follows the item count, never more than 3 unless there are exactly 4 or 8 on a wide screen */
@media (min-width: 820px) {
  .cards,
  .quotes,
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cards:has(> :nth-child(2):last-child),
  .quotes:has(> :nth-child(2):last-child),
  .plans:has(> :nth-child(2):last-child),
  .cards:has(> :nth-child(4):last-child),
  .quotes:has(> :nth-child(4):last-child),
  .plans:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .cards:has(> :nth-child(4):last-child),
  .cards:has(> :nth-child(8):last-child),
  .quotes:has(> :nth-child(4):last-child),
  .plans:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.card {
  background: color-mix(in srgb, var(--bg) 85%, #fff);
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px color-mix(in srgb, var(--text) 50%, transparent);
}
.style-dark .card {
  background: color-mix(in srgb, #fff 8%, transparent);
  border-color: color-mix(in srgb, #fff 15%, transparent);
}
.card h3 {
  margin: 0;
  font-size: 1.15rem;
}
.card h3 a {
  color: inherit;
  text-decoration: none;
}
.card p {
  margin: 0;
  opacity: 0.85;
}
.card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 0.4rem;
}
.card-meta {
  margin-top: auto;
  padding-top: 0.6rem;
  font-weight: 700;
  color: var(--primary);
}
.style-dark .card-meta {
  color: #fff;
}
.icon {
  font-size: 1.9rem;
  line-height: 1;
}
.icon-sm {
  margin-right: 0.3rem;
}
.step-n {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
/* Check lists (benefits) */
.checks {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.6rem;
}
.checks li {
  padding-left: 1.7rem;
  position: relative;
}
.checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}
.checks li p {
  margin: 0;
  display: inline;
}
/* Testimonials */
.quotes {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.quote {
  margin: 0;
  background: color-mix(in srgb, var(--bg) 85%, #fff);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.style-tint .quote {
  background: var(--bg);
}
.quote blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
}
.quote blockquote p {
  margin: 0;
}
.quote blockquote::before {
  content: '“';
  font-size: 2.6rem;
  line-height: 0.2;
  display: block;
  color: var(--primary);
  margin-bottom: 0.9rem;
  font-style: normal;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.quote figcaption img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
}
/* Pricing plans */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}
.plan {
  background: color-mix(in srgb, var(--bg) 85%, #fff);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plan.highlight {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 30%, transparent);
}
.plan h3 {
  margin: 0;
}
.plan .price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.plan ul {
  padding-left: 1.1rem;
  margin: 0.4rem 0;
}
.plan p {
  margin: 0;
  opacity: 0.85;
}
.plan .btn {
  margin-top: auto;
  text-align: center;
}
/* FAQ (native <details>) */
.faq {
  display: grid;
  gap: 0.6rem;
}
.faq details {
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 0.8rem;
  padding: 0.2rem 1.1rem;
  background: color-mix(in srgb, var(--bg) 85%, #fff);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.8rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  font-size: 1.3rem;
  line-height: 1;
  color: var(--primary);
}
.faq details[open] summary::after {
  content: '–';
}
.faq-a {
  padding: 0 0 0.9rem;
  opacity: 0.9;
}
.faq-a p {
  margin: 0 0 0.5rem;
}
/* Gallery */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}
.gallery figure {
  margin: 0;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.9rem;
}
.gallery figcaption {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 0.3rem;
}
/* CTA box */
.cta-box {
  text-align: center;
  max-width: 46rem;
}
.cta-box .lead {
  margin-left: auto;
  margin-right: auto;
}
.cta-box .ctas {
  justify-content: center;
}
.blk-cta.style-plain .cta-box {
  background: color-mix(in srgb, var(--primary) 8%, var(--bg));
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 3.5rem);
}
/* Contact: details list and form */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.7rem;
}
.contact-list p {
  margin: 0;
  display: inline;
}
.contact-form {
  background: color-mix(in srgb, var(--bg) 85%, #fff);
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 1.25rem;
  padding: 1.5rem;
}
.contact-form textarea,
.contact-form select {
  font: inherit;
  padding: 0.6rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--text) 25%, transparent);
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--bg) 96%, #fff);
  color: var(--text);
}
.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}
.contact-form .msg {
  margin-top: 0;
}
/* The form is a grid, so its submit would stretch the full width of the panel. It sizes to its label, like the header's call to
   action (11/09, the owner: "leave this button the size of the Agendar button"). */
.contact-form > button[type='submit'] {
  justify-self: start;
}
/* social footer + floating WhatsApp */
.social {
  display: flex;
  gap: 0.5rem;
}
/* Each network is a round target the size of a fingertip, with the brand's own glyph inside (11/09; they used to be names). */
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
  color: var(--primary);
  text-decoration: none;
}
.social a:hover {
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
}
/* A network with no glyph keeps its name, so the circle grows into a pill instead of clipping the word. */
.social a:has(.social-name) {
  width: auto;
  border-radius: 999px;
  padding: 0 0.9rem;
  font-weight: 600;
}
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.45);
  z-index: 20;
}
.wa-float:hover {
  transform: scale(1.06);
}
/* the button must never sit on top of a form control or the footer (10/09 audit: it covered a <select>, a textarea and the © line on phones) */
body:has(.wa-float) {
  padding-bottom: 5.5rem;
}
@media (max-width: 640px) {
  .wa-float {
    width: 3rem;
    height: 3rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }
}
nav a.btn {
  color: #fff;
}

/* ---------- Visual styles (Brand.Theme → body.theme-*) ----------
   elegante = base above. The others only override: radius, shadow, alignment, hero. */
:root {
  --radius: 1rem;
  --radius-sm: 0.5rem;
}
.card,
.quote,
.plan,
.contact-form,
.blk-media img,
.faq details,
.blk-cta.style-plain .cta-box {
  border-radius: var(--radius);
}
.btn,
nav a.btn,
input,
.card-img {
  border-radius: var(--radius-sm);
}

/* MINIMAL: lots of air, large typography, no boxes or shadows, thin lines */
.theme-minimal {
  --radius: 0.35rem;
  --radius-sm: 0.25rem;
}
.theme-minimal .site-header {
  border-bottom: 0;
  background: var(--bg);
  backdrop-filter: none;
}
.theme-minimal .site-header .wrap {
  min-height: 4.5rem;
}
.theme-minimal .blk-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.theme-minimal .lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  opacity: 0.7;
}
.theme-minimal .eyebrow {
  color: var(--text);
  opacity: 0.5;
}
.theme-minimal .card,
.theme-minimal .quote,
.theme-minimal .plan,
.theme-minimal .faq details,
.theme-minimal .contact-form {
  background: transparent;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}
.theme-minimal .card:hover {
  transform: none;
  box-shadow: none;
}
.theme-minimal .plan.highlight {
  box-shadow: none;
  border-top: 2px solid var(--primary);
}
.theme-minimal .cards,
.theme-minimal .quotes,
.theme-minimal .plans {
  gap: 0 2.5rem;
}
.theme-minimal .blk-media img {
  box-shadow: none;
}
.theme-minimal .blk.style-tint {
  background: transparent;
}
.theme-minimal .blk.style-dark {
  background: var(--text);
  color: var(--bg);
}
.theme-minimal .blk.style-dark .btn {
  background: var(--bg);
  color: var(--text);
}
.theme-minimal .blk-cta.style-plain .cta-box {
  background: transparent;
  border-top: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  border-radius: 0;
}
.theme-minimal .blk-head {
  text-align: left;
  margin-left: 0;
}
.theme-minimal .blk-head .lead {
  margin-left: 0;
}
.theme-minimal .btn {
  background: var(--text);
  color: var(--bg);
}
.theme-minimal .btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.theme-minimal .quote blockquote::before {
  display: none;
}
.theme-minimal .quote blockquote {
  font-style: normal;
  font-size: 1.15rem;
}
.theme-minimal .step-n {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.theme-minimal .site-footer {
  border-top: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
}

/* BOLD: full-screen hero with the photo in the background, pill buttons, strong colours */
.theme-bold {
  --radius: 1.4rem;
  --radius-sm: 999px;
}
.theme-bold .card-img {
  border-radius: 0.9rem;
}
.theme-bold input,
.theme-bold .contact-form textarea,
.theme-bold .contact-form select {
  border-radius: 0.6rem;
}
.theme-bold .blk-hero {
  position: relative;
  padding: clamp(5rem, 14vw, 9rem) 0;
  color: #fff;
  overflow: hidden;
  background: var(--primary);
  isolation: isolate;
}
.theme-bold .blk-hero .blk-in {
  display: block;
}
.theme-bold .blk-hero .blk-copy {
  max-width: 44rem;
  position: relative;
  z-index: 2;
}
.theme-bold .blk-hero .blk-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
}
.theme-bold .blk-hero .blk-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
  filter: brightness(0.5) saturate(1.1);
}
.theme-bold .blk-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.theme-bold .blk-hero .lead {
  color: #fff;
  opacity: 0.9;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
}
.theme-bold .blk-hero .eyebrow {
  color: #fff;
  opacity: 0.85;
}
.theme-bold .blk-hero .btn {
  background: #fff;
  color: var(--primary);
}
.theme-bold .blk-hero .btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.theme-bold .blk + .blk {
  padding-top: clamp(3rem, 7vw, 5.5rem);
}
.theme-bold h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.theme-bold .eyebrow {
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
}
.theme-bold .card {
  border: 0;
  background: color-mix(in srgb, var(--primary) 7%, var(--bg));
}
.theme-bold .card:hover {
  background: color-mix(in srgb, var(--primary) 12%, var(--bg));
}
.theme-bold .plan.highlight {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.theme-bold .plan.highlight .price,
.theme-bold .plan.highlight .muted {
  color: #fff;
}
.theme-bold .plan.highlight .btn {
  background: #fff;
  color: var(--primary);
}
.theme-bold .step-n {
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.2rem;
}
.theme-bold .blk.style-tint {
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
}
.theme-bold .btn {
  padding: 0.7rem 1.4rem;
}
.theme-bold .btn-lg {
  padding: 1rem 1.8rem;
}
.theme-bold .site-header {
  background: var(--bg);
}

/* CLASSIC: centred, serif, square corners, thin borders */
.theme-classico {
  --radius: 0;
  --radius-sm: 0;
}
.theme-classico .site-header .wrap {
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  padding-bottom: 0.6rem;
}
.theme-classico .brand {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.theme-classico nav {
  justify-content: center;
}
.theme-classico nav a {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}
.theme-classico nav a.btn {
  border-radius: 0;
}
.theme-classico .blk-hero .blk-in {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 2.5rem;
}
.theme-classico .blk-hero .blk-copy {
  max-width: 46rem;
  margin: 0 auto;
}
.theme-classico .blk-hero .ctas {
  justify-content: center;
}
.theme-classico .blk-hero .blk-media img {
  aspect-ratio: 21/9;
  object-fit: cover;
  box-shadow: none;
}
.theme-classico .blk-hero h1 {
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.theme-classico .eyebrow {
  letter-spacing: 0.2em;
  color: var(--text);
  opacity: 0.6;
}
.theme-classico .eyebrow::before,
.theme-classico .eyebrow::after {
  content: '—';
  margin: 0 0.5rem;
}
.theme-classico h2 {
  font-weight: 600;
}
.theme-classico .blk-head::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--primary);
  margin: 1rem auto 0;
}
.theme-classico .card,
.theme-classico .quote,
.theme-classico .plan,
.theme-classico .faq details,
.theme-classico .contact-form {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--text) 22%, transparent);
  box-shadow: none;
}
.theme-classico .card {
  text-align: center;
  align-items: center;
}
.theme-classico .card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--primary);
}
.theme-classico .plan {
  text-align: center;
  align-items: center;
}
.theme-classico .plan.highlight {
  box-shadow: none;
  border: 2px solid var(--primary);
}
.theme-classico .plan ul {
  text-align: left;
}
.theme-classico .blk-media img {
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
  padding: 0.4rem;
  background: var(--bg);
}
.theme-classico .quote {
  text-align: center;
}
.theme-classico .quote figcaption {
  justify-content: center;
}
.theme-classico .blk.style-dark {
  background: var(--text);
  color: var(--bg);
}
.theme-classico .blk.style-dark .btn {
  background: var(--bg);
  color: var(--text);
}
.theme-classico .blk-cta.style-plain .cta-box {
  border: 1px solid color-mix(in srgb, var(--text) 22%, transparent);
  background: transparent;
}
.theme-classico .site-footer .wrap {
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}

/* ---- per-block design (07/09): classes/vars set by _Sections from Section.Design and SectionCta ---- */
.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 0.4rem;
}
.btn-link {
  background: none;
  color: var(--primary);
  padding: 0;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blk.align-center .blk-copy,
.blk.align-center .blk-head,
.blk.align-center .prose {
  text-align: center;
}
.blk.align-center .ctas,
.blk.align-center .checks {
  justify-content: center;
}
.blk.align-center .blk-in {
  grid-template-columns: 1fr;
  text-align: center;
}
.blk.align-center .blk-media img {
  margin: 0 auto;
}
.blk.pad-compact,
.blk.pad-compact + .blk.pad-compact {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.blk.pad-spacious {
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.blk[style*='--blk-max'] .wrap {
  max-width: var(--blk-max);
}
.blk.has-bg {
  background: var(--blk-bg);
  color: var(--blk-text, inherit);
}
.blk.has-bg + .blk {
  padding-top: clamp(3rem, 7vw, 5.5rem);
}
.blk-html .wrap > *:first-child {
  margin-top: 0;
}
