:root {
  --paper: #fffaf6;
  --surface: #ffffff;
  --soft: #fff1ef;
  --soft-gold: #f6ead4;
  --ink: #2b171c;
  --muted: #716466;
  --line: #eadbd5;
  --wine: #741c2a;
  --wine-dark: #4e111b;
  --red: #a7333f;
  --gold: #c99b45;
  --gold-light: #f4d996;
  --green: #566b5f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.icon-sprite {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  margin: 0;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

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

.site-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 1) 0%, rgba(255, 250, 246, 0.96) 56%, rgba(255, 241, 239, 0.78) 100%);
  min-height: 92svh;
  padding: 24px;
  position: relative;
}

.hero::before {
  background: var(--gold);
  content: "";
  height: 6px;
  left: 24px;
  max-width: 1180px;
  opacity: 0.92;
  position: absolute;
  right: 24px;
  top: 0;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  align-items: center;
  background: var(--wine);
  border: 1px solid rgba(201, 155, 69, 0.42);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 26px;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--wine);
}

.header-cta,
.button,
.floating-whatsapp {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.header-cta {
  background: var(--wine);
  color: #ffffff;
  padding: 0 20px;
}

.header-cta:hover,
.button:hover,
.floating-whatsapp:hover {
  transform: translateY(-1px);
}

.hero-shell {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.78fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(92svh - 92px);
  padding: 62px 0 44px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.15rem;
  font-weight: 700;
  line-height: 1.02;
  margin: 0;
  max-width: 760px;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.72;
  margin: 24px 0 0;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  border: 1px solid transparent;
  padding: 0 22px;
}

.button.primary {
  background: var(--wine);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--wine-dark);
}

.button.secondary {
  background: #ffffff;
  border-color: rgba(116, 28, 42, 0.24);
  color: var(--wine);
}

.button.light {
  background: #ffffff;
  color: var(--wine-dark);
}

.button.secondary.dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-credentials span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--wine-dark);
  font-weight: 800;
  padding: 10px 12px;
}

.hero-portrait {
  background: #ffffff;
  border: 1px solid rgba(201, 155, 69, 0.36);
  border-radius: 8px;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.hero-portrait::before {
  background: var(--gold);
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
  z-index: 2;
}

.hero-portrait img,
.about-photo-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gold-ring {
  border: 2px solid var(--gold);
  border-radius: 8px;
  bottom: 22px;
  left: 22px;
  position: absolute;
  right: 28px;
  top: 22px;
  z-index: 1;
}

.portrait-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  left: 22px;
  max-width: calc(100% - 64px);
  padding: 16px 18px;
  position: absolute;
  z-index: 3;
}

.portrait-card span,
.about-photo-card span {
  color: var(--muted);
}

.highlight-strip {
  background: var(--wine-dark);
  color: #ffffff;
}

.highlight-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 0;
  padding-top: 0;
}

.highlight-grid article {
  align-items: center;
  display: grid;
  gap: 14px;
  min-height: 148px;
  padding: 28px 22px;
}

.highlight-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-icon,
.area-grid span {
  align-items: center;
  background: var(--gold-light);
  border-radius: 8px;
  color: var(--wine-dark);
  display: inline-flex;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 52px;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.section-deep {
  background: var(--wine-dark);
  color: #ffffff;
}

.section h2,
.final-cta h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1.14;
  margin: 0;
  max-width: 780px;
}

.section p,
.final-cta p,
.privacy-note p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.76;
  margin: 18px 0 0;
  max-width: 700px;
}

.section-deep h2,
.section-deep p,
.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.section-deep .section-kicker,
.final-cta .section-kicker {
  color: var(--gold-light);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p,
.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.about-grid,
.formation-layout,
.split-heading,
.consultation-grid,
.testimonials-layout,
.faq-layout,
.footer-grid {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about-blocks {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.about-blocks article,
.timeline article,
.feature-list article,
.steps-list article,
.faq-list details,
.review-cards a,
.blog-grid article,
.area-grid article {
  border-radius: 8px;
}

.about-blocks article,
.timeline article,
.feature-list article,
.steps-list article,
.faq-list details,
.review-cards a,
.blog-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 22px;
}

.about-blocks h3,
.timeline h3,
.steps-list h3 {
  font-size: 1.12rem;
  margin: 0;
}

.about-blocks p,
.timeline p,
.steps-list p {
  margin-top: 10px;
}

.about-photo-card {
  align-self: stretch;
  background: #ffffff;
  border: 1px solid rgba(201, 155, 69, 0.4);
  border-radius: 8px;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.about-photo-card div {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  left: 18px;
  padding: 16px 18px;
  position: absolute;
  right: 18px;
}

.section-gallery {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

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

.gallery-card.portrait img {
  aspect-ratio: 4 / 5;
}

.gallery-card.square img {
  aspect-ratio: 1 / 1;
}

.gallery-card.wide img {
  aspect-ratio: 16 / 10;
}

.gallery-card figcaption {
  background: rgba(78, 17, 27, 0.88);
  border-radius: 8px;
  bottom: 10px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  left: 10px;
  padding: 8px 10px;
  position: absolute;
}

.formation-layout {
  align-items: start;
}

.timeline,
.feature-list,
.steps-list,
.faq-list,
.review-cards {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  gap: 8px;
  grid-template-columns: 110px minmax(0, 1fr);
}

.timeline span,
.feature-list span,
.steps-list span {
  color: var(--gold);
  font-weight: 900;
}

.feature-list article {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 72px;
}

.area-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.area-grid article {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 12px;
  min-height: 78px;
  padding: 16px;
}

.area-grid span {
  flex: 0 0 auto;
  height: 38px;
  width: 44px;
}

.steps-list article {
  display: grid;
  gap: 18px;
  grid-template-columns: 46px minmax(0, 1fr);
}

.testimonials-layout {
  align-items: center;
}

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

.review-cards a {
  display: grid;
  gap: 8px;
  min-height: 136px;
}

.review-cards strong {
  color: var(--wine);
  font-size: 1.25rem;
}

.review-cards span {
  color: var(--muted);
}

.blog-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid article {
  color: var(--wine-dark);
  font-weight: 800;
  min-height: 112px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: rgba(255, 255, 255, 0.76);
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(78, 17, 27, 0.98), rgba(116, 28, 42, 0.94)),
    var(--wine-dark);
  color: #ffffff;
  padding: 88px 0;
  text-align: center;
}

.final-cta-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.center-actions {
  justify-content: center;
}

.privacy-note {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.privacy-note strong {
  color: var(--wine-dark);
}

.privacy-note p {
  font-size: 0.92rem;
  margin-top: 8px;
}

.site-footer {
  background: #241014;
  color: rgba(255, 255, 255, 0.78);
  padding: 40px 0;
}

.footer-grid {
  align-items: start;
}

.site-footer strong {
  color: #ffffff;
}

.site-footer p {
  line-height: 1.7;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
}

.link-icon {
  --icon-size: 19px;
  display: block;
  fill: none;
  flex: 0 0 var(--icon-size);
  height: var(--icon-size);
  max-height: var(--icon-size);
  max-width: var(--icon-size);
  min-height: var(--icon-size);
  min-width: var(--icon-size);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  width: var(--icon-size);
}

.header-cta .link-icon,
.floating-whatsapp .link-icon {
  --icon-size: 18px;
}

.footer-links .link-icon {
  --icon-size: 20px;
}

.button .link-icon {
  --icon-size: 20px;
}

.review-cards .link-icon {
  --icon-size: 24px;
  margin-bottom: 2px;
}

.floating-whatsapp {
  background-color: rgba(116, 28, 42, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.28);
  bottom: 22px;
  box-shadow: 0 14px 30px rgba(116, 28, 42, 0.2);
  color: #ffffff;
  padding: 0 18px;
  position: fixed;
  right: 22px;
  z-index: 20;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background-color: var(--wine);
  box-shadow: 0 18px 40px rgba(116, 28, 42, 0.26);
}

@media (max-width: 1080px) {
  .hero-shell,
  .about-grid,
  .formation-layout,
  .split-heading,
  .consultation-grid,
  .testimonials-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: 0;
  }

  .hero-portrait,
  .about-photo-card {
    min-height: 460px;
  }

  .highlight-grid,
  .area-grid,
  .gallery-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 18px;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 14px;
  }

  .hero-shell {
    gap: 34px;
    padding: 50px 0 28px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-actions,
  .center-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .header-cta .link-icon,
  .button .link-icon,
  .footer-links .link-icon,
  .floating-whatsapp .link-icon {
    --icon-size: 16px;
  }

  .review-cards .link-icon {
    --icon-size: 20px;
  }

  .hero-credentials,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-portrait,
  .about-photo-card {
    min-height: 350px;
  }

  .highlight-grid,
  .area-grid,
  .gallery-grid,
  .blog-grid,
  .review-cards {
    grid-template-columns: 1fr;
  }

  .highlight-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 64px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 2.05rem;
  }

  .timeline article,
  .feature-list article,
  .steps-list article {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    bottom: 14px;
    min-height: 44px;
    padding: 0 14px;
    right: 14px;
  }
}
