:root {
  --bg: #f4efe6;
  --bg-soft: #efe5d2;
  --paper: rgba(255, 251, 245, 0.76);
  --text: #1c211b;
  --muted: #586254;
  --line: rgba(28, 33, 27, 0.12);
  --accent: #6b8458;
  --accent-dark: #495d3d;
  --accent-warm: #c88f58;
  --shadow: 0 24px 60px rgba(54, 43, 23, 0.15);
  --radius: 28px;
  --radius-small: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 143, 88, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(107, 132, 88, 0.18), transparent 32%),
    linear-gradient(180deg, #f8f1e5 0%, #f4efe6 45%, #ece1cd 100%);
}

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

img {
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 16px auto;
}

.hero,
.section,
.footer {
  border: 1px solid var(--line);
  background: var(--paper);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero,
.section {
  border-radius: 32px;
  margin-bottom: 18px;
}

.hero {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.5;
}

.hero::before {
  width: 280px;
  height: 280px;
  background: rgba(200, 143, 88, 0.22);
  top: -70px;
  right: -40px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: rgba(107, 132, 88, 0.15);
  left: -80px;
  bottom: -120px;
}

.nav,
.hero-grid,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 48px;
  position: relative;
}

.brand,
h1,
h2 {
  font-family: "Prata", serif;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.92);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  min-width: 52px;
}

.lang-button.is-active {
  background: linear-gradient(135deg, rgba(200, 143, 88, 0.18), rgba(107, 132, 88, 0.22));
  color: var(--accent-dark);
}

.floating-lang {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 40;
  display: none;
  align-items: flex-end;
  flex-direction: column-reverse;
  gap: 10px;
}

.floating-lang-menu {
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.floating-lang.is-open .floating-lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-lang .lang-button,
.floating-lang-toggle {
  min-width: 58px;
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(73, 93, 61, 0.18);
  background: rgba(255, 248, 238, 0.97);
  box-shadow: 0 16px 28px rgba(54, 43, 23, 0.16);
}

.floating-lang .lang-button {
  padding: 10px 12px;
}

.floating-lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.floating-lang-current {
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 248, 238, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
  color: #fffaf0;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 14px 28px rgba(73, 93, 61, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(73, 93, 61, 0.22);
}

.button-ghost {
  background: transparent;
  border-color: rgba(73, 93, 61, 0.24);
  color: var(--accent-dark);
  box-shadow: none;
}

.button-small {
  padding: 10px 18px;
}

.hero-grid,
.contact-layout,
.about-grid,
.service-grid,
.details-grid,
.benefit-grid {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.95;
  margin: 0 0 18px;
  max-width: 9.5em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0;
}

h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.lead,
.hero-points,
.service-card p,
.about-card p,
.detail-panel li,
.timeline-item p,
.offer-banner p,
.benefit-card p,
.faq-item p,
.contact-copy p,
.footer p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}

.hero-points li::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent-warm);
}

.hero-card {
  display: grid;
  gap: 16px;
}

.profile-photo {
  margin: 0;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(54, 43, 23, 0.12);
  aspect-ratio: 2 / 3;
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.95), rgba(233, 220, 196, 0.95));
}

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

.status-banner {
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid rgba(73, 93, 61, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(200, 143, 88, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.95), rgba(236, 225, 205, 0.92));
  box-shadow: 0 16px 36px rgba(54, 43, 23, 0.08);
}

.status-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--accent-dark);
}

.status-banner h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.25;
}

.status-banner p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.stat-card,
.about-card,
.service-card,
.detail-panel,
.benefit-card,
.lead-form,
.offer-banner,
.faq-item,
.timeline-item {
  border: 1px solid var(--line);
  background: rgba(255, 248, 238, 0.76);
  border-radius: var(--radius);
}

.stat-card,
.about-card,
.service-card,
.detail-panel,
.benefit-card,
.offer-banner,
.timeline-item {
  padding: 22px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.stat-card strong {
  font-size: 1.35rem;
}

.stat-card.accent {
  background: linear-gradient(135deg, rgba(107, 132, 88, 0.9), rgba(73, 93, 61, 0.95));
  color: #fff8ee;
}

.stat-card.accent span,
.stat-card.accent p {
  color: rgba(255, 248, 238, 0.8);
}

.section {
  padding: 28px;
}

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

.about-grid,
.details-grid,
.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.detail-panel ul {
  margin: 0;
  padding-left: 20px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 143, 88, 0.24), rgba(107, 132, 88, 0.24));
  font-weight: 800;
}

.offer-banner {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(200, 143, 88, 0.9), rgba(107, 132, 88, 0.95));
  color: #fffaf3;
}

.offer-banner .eyebrow,
.offer-banner p,
.offer-banner .offer-note {
  color: rgba(255, 250, 243, 0.9);
}

.offer-note {
  font-size: 0.95rem;
}

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

.legal-copy {
  display: grid;
  gap: 10px;
}

.legal-copy h3 {
  margin: 18px 0 0;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin-bottom: 0;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-methods a {
  font-weight: 700;
}

.lead-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(73, 93, 61, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(200, 143, 88, 0.35);
  border-color: rgba(200, 143, 88, 0.65);
}

.checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
}

.checkbox input {
  margin-top: 5px;
}

.checkbox span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.checkbox a {
  text-decoration: underline;
}

.form-response {
  min-height: 24px;
  margin: 0;
  font-weight: 600;
}

.form-response.success {
  color: var(--accent-dark);
}

.form-response.error {
  color: #8d3a1f;
}

.section-cta {
  margin-top: 24px;
}

.footer {
  border-radius: 28px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.nav-call-mobile {
  display: none;
}

.nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-layout,
  .about-grid,
  .service-grid,
  .details-grid,
  .benefit-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .lang-switcher {
    order: 3;
  }
}

@media (max-width: 760px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 248, 238, 0.95);
  }

  .nav.nav-open .nav-links {
    display: grid;
  }

  .nav-links a,
  .nav .button-small {
    width: 100%;
    text-align: center;
  }

  .nav-call-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lang-switcher,
  .nav > .button-small {
    display: none;
  }

  .hero-card {
    gap: 12px;
  }

  .status-banner {
    padding: 18px;
  }

  .profile-photo {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .button-small,
  .button-ghost {
    min-height: 50px;
  }

  .nav-call-mobile,
  .floating-lang {
    display: flex;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--container));
  }

  .hero,
  .section,
  .footer {
    padding: 18px;
    border-radius: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.04;
  }

  .button,
  .button-small {
    width: 100%;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .lead-form {
    padding: 18px;
  }

  .hero-points {
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(calc(100% - 12px), var(--container));
    margin: 8px auto;
  }

  .hero,
  .section,
  .footer {
    padding: 14px;
    border-radius: 20px;
    margin-bottom: 12px;
  }

  .brand {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .lead,
  .service-card p,
  .about-card p,
  .detail-panel li,
  .timeline-item p,
  .offer-banner p,
  .benefit-card p,
  .faq-item p,
  .contact-copy p,
  .footer p,
  .form-note,
  .checkbox span,
  .legal-copy p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .stat-card,
  .about-card,
  .service-card,
  .detail-panel,
  .benefit-card,
  .offer-banner,
  .timeline-item,
  .faq-item,
  .lead-form,
  .status-banner {
    padding: 16px;
    border-radius: 18px;
  }

  .timeline-index {
    width: 52px;
    height: 52px;
  }

  .contact-methods {
    flex-direction: column;
    align-items: flex-start;
  }

  .lead-form input,
  .lead-form textarea {
    padding: 12px 14px;
  }

  .floating-lang {
    right: 10px;
    bottom: 12px;
  }

  .floating-lang .lang-button,
  .floating-lang-toggle {
    min-width: 52px;
    min-height: 48px;
    border-radius: 16px;
  }
}

@media (max-width: 340px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }
}
