:root {
  --bg: #f4f1eb;
  --bg-alt: #ebe6dc;
  --ink: #1c1a16;
  --muted: #5c574e;
  --line: rgba(28, 26, 22, 0.12);
  --accent: #3d4a3c;
  --accent-hover: #2c362c;
  --paper: #faf8f4;
  --radius: 2px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 1.25rem;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0 0 0.5rem;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.25rem;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.brand-role,
.footer-role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: none;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.35rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.icon-whatsapp {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

.btn-header,
.btn-primary {
  background: var(--accent);
  color: #f7f4ee;
}

.btn-header {
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary:hover,
.btn-header:hover {
  background: var(--accent-hover);
}

.hero {
  padding: 3.5rem 0 4.5rem;
}

.hero-grid,
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.lead {
  font-size: 1.12rem;
  max-width: 38rem;
}

.hero-actions {
  margin: 1.75rem 0 1.5rem;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-bar li {
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
}

.media {
  margin: 0;
}

.media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.media picture {
  display: block;
}

.media-hero img {
  aspect-ratio: 1 / 1;
}

.media-about img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head-left {
  margin-left: 0;
  text-align: left;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--paper);
  padding: 1.6rem 1.5rem 1.35rem;
  border: 1px solid var(--line);
}

.mid-cta {
  text-align: center;
  margin: 2.25rem 0 0;
}

.formation {
  max-width: 42rem;
}

.formation-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.formation-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.formation-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.formation-detail {
  color: var(--muted);
  font-size: 0.95rem;
}

.locations {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.locations-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.locations-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0 0 0.75rem;
}

.locations-lead {
  margin: 0;
}

.locations-grid {
  display: grid;
  gap: 1.25rem;
}

.location {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.6rem 1.5rem 1.4rem;
}

.location-city {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: var(--ink);
  margin: 0 0 0.15rem;
}

.location-hood {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.location-address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.location-map {
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}

.location-map:hover {
  border-bottom-color: var(--accent);
}

.cta-band {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
}

.footer-address {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.faq-wrap {
  max-width: 44rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-size: 1.1rem;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0.75rem 0 0.25rem;
}

.site-footer {
  padding: 3rem 0 6rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.footer-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer-legal {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-legal a {
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}

.legal-page {
  max-width: 42rem;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.legal-page h2 {
  font-size: 1.45rem;
  margin: 2rem 0 0.65rem;
}

.legal-updated {
  margin-top: 2rem;
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent);
  color: #f7f4ee;
  text-decoration: none;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius);
  z-index: 30;
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 1.15rem;
  }

  .btn-header {
    padding: 0.5rem 0.7rem;
    font-size: 0.72rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }

  .about-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 4rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1.2fr 0.9fr 1.1fr;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (min-width: 1100px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
