:root {
  --bg: #f8f3ee;
  --paper: #fffdfa;
  --panel: #f1e6df;
  --panel-deep: #e7d7cc;
  --accent: #b97a62;
  --accent-dark: #9a624e;
  --sage: #97a48e;
  --text: #2b2724;
  --muted: #655d58;
  --line: rgba(43, 39, 36, 0.1);
  --shadow: 0 18px 50px rgba(84, 62, 53, 0.10);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 2rem));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: linear-gradient(180deg, #fbf6f1 0%, #f6f0eb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

.section-kicker,
.eyebrow,
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(185, 122, 98, 0.2);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

.glow-one {
  background: rgba(210, 170, 152, 0.32);
  top: -8rem;
  left: -10rem;
}

.glow-two {
  background: rgba(151, 164, 142, 0.2);
  bottom: 0;
  right: -10rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(248, 243, 238, 0.72);
  border-bottom: 1px solid rgba(43, 39, 36, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #d6aa98);
  color: white;
  box-shadow: var(--shadow);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 1rem;
}

.brand-text em {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav > a:not(.btn),
.lang-toggle {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav > a:not(.btn):hover,
.lang-toggle:hover {
  color: var(--text);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.lang-active {
  color: var(--accent-dark);
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.mobile-toggle span {
  width: 1rem;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 10px 24px rgba(154, 98, 78, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(43, 39, 36, 0.1);
}

.btn-full {
  width: 100%;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  max-width: 44rem;
}

.hero-text,
.intro-copy,
.section-heading p,
.about-copy p,
.feature-item p,
.price-copy,
.step-card p,
.testimonial-card p,
.faq-section p,
.cta-copy p,
.site-footer p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sage);
}

.hero-visual {
  position: relative;
}

.portrait-card {
  position: relative;
  min-height: 39rem;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 1.25rem 1.5rem 0 auto;
  width: 85%;
  height: 88%;
  background: linear-gradient(180deg, rgba(185, 122, 98, 0.12), rgba(151, 164, 142, 0.12));
  border-radius: 42% 58% 46% 54% / 39% 38% 62% 61%;
}

.portrait-frame {
  position: relative;
  margin-left: auto;
  width: min(30rem, 100%);
  height: 38rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  border: 1px dashed rgba(154, 98, 78, 0.35);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.85), transparent 36%),
    linear-gradient(135deg, rgba(231, 215, 204, 0.86), rgba(241, 230, 223, 0.7));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.floating-card {
  position: absolute;
  width: min(16rem, 74vw);
  padding: 1rem 1.15rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-one {
  bottom: 4.5rem;
  left: 0;
}

.card-two {
  top: 3rem;
  right: -1rem;
}

.intro-band {
  padding-top: 2rem;
}

.intro-grid,
.two-col,
.about-grid,
.faq-grid,
.cta-panel,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading.centered,
.centered {
  text-align: center;
}

.narrow {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.before-after-grid,
.pricing-grid,
.steps-grid,
.testimonial-grid {
  display: grid;
  gap: 1.4rem;
}

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

.compare-card,
.price-card,
.step-card,
.testimonial-card,
.contact-card,
.about-note,
.feature-item,
.faq-list details {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(43, 39, 36, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.compare-card,
.price-card,
.step-card,
.testimonial-card,
.feature-item,
.about-note,
.contact-card,
.faq-list details {
  padding: 1.45rem;
}

.compare-card ul,
.price-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.1rem 0 1.4rem;
}

.compare-muted {
  background: rgba(255, 255, 255, 0.58);
}

.compare-accent,
.price-card.highlighted {
  background: linear-gradient(180deg, rgba(255, 250, 247, 0.95), rgba(241, 230, 223, 0.95));
  border-color: rgba(185, 122, 98, 0.18);
}

.soft-panel {
  background: linear-gradient(180deg, rgba(241, 230, 223, 0.5), rgba(248, 243, 238, 0.1));
}

.feature-list {
  display: grid;
  gap: 1rem;
}

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

.price {
  font-size: 2rem;
  font-family: var(--serif);
  margin: 0.35rem 0 0.8rem;
}

.process-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(151, 164, 142, 0.08));
}

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

.step-card span {
  display: inline-flex;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(185, 122, 98, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-grid {
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 30rem;
}

.about-shape {
  position: absolute;
  inset: 0 10% 8% 0;
  border-radius: 38% 62% 57% 43% / 44% 39% 61% 56%;
  background: linear-gradient(135deg, rgba(185, 122, 98, 0.22), rgba(151, 164, 142, 0.22));
}

.about-note {
  position: absolute;
  inset: auto 0 0 auto;
  max-width: 23rem;
}

.about-note span {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--accent-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

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

.testimonial-card {
  padding-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.82);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list p {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.cta-section {
  padding-bottom: 6rem;
}

.cta-panel {
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.75), rgba(241,230,223,0.8));
  border: 1px solid rgba(43,39,36,0.08);
  box-shadow: var(--shadow);
  align-items: start;
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.mini-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-card label {
  display: grid;
  gap: 0.45rem;
}

.contact-card span {
  font-weight: 600;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  border: 1px solid rgba(43, 39, 36, 0.1);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  outline: 2px solid rgba(185, 122, 98, 0.3);
  outline-offset: 2px;
}

.site-footer {
  padding: 0 0 6rem;
}

.footer-grid {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(43, 39, 36, 0.08);
  align-items: start;
}

.footer-brand {
  margin-bottom: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.4rem;
  color: var(--muted);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .two-col,
  .about-grid,
  .faq-grid,
  .cta-panel,
  .footer-grid,
  .pricing-grid,
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3rem;
  }

  .pricing-grid,
  .steps-grid,
  .testimonial-grid {
    max-width: 44rem;
    margin: 0 auto;
  }

  .hero-copy,
  .section-heading,
  .narrow {
    max-width: none;
  }

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

@media (max-width: 900px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.8rem);
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 252, 248, 0.98);
    border: 1px solid rgba(43, 39, 36, 0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

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

  .portrait-frame {
    width: 100%;
    height: 30rem;
  }

  .card-two {
    right: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

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

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

  .portrait-frame {
    height: 24rem;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .cta-panel {
    padding: 1.2rem;
  }

  .site-footer {
    padding-bottom: 7rem;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 20;
  }
}
