:root {
  --bg: #f9f6f0; /* Warm Alabaster */
  --bg-soft: #e3d5c8; /* Soft Sand */
  --text: #2c1e16; /* Espresso Brown */
  --muted: rgb(44 30 22 / 72%);
  --accent: #c5a059; /* Muted Gold */
  --accent-strong: #8b5e34; /* Warm Cocoa */
  --card-border: rgb(44 30 22 / 16%);
  --max-width: 1120px;
  --font-headline: "Montserrat", "Helvetica Neue", helvetica, arial, sans-serif;
  --font-subtitle: "Lato", "Helvetica Neue", helvetica, arial, sans-serif;
  --font-text: "Open Sans", "Helvetica Neue", helvetica, arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-text);
  background-color: #f6f1ea;
  background-image:
    linear-gradient(rgb(255 255 255 / 72%), rgb(255 255 255 / 72%)),
    url("/images/linen-texture-light.png");
  background-repeat: repeat;
  background-size: 420px 420px;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.55;
}

.section-card {
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(1px);
  border-radius: 20px;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

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

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

.topbar {
  padding: 0.45rem 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  flex: 0;
}

.topbar-right {
  flex: 0;
}

.language-switcher {
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.language-current {
  font-weight: 600;
  color: var(--accent-strong);
}

.language-link {
  color: var(--muted);
  transition: color 200ms ease;
}

.language-link:hover {
  color: var(--accent-strong);
}

.language-divider {
  color: var(--card-border);
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: stretch;
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(
      to right,
      rgb(44 30 22 / 72%) 0%,
      rgb(44 30 22 / 28%) 55%,
      rgb(44 30 22 / 08%) 100%
    ),
    url("/images/NataliaBackground.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(94vh - 3rem);
}

.eyebrow {
  font-family: var(--font-subtitle);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.76rem;
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  font-family: var(--font-headline);
  font-weight: 400;
  line-height: 1.05;
  margin-top: 0;
}

h4,
h5,
h6 {
  font-family: var(--font-headline);
  font-weight: 400;
}

.offers-intro,
.references-subtitle,
.process-intro,
.process-outro,
.offer-label {
  font-family: var(--font-subtitle);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 42ch;
  margin-bottom: 1.75rem;
}

.lead p {
  margin: 0;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.lead p + p {
  margin-top: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  min-height: 52px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  color: #2c1e16;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
  background-color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn:hover {
  color: #2c1e16;
  background-color: rgb(197 160 89 / 86%);
  box-shadow: 0 2px 12px rgb(197 160 89 / 28%);
}

.btn-secondary {
  border-color: rgb(139 94 52 / 35%);
  color: var(--text);
  background-color: transparent;
}

.btn-icon {
  height: 20px;
  width: auto;
  margin-right: 0.5rem;
}

.btn-secondary:hover {
  color: var(--text);
  background-color: rgb(227 213 200 / 55%);
}

.hero-image-wrap {
  place-self: end center;
  width: min(100%, 600px);
  background: transparent;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.hero-image {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  max-height: 80vh;
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero .hero-grid {
  grid-template-columns: 5fr 7fr;
}

.hero .hero-copy {
  color: #fff;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 3;
}

.hero .hero-copy h1 {
  color: #fff;
}

.hero .hero-copy .lead {
  color: rgb(255 255 255 / 78%);
}

.hero .hero-copy .eyebrow {
  color: rgb(197 160 89 / 90%);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.25rem;
}

.hero-trust-item {
  font-size: 0.74rem;
  font-family: var(--font-subtitle);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 60%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-trust-item::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, rgb(227 213 200 / 75%), rgb(227 213 200 / 45%));
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.hero + .section,
.hero + .section-dark {
  border-top: 2px solid rgb(44 30 22 / 18%);
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.card-image {
  border-radius: 18px;
  border: 1px solid var(--card-border);
}

.coach-image {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.coach-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.25rem;
}

.benefits-section {
  background: radial-gradient(circle at 85% 0%, rgb(197 160 89 / 20%), rgb(249 246 240 / 30%) 40%);
}

.benefits-intro {
  max-width: 70ch;
  color: var(--muted);
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.3rem;
  background: rgb(249 246 240 / 82%);
}

.benefit-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.benefit-index {
  margin: 0 0 0.65rem;
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgb(139 94 52 / 30%);
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.process-section {
  background: linear-gradient(180deg, rgb(249 246 240 / 70%), rgb(227 213 200 / 32%));
}

.process-intro,
.process-outro {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.process-card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.2rem;
  background: rgb(249 246 240 / 85%);
}

.process-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.process-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.process-index {
  margin: 0 0 0.65rem;
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgb(139 94 52 / 30%);
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.process-section .btn {
  margin-top: 1.2rem;
}

.facts-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.facts-list li {
  margin-bottom: 0.55rem;
}

.mission {
  margin-top: 1.2rem;
  color: var(--text);
  font-weight: 600;
  max-width: 62ch;
}

.offers-intro {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
}

.offers-group {
  margin-top: 1.8rem;
}

.offers-group-title {
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  gap: 0.9rem;
  padding: 1.4rem;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: rgb(249 246 240 / 70%);
}

.offer-card h3 {
  margin: 0;
}

.offer-card h4 {
  margin: 0;
  font-size: 1.15rem;
}

.offer-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.offer-text {
  margin: 0;
  color: var(--muted);
}

.offer-highlights {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
}

.offer-highlights li {
  margin-bottom: 0.35rem;
}

.offer-note {
  margin: 0;
  color: var(--accent-strong);
  font-weight: 600;
}

.offer-result {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(44 30 22 / 10%);
  color: var(--text);
}

.offer-result strong {
  color: var(--accent-strong);
}

.offer-meta {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
}

.offer-meta li {
  margin-bottom: 0.3rem;
}

.offer-card-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  gap: 0.6rem;
}

.offer-card-actions .btn {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  min-height: 56px;
  height: auto;
  padding: 14px 20px;
  gap: 12px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.offer-card-actions .btn .btn-icon {
  margin-right: 0;
}

.offer-card-featured {
  background: linear-gradient(170deg, rgb(197 160 89 / 26%), rgb(227 213 200 / 48%));
  border-color: rgb(139 94 52 / 35%);
  box-shadow: 0 12px 34px rgb(44 30 22 / 14%);
}

.references-section {
  background: radial-gradient(circle at 8% 5%, rgb(139 94 52 / 10%), rgb(249 246 240 / 25%) 45%);
}

.references-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
}

.references-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.reference-chip {
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgb(249 246 240 / 85%);
  text-align: center;
  font-weight: 600;
  padding: 0.75rem;
  gap: 0.55rem;
}

.reference-logo {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

.reference-name {
  margin: 0;
  font-size: 0.9rem;
}

.signature-block {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.signature-photo {
  border-radius: 16px;
  max-width: 290px;
  border: 0;
  box-shadow: none;
}

.signature-image {
  max-width: 150px;
  filter: contrast(1.02) saturate(1.02);
}

.page {
  min-height: 100vh;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.back-link:hover {
  color: var(--text);
}

.page-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  align-items: start;
}

.page-image-wrap {
  justify-self: end;
  width: min(100%, 420px);
}

.prose {
  color: var(--muted);
  max-width: 65ch;
}

.prose h2 {
  color: var(--text);
  margin-top: 2.25rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.prose ul {
  padding-left: 1.1rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-link {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgb(227 213 200 / 35%);
  transition:
    transform 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: currentcolor;
}

.site-footer {
  border-top: 1px solid var(--card-border);
  padding: 1.1rem 0 1.6rem;
}

.site-footer-inner {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer-inner a {
  color: var(--muted);
}

.site-footer-inner a:hover {
  color: var(--accent-strong);
}

/* ── Testimonial Slider ────────────────────────────────── */

.testimonials-section {
  padding: 6rem 0;
  background: transparent;
}

.testimonials-title {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 3.5rem;
  color: var(--text);
}

.testimonials-slider {
  position: relative;
}

.testimonials-track {
  position: relative;
  min-height: 340px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.testimonial-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(18%);
  transition: filter 600ms ease;
}

.testimonial-slide.is-active .testimonial-image {
  filter: grayscale(0%);
}

.testimonial-quote {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  padding-top: 2rem;
}

.testimonial-quote::before {
  content: "\201C";
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-headline);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.45;
}

.testimonials-section .testimonial-quote p {
  font-family: var(--font-text);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin: 0 0 1.5rem;
}

.testimonial-name {
  font-family: var(--font-subtitle);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.testimonials-dot {
  appearance: none;
  border: none;
  background: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-dot::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--card-border);
  transition:
    background 300ms ease,
    transform 300ms ease;
}

.testimonials-dot.is-active::before,
.testimonials-dot:hover::before {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── ESKYNA Methode ────────────────────────────────────── */

.method-section {
  padding: 6rem 0;
  background: var(--bg-soft);
}

.method-eyebrow {
  text-align: center;
  margin-bottom: 0.75rem;
}

.method-heading {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.method-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.method-tagline {
  text-align: center;
  font-family: var(--font-subtitle);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4rem;
}

.method-journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  position: relative;
}

.method-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 44px;
  right: calc(-0.75rem - 2px);
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--accent);
  opacity: 0.55;
  z-index: 2;
}

.method-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.25rem;
}

.method-step-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgb(44 30 22 / 8%);
}

.method-step-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.method-step-badge {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 0 0 0.2rem;
  line-height: 1;
}

.method-step-title {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.method-step-text {
  font-family: var(--font-text);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.method-quote {
  margin: 3.5rem auto 0;
  max-width: 660px;
  text-align: center;
  padding: 0;
  border: none;
}

.method-section .method-quote p {
  font-family: var(--font-text);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.method-quote footer {
  font-family: var(--font-subtitle);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Praxisbeispiele (Cases) ───────────────────────────── */

.cases-section {
  padding: 6rem 0;
  background: var(--bg);
}

.cases-title {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.cases-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.case-card {
  background: var(--bg-soft);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.case-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cases-section .case-row p {
  font-family: var(--font-text);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

.case-tag {
  display: inline-block;
  font-family: var(--font-subtitle);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--card-border);
  color: var(--muted);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  align-self: flex-start;
}

.case-tag-service {
  background: rgb(197 160 89 / 14%);
  color: var(--accent-strong);
}

.case-row-result .case-tag {
  background: var(--accent);
  color: #fff;
}

.cases-section .case-row-result p {
  font-weight: 600;
  color: var(--accent-strong);
}

/* ── Referenz-Label ────────────────────────────────────── */

.reference-label {
  font-family: var(--font-subtitle);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0.15rem 0 0;
}

/* ── FAQ Akkordeon ─────────────────────────────────────── */

.faq-section {
  padding: 6rem 0;
  background: var(--bg-soft);
}

.faq-title {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  color: var(--text);
}

.faq-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-item:first-of-type {
  border-top: 1px solid var(--card-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  list-style: none;
  user-select: none;
}

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

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 250ms ease;
  line-height: 1;
}

.faq-item[open] > .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] > .faq-question {
  color: var(--accent-strong);
}

.faq-answer {
  padding: 0 0 1.4rem;
}

.faq-section .faq-answer p {
  font-family: var(--font-text);
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (width <= 900px) {
  .hero-grid,
  .intro-grid,
  .contact-grid,
  .cards,
  .page-grid,
  .offers-grid,
  .benefits-grid,
  .references-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    padding-top: 2.25rem;
  }

  .hero-image-wrap {
    position: absolute;
    right: -1rem;
    bottom: 0;
    justify-self: auto;
    width: min(54vw, 420px);
    z-index: 1;
  }

  .hero-image {
    max-height: 72vh;
  }

  .hero .hero-copy {
    max-width: min(32rem, 68vw);
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgb(44 30 22 / 34%) 0%,
        rgb(44 30 22 / 18%) 38%,
        rgb(44 30 22 / 42%) 100%
      ),
      linear-gradient(
        90deg,
        rgb(44 30 22 / 78%) 0%,
        rgb(44 30 22 / 56%) 42%,
        rgb(44 30 22 / 12%) 100%
      );
  }

  .testimonial-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .testimonial-image-wrap {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .testimonial-quote::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

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

  .method-step:not(:last-child)::after {
    display: none;
  }
}

@media (width <= 680px) {
  .hero {
    min-height: 720px;
    padding: 2rem 0 0;
    background-image:
      linear-gradient(
        180deg,
        rgb(44 30 22 / 86%) 0%,
        rgb(44 30 22 / 68%) 36%,
        rgb(44 30 22 / 54%) 100%
      ),
      url("/images/NataliaBackground.png");
    background-position: 62% center;
  }

  .hero-grid {
    align-items: start;
    min-height: calc(720px - 2rem);
  }

  .hero .hero-copy {
    max-width: min(100%, 28rem);
    padding-right: 1rem;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.9rem, 11vw, 4.3rem);
  }

  .hero .hero-copy .lead {
    max-width: 30ch;
    color: rgb(255 255 255 / 84%);
  }

  .hero-actions {
    max-width: 18rem;
  }

  .hero-image-wrap {
    right: -2.25rem;
    width: min(76vw, 360px);
    opacity: 0.94;
  }

  .hero-image {
    max-height: 62vh;
  }

  .hero::after {
    background:
      radial-gradient(circle at 28% 26%, rgb(44 30 22 / 16%), transparent 32%),
      linear-gradient(
        180deg,
        rgb(44 30 22 / 18%) 0%,
        rgb(44 30 22 / 08%) 34%,
        rgb(44 30 22 / 30%) 100%
      ),
      linear-gradient(
        90deg,
        rgb(44 30 22 / 84%) 0%,
        rgb(44 30 22 / 62%) 48%,
        rgb(44 30 22 / 12%) 100%
      );
  }
}

@media (width <= 900px) and (orientation: portrait) {
  .hero .hero-copy {
    backdrop-filter: none;
  }
}

@media (width <= 540px) {
  .btn {
    white-space: normal;
  }

  .hero {
    min-height: 680px;
  }

  .hero-grid {
    min-height: calc(680px - 2rem);
  }

  .hero .hero-copy {
    max-width: 100%;
    padding-right: 2.5rem;
  }

  .hero .hero-copy .lead {
    max-width: 26ch;
  }

  .hero-image-wrap {
    right: -2.75rem;
    width: min(82vw, 320px);
  }

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