:root {
  --ink: #1a1a2e;
  --muted: #5f5b68;
  --line: #eadff0;
  --soft: #f9f1ff;
  --brand: #6b2975;
  --brand-deep: #552775;
  --brand-dark: #1c2b5e;
  --gold: #c8a96e;
  --green: #8cc63f;
  --shadow: 0 18px 50px rgba(85, 39, 117, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { overflow-wrap: anywhere; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
}
.brand img { width: clamp(150px, 18vw, 215px); }
.nav { display: flex; align-items: center; gap: clamp(14px, 3vw, 30px); color: var(--brand-dark); font-weight: 750; }
.nav a:hover { color: var(--brand); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}
.button.primary { color: #fff; background: var(--brand); }
.button.primary:hover { background: var(--brand-deep); }
.button.secondary { color: #fff; border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.12); }
.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 110px clamp(18px, 6vw, 72px) 34px;
  color: #fff;
}
.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(32, 16, 62, .92), rgba(85, 39, 117, .68) 48%, rgba(107, 41, 117, .2)),
    linear-gradient(0deg, rgba(28, 43, 94, .76), transparent 46%);
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 6.1rem);
  line-height: .98;
}
.hero-copy { max-width: 710px; margin: 22px 0 0; color: rgba(255,255,255,.92); font-size: clamp(1.06rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}
.trust-strip div {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 850;
  text-align: center;
}
.section { padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 64px); }
.section-inner { width: min(1120px, 100%); margin: 0 auto; }
.intro { background: var(--soft); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}
h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}
.lead, .section p { color: var(--muted); }
.lead { margin: 0; font-size: 1.08rem; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(85, 39, 117, .07);
}
.card h3 { margin: 0 0 10px; color: var(--ink); line-height: 1.2; }
.card p { margin: 0; }
.home-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.home-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(85, 39, 117, .1);
}
.home-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03) brightness(1.04);
}
.home-gallery figcaption {
  padding: 13px 15px;
  color: var(--brand-deep);
  font-size: .95rem;
  font-weight: 850;
}
.home-note {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.feature { background: var(--soft); }
.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  padding: 14px 16px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 650;
}
.faq { display: grid; gap: 14px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}
.faq summary { cursor: pointer; color: var(--brand-deep); font-weight: 850; }
.faq p { margin-bottom: 0; }
.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, .7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 76px);
  color: #fff;
  background: var(--brand-deep);
}
.contact-band h2 { color: #fff; }
.contact-band p { color: rgba(255,255,255,.82); }
.contact-options { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-options a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.1);
  font-weight: 800;
}
.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin: 0 0 4px; color: var(--brand-deep); font-size: 1.3rem; }
.contact-form label { display: grid; gap: 6px; color: var(--ink); font-size: .9rem; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.contact-form input, .contact-form select { min-height: 46px; padding: 0 12px; }
.contact-form textarea { min-height: 104px; padding: 12px; resize: vertical; }
.contact-form .button { width: 100%; margin-top: 6px; }
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer img { width: 155px; }
@media (max-width: 900px) {
  .site-header, .footer { align-items: flex-start; flex-direction: column; }
  .nav { flex-wrap: wrap; }
  .split, .contact-band { grid-template-columns: 1fr; }
  .card-grid, .trust-strip, .home-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .hero { min-height: 86vh; padding-top: 84px; }
  .button { width: 100%; }
  .hero-actions { flex-direction: column; }
  .card-grid, .trust-strip, .home-gallery { grid-template-columns: 1fr; }
}
