:root {
  --ivory: #f7f2e8;
  --paper: #fffdf7;
  --sage: #6b7665;
  --sage-deep: #485243;
  --sage-soft: #e7e6d8;
  --clay: #b4a68b;
  --clay-deep: #8f8168;
  --teal: #58675c;
  --mauve: #7b6a62;
  --ink: #20241f;
  --muted: #687064;
  --line: rgba(72, 82, 67, 0.16);
  --shadow: 0 24px 70px rgba(72, 82, 67, 0.16);
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

body.article-open {
  overflow: hidden;
}

body.article-page {
  background: var(--paper);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 104px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 48px;
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease, color 220ms ease;
}

.site-header.is-scrolled {
  padding: 14px 48px;
  color: var(--ink);
  background: rgba(247, 242, 232, 0.9);
  box-shadow: 0 14px 40px rgba(72, 82, 67, 0.12);
  backdrop-filter: blur(18px);
}

.article-page .site-header {
  color: var(--sage-deep);
  background: rgba(247, 242, 232, 0.92);
  box-shadow: 0 14px 40px rgba(72, 82, 67, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: auto;
  padding: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  overflow: visible;
  text-shadow: 0 5px 22px rgba(32, 36, 31, 0.45);
}

.site-header.is-scrolled .brand-header {
  color: var(--sage-deep);
  text-shadow: none;
}

.article-page .brand-header {
  color: var(--sage-deep);
  text-shadow: none;
}

.brand-monogram {
  position: relative;
  display: block;
  width: 58px;
  height: 43px;
}

.brand-header .brand-monogram {
  margin-left: 38px;
  margin-bottom: -2px;
}

.brand-letter {
  position: absolute;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
}

.brand-letter-g {
  top: 1px;
  left: 0;
  color: currentColor;
  font-size: 48px;
}

.brand-letter-p {
  top: -13px;
  left: 29px;
  color: var(--clay);
  font-size: 46px;
}

.brand-name {
  color: currentColor;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(32, 36, 31, 0.18));
}

@media (min-width: 981px) {
  .brand-header {
    color: #fff;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.main-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  padding: 150px 48px 34px;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 36, 31, 0.94) 0%, rgba(72, 82, 67, 0.72) 38%, rgba(32, 36, 31, 0.22) 72%, rgba(32, 36, 31, 0.08) 100%),
    url("assets/hero-metamorfose.jpeg") center center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(32, 36, 31, 0.72), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9cfbc;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 82px;
  font-weight: 700;
}

h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
}

h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.brand-slogan {
  margin: 0 0 32px;
  color: #d9cfbc;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
}

.hero-actions,
.testimonial-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--sage);
  box-shadow: 0 16px 40px rgba(72, 82, 67, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sage-deep);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-notes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  align-self: end;
  width: min(1120px, 100%);
  margin: 80px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-notes a {
  min-height: 128px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 220ms ease;
}

.hero-notes a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-notes span,
.service-item span,
.event-tag,
.blog-card span,
.testimonial-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-notes strong {
  display: block;
  max-width: 270px;
  font-size: 16px;
  line-height: 1.4;
}

.intro {
  background: var(--paper);
}

.intro-grid,
.about-grid,
.agenda-grid,
.testimonial-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: start;
}

.section-kicker {
  position: sticky;
  top: 112px;
}

.section-kicker span {
  display: inline-block;
  max-width: 280px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.12;
}

.intro-copy h2 {
  max-width: 760px;
}

.intro-copy p,
.section-heading p,
.split-heading p,
.agenda-copy p,
.testimonial-intro p,
.contact-copy p,
.about-content p {
  color: var(--muted);
}

.about {
  background:
    linear-gradient(90deg, rgba(231, 230, 216, 0.72), transparent 44%),
    var(--ivory);
}

.about-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  max-height: 640px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.brand-panel {
  display: grid;
  min-height: 560px;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #6b7665, #58675c);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-panel::before,
.brand-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.brand-panel::before {
  width: 340px;
  height: 340px;
}

.brand-panel::after {
  width: 470px;
  height: 470px;
  opacity: 0.55;
}

.brand-emblem {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 34px;
  color: #fff;
  text-align: center;
}

.brand-monogram-large {
  width: 150px;
  height: 120px;
  margin-bottom: 20px;
}

.brand-monogram-large .brand-letter-g {
  font-size: 122px;
}

.brand-monogram-large .brand-letter-p {
  top: -30px;
  left: 72px;
  font-size: 120px;
}

.brand-emblem strong {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
}

.brand-emblem small {
  display: block;
  margin-top: 18px;
  color: #d9cfbc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-caption {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(260px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(72, 82, 67, 0.88);
  backdrop-filter: blur(14px);
}

.image-caption strong,
.image-caption span {
  display: block;
}

.image-caption span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.mobile-about-caption {
  display: none;
}

.credentials {
  display: grid;
  gap: 0;
  margin-top: 26px;
}

.credentials article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.credentials article:last-child {
  border-bottom: 1px solid var(--line);
}

.credentials span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.credentials strong {
  display: block;
  margin-bottom: 4px;
  grid-column: 2;
}

.credentials p {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
}

.identity-note {
  padding: 18px 20px;
  border-left: 3px solid var(--clay);
  color: var(--sage-deep) !important;
  background: rgba(180, 166, 139, 0.13);
}

.approach {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(72, 82, 67, 0.97), rgba(107, 118, 101, 0.94)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.approach .eyebrow {
  color: #d9cfbc;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 52px;
}

.approach .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.approach-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-family: var(--serif);
}

.approach-card p {
  color: rgba(255, 255, 255, 0.78);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-item span,
.event-tag,
.blog-card span,
.testimonial-card span {
  color: var(--sage);
}

.service-item h3 {
  margin-bottom: 0;
}

.service-item p {
  margin: 0;
  color: var(--muted);
}

.service-item a,
.text-link,
.blog-card a,
.blog-card button {
  color: var(--sage);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.service-item a::after,
.text-link::after,
.blog-card a::after,
.blog-card button::after {
  content: " →";
}

.agenda {
  background: var(--sage-soft);
}

.agenda-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.event-stack {
  display: grid;
  gap: 18px;
}

.event-card {
  padding: 30px;
  border: 1px solid rgba(72, 82, 67, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 22px 60px rgba(72, 82, 67, 0.1);
}

.event-card p {
  color: var(--muted);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.event-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--sage-deep);
  background: rgba(107, 118, 101, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
}

.testimonial-card {
  min-height: 390px;
  padding: 48px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(72, 82, 67, 0.97), rgba(123, 106, 98, 0.92)),
    url("https://images.unsplash.com/photo-1490730141103-6cac27aaab94?auto=format&fit=crop&w=1400&q=80") center / cover;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin-bottom: 38px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.16;
}

.testimonial-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.testimonial-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  transition: transform 200ms ease, background 200ms ease;
}

.testimonial-controls button:hover {
  color: #fff;
  background: var(--sage);
  transform: translateY(-2px);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.blog-card div {
  padding: 22px;
}

.blog-card h3 {
  min-height: 104px;
  margin-bottom: 20px;
  font-size: 26px;
}

.blog-card p {
  min-height: 82px;
  margin: -8px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.article-main {
  padding-top: 84px;
}

.article-hero-section {
  padding: 76px 0 44px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(231, 230, 216, 0.72), rgba(255, 253, 247, 0.96)),
    var(--paper);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 58px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-hero-section h1 {
  max-width: 830px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.94;
}

.article-hero-lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.72;
}

.article-hero-image {
  overflow: hidden;
  border: 1px solid rgba(72, 82, 67, 0.14);
  border-radius: var(--radius);
  background: var(--sage-soft);
  box-shadow: var(--shadow);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.article-wrapper {
  padding: 70px 0 96px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 72px;
  align-items: start;
}

.article-content {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.86;
}

.article-content p {
  margin: 0 0 22px;
  color: var(--muted);
}

.article-content h2,
.article-content h3 {
  margin: 46px 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.08;
}

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

.article-signature {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-sidebar {
  position: sticky;
  top: 122px;
}

.article-sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}

.article-sidebar-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-sidebar-card h2,
.article-sidebar-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.15;
}

.article-sidebar-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.article-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.article-actions .button {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
}

.article-actions .button-secondary {
  color: var(--sage-deep);
  border-color: var(--line);
  background: transparent;
}

.article-related {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.article-related .split-heading {
  margin-bottom: 28px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.related-card {
  display: grid;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.related-card span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-card strong {
  align-self: end;
  max-width: 430px;
  font-size: 23px;
  line-height: 1.28;
}

.article-modal[hidden] {
  display: none;
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  padding: 28px;
  place-items: center;
}

.article-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 20, 0.72);
  backdrop-filter: blur(8px);
}

.article-modal__panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(90dvh, 860px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(20, 24, 20, 0.38);
}

.article-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(32, 36, 31, 0.42);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.article-modal__close span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: #fff;
}

.article-modal__close span:first-child {
  transform: rotate(45deg);
}

.article-modal__close span:last-child {
  transform: rotate(-45deg);
}

.article-modal__image {
  width: 100%;
  max-height: 340px;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.article-modal__intro,
.article-modal__body {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

.article-modal__intro {
  padding: 42px 0 22px;
}

.article-modal__intro span {
  display: block;
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-modal__intro h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.article-modal__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.article-modal__body {
  padding: 0 0 58px;
  color: var(--ink);
}

.article-modal__body h3 {
  margin: 36px 0 12px;
  font-size: 28px;
}

.article-modal__body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
}

body.article-open .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
}

.faq {
  background: var(--ivory);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  width: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background: var(--paper);
}

.faq-item span {
  display: block;
  font-weight: 800;
}

.faq-item p {
  display: none;
  margin: 12px 0 0;
  color: var(--muted);
}

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

.contact {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(32, 36, 31, 0.95), rgba(107, 118, 101, 0.9)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.contact .eyebrow {
  color: #d9cfbc;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-options a {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: background 220ms ease, transform 220ms ease;
}

.contact-options a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.contact-options span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.72);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #20241f;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  align-items: center;
  width: 190px;
  color: #fff;
}

.site-footer p {
  max-width: 440px;
  margin: 18px 0 0;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: var(--sage);
  box-shadow: 0 18px 40px rgba(32, 36, 31, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 24px 54px rgba(32, 36, 33, 0.28);
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  body {
    overflow-x: hidden;
  }

  .site-header,
  .site-header.is-scrolled {
    padding: 14px 20px;
  }

  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand-header {
    width: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .site-header.is-scrolled .brand-header,
  .menu-open .brand-header {
    color: var(--sage-deep);
    background: transparent;
    text-shadow: none;
  }

  .brand-header .brand-monogram {
    width: 46px;
    height: 34px;
    margin-left: 22px;
    margin-bottom: -1px;
  }

  .brand-header .brand-letter-g {
    font-size: 38px;
  }

  .brand-header .brand-letter-p {
    top: -10px;
    left: 23px;
    font-size: 37px;
  }

  .brand-header .brand-name {
    font-size: 21px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .menu-open .brand-header,
  .menu-open .menu-toggle {
    position: relative;
    z-index: 102;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle span + span {
    margin-top: -12px;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 96px 24px 40px;
    gap: 24px;
    color: var(--ink);
    background: var(--ivory);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 22px;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    padding: 12px 22px;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 20px 24px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(32, 36, 31, 0.95) 0%, rgba(72, 82, 67, 0.68) 42%, rgba(32, 36, 31, 0.18) 74%, rgba(32, 36, 31, 0.08) 100%),
      url("assets/hero-metamorfose.jpeg") 68% center / cover;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy {
    max-width: 560px;
    line-height: 1.55;
  }

  .brand-slogan {
    font-size: 23px;
  }

  .hero-notes,
  .intro-grid,
  .about-grid,
  .agenda-grid,
  .testimonial-grid,
  .contact-grid,
  .faq-grid,
  .split-heading,
  .approach-grid,
  .blog-grid,
  .service-item {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    margin-top: 44px;
  }

  .hero-notes a {
    min-height: auto;
    padding: 20px;
  }

  .section-kicker {
    position: static;
  }

  .service-item {
    gap: 12px;
    padding: 24px 0;
  }

  .image-caption {
    right: 16px;
  }

  .image-panel img {
    max-height: 520px;
    aspect-ratio: 4 / 3.8;
    object-position: center top;
  }

  .approach-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 26px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .section-pad {
    padding: 58px 0;
  }

  .brand-header {
    width: auto;
    padding: 0;
  }

  .brand-header .brand-monogram {
    width: 38px;
    height: 29px;
    margin-left: 18px;
  }

  .brand-header .brand-letter-g {
    font-size: 32px;
  }

  .brand-header .brand-letter-p {
    top: -8px;
    left: 19px;
    font-size: 31px;
  }

  .brand-header .brand-name {
    font-size: 18px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 24px;
  }

  .hero {
    min-height: auto;
    padding: 104px 14px 20px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(32, 36, 31, 0.95) 0%, rgba(32, 36, 31, 0.7) 42%, rgba(32, 36, 31, 0.24) 72%, rgba(32, 36, 31, 0.1) 100%),
      url("assets/hero-metamorfose.jpeg") 76% center / cover;
  }

  .hero .eyebrow {
    max-width: 300px;
    font-size: 11px;
    line-height: 1.45;
  }

  .hero-copy {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.58;
  }

  .brand-slogan {
    margin-bottom: 24px;
    font-size: 21px;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-notes a {
    min-height: auto;
    padding: 16px;
  }

  .hero-notes strong {
    max-width: none;
    font-size: 15px;
  }

  .intro-grid,
  .about-grid,
  .agenda-grid,
  .testimonial-grid,
  .contact-grid,
  .faq-grid {
    gap: 34px;
  }

  .credentials article {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .credentials strong,
  .credentials p {
    grid-column: 1;
  }

  .credentials span {
    font-size: 22px;
  }

  .credentials p {
    font-size: 14px;
    line-height: 1.62;
  }

  .image-panel img {
    max-height: 420px;
    aspect-ratio: 4 / 4.25;
  }

  .image-caption {
    position: static;
    width: 100%;
    margin-top: 12px;
    background: rgba(72, 82, 67, 0.94);
  }

  .image-panel > .image-caption {
    display: none;
  }

  .mobile-about-caption {
    display: block;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    background: rgba(72, 82, 67, 0.94);
    box-shadow: 0 18px 44px rgba(72, 82, 67, 0.18);
  }

  .approach-card,
  .event-card,
  .brand-emblem,
  .contact-form,
  .testimonial-card {
    padding: 22px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card p {
    font-size: 25px;
    line-height: 1.22;
  }

  .testimonial-controls button {
    width: 42px;
    height: 42px;
  }

  .blog-card h3 {
    min-height: auto;
  }

  .blog-card p {
    min-height: auto;
  }

  .blog-card img {
    aspect-ratio: 16 / 9;
  }

  .article-modal {
    align-items: end;
    padding: 12px;
  }

  .article-modal__panel {
    max-height: 92dvh;
  }

  .article-modal__close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .article-modal__image {
    max-height: 220px;
    aspect-ratio: 4 / 2.45;
  }

  .article-modal__intro,
  .article-modal__body {
    width: calc(100% - 32px);
  }

  .article-modal__intro {
    padding: 30px 0 18px;
  }

  .article-modal__intro h2 {
    font-size: 31px;
  }

  .article-modal__intro p {
    font-size: 15px;
  }

  .article-modal__body {
    padding-bottom: 42px;
  }

  .article-modal__body h3 {
    font-size: 24px;
  }

  .article-modal__body p {
    font-size: 15px;
    line-height: 1.76;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    width: 156px;
  }

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

@media (max-width: 980px) {
  .article-main {
    padding-top: 72px;
  }

  .article-hero-section {
    padding: 52px 0 34px;
  }

  .article-hero-grid,
  .article-layout,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-hero-grid {
    gap: 34px;
  }

  .article-hero-image img {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }

  .article-layout {
    gap: 42px;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .article-main {
    padding-top: 68px;
  }

  .article-hero-section {
    padding: 42px 0 28px;
  }

  .article-meta {
    gap: 6px 12px;
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.45;
  }

  .article-hero-section h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  .article-hero-lead {
    font-size: 16px;
    line-height: 1.66;
  }

  .article-hero-image img {
    min-height: 250px;
    aspect-ratio: 4 / 3;
  }

  .article-wrapper {
    padding: 42px 0 64px;
  }

  .article-content {
    font-size: 16px;
    line-height: 1.76;
  }

  .article-content h2,
  .article-content h3 {
    margin-top: 34px;
    font-size: 28px;
  }

  .article-sidebar-card,
  .related-card {
    padding: 20px;
  }

  .article-related {
    padding: 52px 0;
  }

  .related-card {
    min-height: 156px;
  }

  .related-card strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
