:root {
  --bg: #fdf8f4;
  --bg-soft: #f7efe8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #3f342f;
  --muted: #7a6b64;
  --line: rgba(63, 52, 47, 0.08);
  --accent: #c4898d;
  --accent-dark: #a56f72;
  --accent-soft: #ecd8cf;
  --gold-soft: #d9bea1;
  --leaf: #99a88f;
  --shadow: 0 24px 60px rgba(63, 52, 47, 0.10);
  --shadow-soft: 0 16px 38px rgba(63, 52, 47, 0.07);
  --radius: 28px;
  --radius-lg: 36px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.95), transparent 30%),
    radial-gradient(circle at bottom right, rgba(236,216,207,0.48), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #fbf5ef 40%, #f7efe8 100%);
}
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50; background: rgba(253, 248, 244, 0.78);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.nav { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo { font-weight: 700; letter-spacing: 0.03em; color: var(--accent-dark); }
nav { display: flex; align-items: center; gap: 24px; }
nav a { color: var(--muted); font-size: 0.97rem; transition: color 0.22s ease; }
nav a:hover { color: var(--text); }
.hero { position: relative; overflow: hidden; padding: 100px 0 86px; }
.hero::before {
  content: ""; position: absolute; width: 480px; height: 480px; right: -120px; top: -120px;
  border-radius: 50%; background: radial-gradient(circle, rgba(236,216,207,0.65) 0%, rgba(236,216,207,0) 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 42px; align-items: center; }
.eyebrow, .section-tag {
  display: inline-block; margin-bottom: 18px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-dark);
}
.hero-copy h1 { margin: 0 0 20px; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: 1.04; letter-spacing: -0.035em; }
.hero-text { margin: 0 0 32px; max-width: 620px; font-size: 1.07rem; color: var(--muted); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px;
  border-radius: 999px; font-size: 0.98rem; font-weight: 600;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(180deg, #cf9499 0%, #b77f83 100%); box-shadow: 0 16px 34px rgba(183,127,131,0.26); }
.btn-primary:hover { background: linear-gradient(180deg, #c58b90 0%, #ab7478 100%); }
.btn-secondary { background: rgba(255,255,255,0.84); border: 1px solid rgba(63, 52, 47, 0.08); color: var(--text); }
.btn-secondary:hover { background: rgba(255,255,255,0.98); }
.hero-visual { position: relative; }
.hero-image {
  min-height: 560px; border-radius: 38px; box-shadow: var(--shadow);
  background: linear-gradient(rgba(63,52,47,0.10), rgba(63,52,47,0.03)),
  url("https://images.unsplash.com/photo-1519415943484-9fa1873496d4?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}
.floating-note {
  position: absolute; left: -12px; bottom: 26px; padding: 16px 18px; border-radius: 18px;
  background: rgba(255,255,255,0.84); backdrop-filter: blur(12px); box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.7);
}
.note-title { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 6px; }
.note-text { display: block; color: var(--muted); font-size: 0.94rem; }
.intro { padding: 12px 0 88px; }
.intro-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 24px; }
.intro-card {
  padding: 30px 26px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72));
  border: 1px solid rgba(255,255,255,0.72); box-shadow: var(--shadow-soft);
}
.intro-card.large { padding: 36px 32px; }
.intro-card h2, .intro-card h3 { margin: 0 0 12px; }
.intro-card h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.12; }
.intro-card p { margin: 0; color: var(--muted); }
.quote-strip { padding: 10px 0 12px; }
.quote-strip p {
  margin: 0; padding: 26px 30px; text-align: center; border-radius: 999px;
  background: linear-gradient(90deg, rgba(236,216,207,0.7), rgba(255,255,255,0.82), rgba(236,216,207,0.7));
  box-shadow: var(--shadow-soft); color: var(--accent-dark); font-size: 1.04rem;
}
.section { padding: 92px 0; }
.soft { background: radial-gradient(circle at left center, rgba(236,216,207,0.34), transparent 26%), linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.12)); }
.center { text-align: center; }
.section-title { margin: 0 0 18px; font-size: clamp(2rem, 3vw, 3.15rem); line-height: 1.12; }
.cards { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative; padding: 34px 28px; border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76));
  border: 1px solid rgba(255,255,255,0.72); box-shadow: var(--shadow); overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 5px;
  background: linear-gradient(90deg, rgba(196,137,141,0.85), rgba(217,190,161,0.28), rgba(153,168,143,0.10));
}
.card-icon {
  width: 54px; height: 54px; margin-bottom: 18px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(236,216,207,0.82), rgba(255,255,255,0.72)); color: var(--accent-dark);
  font-size: 1.35rem; box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.card h3 { margin: 0 0 12px; font-size: 1.28rem; }
.card p { margin: 0; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; align-items: center; }
.feature-image {
  min-height: 500px; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  background: linear-gradient(rgba(63,52,47,0.08), rgba(63,52,47,0.03)),
  url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}
.feature-text h2 { margin: 0 0 14px; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.12; }
.feature-text p { margin: 0 0 18px; color: var(--muted); }
.benefits { margin: 0; padding-left: 20px; }
.benefits li { margin-bottom: 10px; color: var(--text); }
.gallery-section { padding-top: 80px; }
.gallery-grid { margin-top: 40px; display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 22px; }
.gallery-card { min-height: 280px; border-radius: 30px; box-shadow: var(--shadow); }
.gallery-a {
  background: linear-gradient(rgba(63,52,47,0.08), rgba(63,52,47,0.03)),
  url("https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}
.gallery-b {
  background: linear-gradient(rgba(63,52,47,0.08), rgba(63,52,47,0.03)),
  url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}
.gallery-c {
  background: linear-gradient(rgba(63,52,47,0.08), rgba(63,52,47,0.03)),
  url("https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}
.contact-box {
  padding: 58px 30px; border-radius: 36px;
  background: radial-gradient(circle at top right, rgba(236,216,207,0.34), transparent 26%), linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  border: 1px solid rgba(255,255,255,0.74); box-shadow: var(--shadow);
}
.contact-text { max-width: 730px; margin: 0 auto 30px; color: var(--muted); }
.footer { padding: 28px 0 38px; }
.footer-inner { padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; color: var(--muted); }
.scroll-progress { position: fixed; top: 0; left: 0; z-index: 120; height: 3px; width: 0%; background: linear-gradient(90deg, #cf9499 0%, #b77f83 100%); }
.scroll-top {
  position: fixed; right: 18px; bottom: 18px; width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: linear-gradient(180deg, #cf9499 0%, #b77f83 100%); color: #fff; font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 16px 30px rgba(183,127,131,0.25); opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 80;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.topbar.scrolled { box-shadow: 0 10px 30px rgba(63,52,47,0.08); background: rgba(253,248,244,0.92); }
nav a.active { color: var(--text); font-weight: 600; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.reveal-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .hero-grid, .intro-grid, .cards, .feature-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 380px; }
  .feature-image { min-height: 340px; }
  .gallery-card { min-height: 220px; }
  .floating-note { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 720px) {
  .topbar { position: relative; }
  .nav { min-height: auto; padding: 18px 0; flex-direction: column; align-items: flex-start; }
  nav { flex-wrap: wrap; gap: 12px 16px; }
  .hero { padding: 72px 0 58px; }
  .section, .intro { padding: 72px 0; }
  .quote-strip p { border-radius: 26px; padding: 22px 20px; }
  .contact-box { padding: 42px 22px; border-radius: 28px; }
  .footer-inner { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
