
:root {
  --bg: #fbf8ff;
  --bg-2: #f2edf9;
  --bg-3: #fffdf9;
  --surface: rgba(255,255,255,.78);
  --surface-2: rgba(255,255,255,.92);
  --ink: #23182f;
  --muted: #64586f;
  --line: rgba(35,24,47,.10);
  --plum: #5a2e74;
  --orchid: #9a5bc4;
  --champagne: #c8a364;
  --champagne-dark: #9d7736;
  --rose: #cf6b94;
  --shadow: 0 24px 60px rgba(70, 36, 86, .12);
  --radius: 26px;
  --maxw: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(154,91,196,.18), transparent 25%),
    radial-gradient(circle at left 20%, rgba(200,163,100,.16), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, #f7f2fb 42%, #f9f4ee 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(calc(100% - 2rem), var(--maxw)); margin: 0 auto; }
.section { padding: 92px 0; }
.kicker, .eyebrow {
  display: inline-block;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 800;
}
.kicker {
  padding: .55rem .95rem;
  border-radius: 999px;
  background: rgba(90,46,116,.08);
  color: var(--plum);
  border: 1px solid rgba(90,46,116,.10);
}
.eyebrow { color: var(--champagne-dark); margin-bottom: 1rem; }
h1,h2,h3,h4 {
  margin: 0 0 1rem;
  line-height: 1.05;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(3.1rem, 6.2vw, 6.4rem); }
h2 { font-size: clamp(2.3rem, 4vw, 4.2rem); }
h3 { font-size: clamp(1.5rem, 2vw, 2rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem, 1.45vw, 1.22rem); color: var(--muted); max-width: 64ch; }
.small { font-size: .96rem; }
.muted { color: var(--muted); }
.btn-row, .link-row, .stats, .footer-links { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--plum), var(--orchid));
  color: #fff;
  box-shadow: 0 16px 35px rgba(90,46,116,.22);
}
.btn-secondary {
  background: linear-gradient(135deg, #ecd8fb, #fbf0f6);
  color: var(--plum);
  border: 1px solid rgba(90,46,116,.10);
}
.btn-light {
  background: linear-gradient(135deg, var(--champagne), #ead0a5);
  color: #fff;
  box-shadow: 0 16px 35px rgba(200,163,100,.22);
}
.link-pill {
  display: inline-flex;
  align-items: center;
  padding: .6rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(90,46,116,.12);
  background: rgba(255,255,255,.75);
  color: var(--plum);
  font-weight: 700;
  font-size: .92rem;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251,248,255,.75);
  border-bottom: 1px solid rgba(35,24,47,.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: .9rem; }
.brand-logo {
  width: 50px; height: 50px; object-fit: contain; border-radius: 16px;
  background: rgba(255,255,255,.92); padding: .3rem; box-shadow: 0 8px 20px rgba(90,46,116,.08);
}
.brand-copy strong { display: block; font-size: .97rem; letter-spacing: .08em; text-transform: uppercase; }
.brand-copy span { color: var(--muted); font-size: .85rem; }
.nav-links {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.nav-links a { color: var(--muted); font-weight: 700; font-size: .95rem; }
.nav-links a:hover { color: var(--plum); }
.menu-btn {
  display: none; padding: .7rem .82rem; border-radius: 12px; border: 1px solid rgba(90,46,116,.12);
  background: rgba(255,255,255,.75); color: var(--plum); font-weight: 700;
}
.hero { padding: 36px 0 88px; }
.hero-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.5rem; align-items: center;
}
.hero-copy { padding-top: 1rem; }
.hero-copy h1 { max-width: 12ch; }
.hero-copy .lead { max-width: 58ch; }
.stats { margin-top: 2rem; }
.stat {
  min-width: 170px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(90,46,116,.09);
  box-shadow: var(--shadow);
}
.stat strong { display: block; font-size: 1.2rem; color: var(--plum); }
.stat span { color: var(--muted); font-size: .92rem; display: block; }
.hero-visual {
  position: relative; overflow: hidden; border-radius: 34px; min-height: 620px;
  box-shadow: 0 30px 80px rgba(90,46,116,.18);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(34,22,43,.18) 46%, rgba(34,22,43,.54) 100%);
}
.hero-card {
  position: absolute; right: 1.25rem; bottom: 1.25rem; z-index: 2;
  width: min(420px, calc(100% - 2.5rem));
  padding: 1rem 1.1rem; border-radius: 22px; background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.45); box-shadow: var(--shadow);
}
.hero-card strong { display: block; font-size: 1.05rem; color: var(--plum); margin-bottom: .2rem; }
.hero-card span { color: var(--muted); font-size: .94rem; }
.grid-2, .grid-3, .grid-4, .story-grid, .contact-grid, .gallery-grid, .footer-grid, .process-grid {
  display: grid; gap: 1.4rem;
}
.grid-2, .story-grid, .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card, .soft-panel, .faq-item, .contact-card, .form-card {
  background: var(--surface); border: 1px solid rgba(90,46,116,.08); border-radius: 28px; box-shadow: var(--shadow);
}
.card { overflow: hidden; }
.card figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover figure img { transform: scale(1.03); }
.card-body { padding: 1.25rem; }
.card-body p { color: var(--muted); }
.soft-panel { padding: 1.4rem; }
.list { list-style: none; margin: 1rem 0 0; padding: 0; }
.list li { position: relative; padding-left: 1.45rem; margin-bottom: .85rem; color: var(--muted); }
.list li::before {
  content: ""; position: absolute; left: 0; top: .55rem; width: 9px; height: 9px; border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), var(--rose));
}
.band {
  background: linear-gradient(180deg, rgba(255,255,255,.54), rgba(255,255,255,.34));
  border-top: 1px solid rgba(90,46,116,.06); border-bottom: 1px solid rgba(90,46,116,.06);
}
.metric {
  padding: 1.1rem 1rem; border-radius: 22px; background: rgba(255,255,255,.72);
  border: 1px solid rgba(90,46,116,.08); box-shadow: var(--shadow);
}
.metric strong { display: block; font-size: 1.35rem; color: var(--plum); }
.metric span { display: block; color: var(--muted); }
.media-frame, .gallery-tall, .gallery-wide, .gallery-small {
  overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); background: #f5eff7; position: relative;
}
.media-frame img, .gallery-tall img, .gallery-wide img, .gallery-small img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid { grid-template-columns: 1.1fr .9fr; }
.gallery-stack { display: grid; gap: 1.2rem; }
.gallery-tall { aspect-ratio: 4 / 5; }
.gallery-wide, .gallery-small { aspect-ratio: 16 / 10; }
.figure-label {
  position: absolute; left: 1rem; bottom: 1rem; padding: .65rem .85rem; border-radius: 14px;
  background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.55); color: var(--plum); font-weight: 800;
}
.process-grid { grid-template-columns: repeat(5, 1fr); }
.step {
  padding: 1.15rem 1rem; border-radius: 24px; background: rgba(255,255,255,.76);
  border: 1px solid rgba(90,46,116,.08); box-shadow: var(--shadow);
}
.step-num {
  width: 40px; height: 40px; display: inline-grid; place-items: center; margin-bottom: .8rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--orchid)); color: white; font-weight: 800;
}
.step p { color: var(--muted); }
.contact-card { padding: 1.45rem; }
.contact-card p { color: var(--muted); }
.form-card { padding: 1rem; overflow: hidden; min-height: 780px; }
.form-card iframe { width: 100% !important; min-height: 760px !important; border: 0 !important; }
.faq-grid { display: grid; gap: 1rem; }
.faq-item { padding: 1.15rem 1.2rem 1rem; }
.faq-item h3 { margin-bottom: .55rem; }
.faq-item p { margin: 0; color: var(--muted); }
.cta-banner {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.7rem;
  border-radius: 32px; background: linear-gradient(135deg, rgba(90,46,116,.94), rgba(200,163,100,.92)); color: #fff;
  box-shadow: 0 24px 70px rgba(90,46,116,.25);
}
.cta-banner .lead, .cta-banner p { color: rgba(255,255,255,.86); }
.footer {
  padding: 38px 0 48px; border-top: 1px solid rgba(90,46,116,.08);
}
.footer-grid { grid-template-columns: 1.15fr .85fr; }
.footer p, .footer small { color: var(--muted); }
.footer-links { justify-content: flex-end; }
.footer-links a { color: var(--muted); font-weight: 700; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (max-width: 1120px) {
  .hero-grid, .grid-2, .story-grid, .contact-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 460px; }
}
@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .menu-btn { display: inline-flex; }
  .nav { flex-wrap: wrap; }
  .nav-links { display: none; width: 100%; flex-direction: column; align-items: flex-start; padding-bottom: 1rem; }
  .nav-links.open { display: flex; }
  .grid-3, .grid-4, .process-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 28px; }
  .hero-visual { min-height: 320px; }
  .cta-banner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}
