:root {
  --bg: #f7f3ee;
  --surface: #fffdfa;
  --surface-2: #efe8de;
  --surface-3: rgba(255, 253, 250, 0.72);
  --text: #5d5147;
  --text-strong: #8a7562;
  --line: rgba(138, 117, 98, 0.18);
  --shadow: 0 18px 60px rgba(114, 95, 76, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(190, 178, 165, 0.12), transparent 35%),
    linear-gradient(180deg, #fbf8f4 0%, #f6f1ea 100%);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.05;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-strong);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.3rem, 4.4vw, 4rem); }
h3 { font-size: 1.7rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.site-shell { overflow: clip; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 244, 0.72);
  border-bottom: 1px solid rgba(138, 117, 98, 0.1);
}
.header--solid { position: relative; background: rgba(251, 248, 244, 0.96); }
.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.85rem; font-weight: 600; }
.brand__mark { width: 42px; height: 42px; }
.brand__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--text-strong);
}

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a { font-size: 0.98rem; color: var(--text); }
.nav__cta {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(138, 117, 98, 0.18);
  background: rgba(255,255,255,0.65);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text-strong);
}

.hero {
  position: relative;
  padding: 4.5rem 0 3rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}
.eyebrow,
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-strong);
  font-size: 0.78rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero__lead { font-size: 1.45rem; max-width: 48rem; margin-bottom: 1.4rem; }
.script {
  font-family: 'Parisienne', cursive;
  color: #72675c;
  line-height: 1.45;
}
.hero__list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}
.hero__list li {
  position: relative;
  padding: 1rem 1rem 1rem 3.1rem;
  background: var(--surface-3);
  border: 1px solid rgba(138,117,98,0.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 72px;
  display: flex;
  align-items: center;
}
.hero__list li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(138, 117, 98, 0.25);
  color: var(--text-strong);
  font-weight: 700;
}
.hero__actions,
.consultation__actions,
.pricing-box__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, #b8a592 0%, #9f8973 100%);
  color: white;
  box-shadow: 0 12px 30px rgba(159, 137, 115, 0.28);
}
.btn--secondary,
.btn--ghost {
  border-color: rgba(138, 117, 98, 0.18);
  background: rgba(255,255,255,0.68);
}
.trust-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.trust-row article,
.card,
.contact-card,
.pricing-box,
.consultation {
  background: rgba(255, 253, 250, 0.75);
  border: 1px solid rgba(138, 117, 98, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.trust-row article {
  border-radius: 22px;
  padding: 1.2rem 1.25rem;
}
.trust-row strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  padding: 1rem;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(239,232,222,0.88));
  border: 1px solid rgba(138,117,98,0.16);
  box-shadow: 0 30px 80px rgba(114, 95, 76, 0.18);
}
.hero-card img {
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.hero-card__badge {
  position: absolute;
  left: -22px;
  bottom: 24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(248, 244, 239, 0.92);
  border: 8px solid rgba(182, 170, 154, 0.45);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.hero-card__badge span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--text-strong);
  line-height: 0.8;
}
.hero-card__badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  color: var(--text-strong);
  margin-top: -0.3rem;
}
.hero__texture {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(138,117,98,0.12);
  pointer-events: none;
}
.hero__texture--one {
  width: 580px;
  height: 580px;
  left: -300px;
  top: 150px;
}
.hero__texture--two {
  width: 520px;
  height: 520px;
  right: -280px;
  top: -90px;
}

.section { padding: 5rem 0; }
.section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.36), rgba(239,232,222,0.28));
  border-top: 1px solid rgba(138,117,98,0.08);
  border-bottom: 1px solid rgba(138,117,98,0.08);
}
.section--accent { background: linear-gradient(180deg, rgba(190,178,165,0.09), rgba(255,255,255,0)); }
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}
.section-heading { max-width: 740px; margin-bottom: 2rem; }
.cards { display: grid; gap: 1.3rem; }
.cards--services { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  border-radius: 28px;
  padding: 1.7rem;
}
.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(184, 165, 146, 0.14);
  color: var(--text-strong);
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-card p { margin-bottom: 0; }

.pricing-box,
.consultation {
  border-radius: 36px;
  padding: 2.2rem;
}
.pricing-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.note { font-size: 0.95rem; color: #76695d; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contact-card {
  border-radius: 24px;
  padding: 1.4rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-card__label {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--text-strong);
  font-weight: 700;
}
.contact-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--text-strong);
  line-height: 1.1;
}
.contact-card small { color: #7f7267; }

.footer {
  padding: 3rem 0 2rem;
  background: #f1ebe4;
  border-top: 1px solid rgba(138,117,98,0.12);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.brand--footer { margin-bottom: 1rem; }
.footer__text { max-width: 26rem; }
.footer h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(138,117,98,0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #7f7267;
}

.prose { max-width: 800px; }
.privacy-page .section { padding-top: 4rem; }

@media (max-width: 1080px) {
  .hero__grid,
  .split,
  .pricing-box,
  .contact-grid,
  .footer__grid,
  .cards--services {
    grid-template-columns: 1fr 1fr;
  }
  .cards--services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(251,248,244,0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .hero__grid,
  .split,
  .pricing-box,
  .contact-grid,
  .footer__grid,
  .cards--services,
  .contact-cards,
  .trust-row,
  .hero__list {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 2.5rem; }
  .hero-card__badge {
    width: 132px;
    height: 132px;
    left: 10px;
    bottom: -18px;
  }
  .hero-card__badge span { font-size: 3rem; }
  .hero-card__badge strong { font-size: 1.6rem; }
}
