:root {
  --ivory: #f8f2ec;
  --paper: #fffaf5;
  --taupe: #8a6256;
  --brown: #67463c;
  --teal: #00666a;
  --teal-dark: #004f54;
  --sage: #aebcaf;
  --stone: #cbbb9d;
  --coral: #f1a06f;
  --ink: #3b302b;
  --muted: #745d55;
  --line: rgba(103, 70, 60, 0.18);
  --shadow: 0 24px 70px rgba(67, 49, 40, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 2% 3%, rgba(203, 187, 157, 0.75) 0 120px, transparent 122px),
    radial-gradient(circle at 99% 36%, rgba(241, 160, 111, 0.35) 0 95px, transparent 97px),
    var(--ivory);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 250px;
  height: 250px;
  border-radius: 42% 58% 64% 36% / 52% 31% 69% 48%;
  opacity: 0.48;
}

body::before {
  left: -80px;
  top: 190px;
  background: var(--sage);
  animation: ambient-shift 16s ease-in-out infinite alternate;
}

body::after {
  right: -90px;
  bottom: 80px;
  background: var(--coral);
  animation: ambient-shift 18s ease-in-out infinite alternate-reverse;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(248, 242, 236, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 242, 236, 0.94);
  box-shadow: 0 10px 30px rgba(67, 49, 40, 0.08);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 78% 22%, var(--coral) 0 9px, transparent 10px),
    radial-gradient(circle at 22% 76%, var(--sage) 0 8px, transparent 9px),
    var(--teal);
  color: var(--paper);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.48rem;
  font-weight: 650;
  font-style: italic;
  line-height: 1;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(67, 49, 40, 0.18);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 8px 20px rgba(67, 49, 40, 0.2);
}

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

.brand strong {
  color: var(--brown);
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: var(--brown);
  font-size: 0.96rem;
  font-weight: 700;
}

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

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.7);
}

.lang-btn {
  width: 38px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--brown);
  cursor: pointer;
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.lang-btn.is-active {
  background: var(--teal);
  color: var(--paper);
}

.lang-btn:hover {
  transform: translateY(-1px);
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.8fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(48px, 7vw, 92px) 0;
}

.hero-copy > * {
  animation: rise-in 720ms ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 240ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 320ms;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  color: var(--brown);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
}

h3 {
  color: var(--teal-dark);
  font-size: 1.35rem;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: var(--teal);
  color: var(--paper);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0, 102, 106, 0.18);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(0, 102, 106, 0.22);
}

.btn-small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  box-shadow: none;
}

.btn-light {
  margin-top: 26px;
  background: var(--paper);
  color: var(--teal-dark);
  border-color: var(--paper);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.62);
  color: var(--brown);
  font-size: 0.88rem;
  font-weight: 800;
  animation: soft-pop 620ms ease both;
}

.trust-strip span:nth-child(2) {
  animation-delay: 80ms;
}

.trust-strip span:nth-child(3) {
  animation-delay: 160ms;
}

.trust-strip span:nth-child(4) {
  animation-delay: 240ms;
}

.trust-strip span:nth-child(5) {
  animation-delay: 320ms;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.portrait-wrap {
  position: absolute;
  inset: 20px 28px 40px 0;
  overflow: hidden;
  border: 12px solid var(--paper);
  border-radius: 46% 54% 45% 55% / 58% 40% 60% 42%;
  background: var(--paper);
  box-shadow: var(--shadow);
  animation: portrait-float 7s ease-in-out infinite;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 39% 61% 46% 54% / 55% 38% 62% 45%;
}

.hero-visual::before {
  right: 0;
  top: 0;
  width: 170px;
  height: 190px;
  background: var(--stone);
  animation: shape-drift 9s ease-in-out infinite;
}

.hero-visual::after {
  left: -30px;
  bottom: 8px;
  width: 180px;
  height: 145px;
  background: var(--coral);
  animation: shape-drift 10s ease-in-out infinite reverse;
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 190px;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--brown);
  box-shadow: var(--shadow);
  animation: note-float 6s ease-in-out infinite;
}

.floating-note strong {
  display: block;
  color: var(--teal);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
}

.intro {
  padding: 80px 0;
}

.intro-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 86px);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.1rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.benefits,
.process,
.contact {
  background: var(--teal-dark);
  color: var(--paper);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(255, 250, 245, 0.18);
}

.benefit-list article {
  min-height: 230px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--teal-dark);
  transition: background 260ms ease, transform 260ms ease;
}

.benefit-list article:hover {
  background: #075a5f;
  transform: translateY(-4px);
}

.benefit-list span,
.service-number {
  color: var(--coral);
  font-weight: 900;
}

.benefit-list h3 {
  margin-top: 34px;
  color: var(--paper);
}

.benefit-list p,
.process p,
.contact p {
  color: rgba(255, 250, 245, 0.78);
}

.services,
.plans,
.testimonials,
.faq {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card,
.plan-card,
.testimonial-grid figure,
.faq-list details,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.68);
  box-shadow: 0 16px 40px rgba(67, 49, 40, 0.07);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.service-card:hover,
.plan-card:hover,
.testimonial-grid figure:hover {
  border-color: rgba(0, 102, 106, 0.32);
  box-shadow: 0 22px 56px rgba(67, 49, 40, 0.12);
  transform: translateY(-6px);
}

.service-card {
  padding: 26px;
}

.service-card.is-featured,
.plan-card.is-featured {
  background: var(--paper);
  border-color: rgba(0, 102, 106, 0.35);
}

.service-card h3 {
  margin: 18px 0;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li + li {
  margin-top: 10px;
}

.solves {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--brown);
  font-weight: 800;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan-card {
  padding: 24px;
}

.price {
  margin: 22px 0 12px;
  color: var(--brown);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.45rem;
  font-weight: 650;
}

.price span {
  color: var(--muted);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 1rem;
}

.plan-card p:not(.price) {
  color: var(--muted);
}

.process {
  padding: clamp(70px, 8vw, 110px) 0;
}

.process .eyebrow,
.contact .eyebrow {
  color: var(--coral);
}

.process h2,
.contact h2 {
  color: var(--paper);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 250, 245, 0.18);
  color: rgba(255, 250, 245, 0.84);
  font-size: 1.08rem;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--coral);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 24px;
}

blockquote {
  margin: 0;
  color: var(--teal-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.35;
}

figcaption {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list details[open] {
  background: var(--paper);
}

.faq-list summary {
  color: var(--brown);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  animation: fade-in 220ms ease both;
}

.contact {
  padding: clamp(74px, 9vw, 120px) 0;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: var(--paper);
}

.contact-card a:not(.btn) {
  min-height: 46px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-size: 1.1rem;
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  background: var(--brown);
  color: rgba(255, 250, 245, 0.78);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

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

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

.service-card.reveal:nth-child(2),
.plan-card.reveal:nth-child(2),
.testimonial-grid figure.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.service-card.reveal:nth-child(3),
.plan-card.reveal:nth-child(3),
.testimonial-grid figure.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.plan-card.reveal:nth-child(4),
.testimonial-grid figure.reveal:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes portrait-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes note-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes shape-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -12px) rotate(4deg);
  }
}

@keyframes ambient-shift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(22px, -18px, 0) scale(1.05);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .intro-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .benefit-list,
  .service-grid,
  .plan-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .brand small,
  .btn-small {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
  }

  .portrait-wrap {
    inset: 0 0 34px;
    border-width: 8px;
  }

  .floating-note {
    right: 12px;
    bottom: 0;
    width: 168px;
  }

  .benefit-list,
  .service-grid,
  .plan-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  footer {
    flex-direction: column;
  }
}
