:root {
  --bg: #f7f2ee;
  --bg-2: #efe4dd;
  --card: rgba(255, 250, 247, 0.78);
  --card-strong: rgba(255, 251, 248, 0.92);
  --text: #2d2422;
  --muted: #6e5b54;
  --brown: #7d5a45;
  --brown-deep: #4d3428;
  --line: rgba(106, 77, 63, 0.10);
  --shadow: 0 22px 50px rgba(98, 70, 58, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf8f5 0%, #f4ece7 100%);
  line-height: 1.6;
}

.background-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}
.blur-one {
  width: 34rem;
  height: 34rem;
  top: -10rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(225, 205, 194, 0.58), rgba(225, 205, 194, 0));
}
.blur-two {
  width: 26rem;
  height: 26rem;
  left: -8rem;
  top: 34rem;
  background: radial-gradient(circle, rgba(217, 194, 180, 0.40), rgba(217, 194, 180, 0));
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 245, 0.76);
  border-bottom: 1px solid rgba(82, 61, 50, 0.06);
}

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

.mini-brand {
  color: var(--text);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.98rem;
}
.nav-cta {
  padding: .72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 90, 69, 0.16);
  background: rgba(255,255,255,0.45);
}

.hero {
  padding: 4.6rem 0 3rem;
}
.hero-grid,
.pricing-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-logo {
  width: min(420px, 100%);
  display: block;
  margin-bottom: 1rem;
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
}
.script {
  margin: 0;
  font-family: 'Parisienne', cursive;
  color: var(--brown);
  font-size: 2rem;
  line-height: 1;
}

h1, h2, h3 {
  margin: 0 0 .85rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.08;
}
h1 { font-size: clamp(2.5rem, 4vw, 4.5rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 3vw, 3.1rem); max-width: 14ch; }
h3 { font-size: 1.5rem; }

.lead {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.05rem;
}
.small { max-width: 44ch; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 1.2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: .95rem 1.35rem;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(94, 68, 57, 0.12);
}
.btn.wide { width: 100%; max-width: 340px; }

.trust-row {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}
.trust-pill,
.intro-card,
.service-card,
.pricing-card,
.about-panel,
.contact-card,
.floating-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.trust-pill {
  border-radius: 999px;
  padding: .85rem 1rem;
  color: var(--muted);
  font-size: .94rem;
}

.hero-visual {
  position: relative;
}
.hero-image-wrap {
  position: relative;
  padding: 1.1rem;
  border-radius: 42% 58% 48% 52% / 34% 38% 62% 66%;
  background: linear-gradient(150deg, rgba(255,255,255,0.42), rgba(217,191,175,0.42));
}
.hero-image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 36% 64% 38% 62% / 44% 38% 62% 56%;
  box-shadow: 0 16px 40px rgba(70, 47, 38, 0.10);
}
.floating-card {
  position: absolute;
  left: -2rem;
  bottom: 1.5rem;
  max-width: 320px;
  border-radius: 28px;
  padding: 1.2rem 1.3rem;
}
.floating-card p:last-child {
  margin: .6rem 0 0;
  color: var(--muted);
}

section { padding: 2rem 0; }
.intro-card,
.section-shell,
.contact-card {
  border-radius: 34px;
}
.intro-card,
.section-shell {
  padding: 2rem;
}
.intro-card p:last-child { margin-bottom: 0; color: var(--muted); max-width: 70ch; }

.section-head { margin-bottom: 1.2rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.service-card {
  border-radius: 26px;
  padding: 1.35rem;
}
.service-icon {
  font-size: 1.35rem;
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  margin-bottom: .8rem;
}
.service-card p { color: var(--muted); margin-bottom: 0; }

.pricing-card {
  border-radius: 32px;
  padding: 1.6rem;
}
.pricing-subtitle {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.pricing-subtitle span {
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--muted);
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(108, 79, 66, 0.08);
}
.price-row span { font-size: 1rem; }
.price-row strong {
  font-size: 1.15rem;
  font-weight: 700;
}
.price-row small {
  display: block;
  margin-top: .15rem;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 500;
}
.price-divider { height: .5rem; }
.pricing-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .94rem;
}

.about-copy p:last-child,
.about-copy p {
  color: var(--muted);
}
.about-panel {
  border-radius: 30px;
  padding: 1.5rem;
}
.about-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.about-panel li + li { margin-top: .75rem; }

.contact-card {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.contact-signature {
  margin: .9rem 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .pricing-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; }
  .floating-card {
    position: relative;
    left: 0;
    bottom: auto;
    margin-top: 1rem;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }
  .nav-wrap,
  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  h1 { max-width: none; }
  h2 { max-width: none; }
  .hero {
    padding-top: 2.8rem;
  }
  .intro-card,
  .section-shell,
  .contact-card {
    padding: 1.35rem;
  }
}
