:root {
  --black: #090909;
  --charcoal: #171717;
  --ivory: #f7f0e7;
  --paper: #fffaf5;
  --pink: #ec087c;
  --pink-dark: #bd075f;
  --gold: #c7a16b;
  --ink: #231f20;
  --muted: #6f6967;
  --line: #ded3c6;
  --shadow: 0 22px 55px rgba(31, 23, 25, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(780px, 100%); }
.center { text-align: center; margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9,9,9,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; text-decoration: none; font-weight: 800; letter-spacing: .02em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--pink); color: white; font-family: Georgia, serif; border: 1px solid rgba(255,255,255,.35);
}
.brand-text { font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav > a { color: #fff; text-decoration: none; font-size: .94rem; }
.site-nav > a:not(.btn):hover { color: #ffd9ec; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: #fff; }

.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(236,8,124,.17), transparent 31%),
    linear-gradient(120deg, #080808 0%, #151011 50%, #0a0a0a 100%);
  color: white;
  padding: 82px 0 88px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
.eyebrow { margin: 0 0 14px; color: var(--pink); font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; margin-top: 0; }
.hero h1 { font-size: clamp(2.7rem, 5vw, 5.5rem); max-width: 760px; margin-bottom: 22px; }
.hero-lead { color: #e7ddd5; font-size: 1.14rem; max-width: 670px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; text-decoration: none; font-weight: 800;
  padding: 14px 21px; border-radius: 999px; background: var(--pink); color: white; border: 1px solid var(--pink);
  transition: .2s ease; box-shadow: 0 10px 28px rgba(236,8,124,.20);
}
.btn:hover { transform: translateY(-2px); background: var(--pink-dark); border-color: var(--pink-dark); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.42); box-shadow: none; }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn-small { padding: 9px 14px; font-size: .88rem !important; }
.btn.full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: #d7ccc3; font-size: .9rem; }
.trust-row span::before { content: "◆"; color: var(--pink); margin-right: 8px; font-size: .72em; }
.hero-logo-card { position: relative; justify-self: center; width: min(480px, 100%); }
.hero-logo-card::before { content: ""; position: absolute; inset: 7% 8% -5% -5%; border: 1px solid rgba(199,161,107,.45); border-radius: 32px; transform: rotate(-2.5deg); }
.hero-logo-card img { position: relative; border-radius: 28px; box-shadow: 0 34px 75px rgba(0,0,0,.46); border: 1px solid rgba(255,255,255,.10); }

.section { padding: 88px 0; }
.section.alt { background: #f1e9df; }
.section.dark { background: var(--charcoal); color: white; }
.section h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); margin-bottom: 20px; }
.section-heading { margin-bottom: 38px; max-width: 760px; }
.section-heading.center { margin-inline: auto; }
.light h2 { color: white; }
.intro p:last-child { color: var(--muted); font-size: 1.08rem; }

.cards { display: grid; gap: 20px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: 0 14px 36px rgba(55,35,35,.05); }
.card .icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #111; color: #fff; font-weight: 900; font-size: .8rem; margin-bottom: 22px; border: 2px solid var(--pink); }
.card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.card p { margin: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split p:not(.eyebrow) { color: var(--muted); }
.area-panel { background: var(--black); color: white; border-radius: 28px; padding: 10px 28px; box-shadow: var(--shadow); }
.area-panel div { padding: 25px 2px; border-bottom: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.area-panel div:last-child { border-bottom: 0; }
.area-panel strong { font-family: Georgia, serif; font-size: 1.7rem; }
.area-panel span { color: #c8bdb7; font-size: .9rem; text-align: right; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 26px; background: rgba(255,255,255,.035); }
.step > span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--pink); font-weight: 900; margin-bottom: 24px; }
.step h3 { font-size: 1.35rem; }
.step p { color: #c9c0bb; margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: start; }
.contact-grid > div > p:not(.eyebrow) { color: var(--muted); }
.contact-links { margin-top: 30px; display: grid; gap: 12px; }
.contact-links a { border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; text-decoration: none; display: flex; flex-direction: column; background: #fff; }
.contact-links a:hover { border-color: var(--pink); }
.contact-links span { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 800; }
.contact-links strong { overflow-wrap: anywhere; }
.contact-directory { margin-top: 30px; display: grid; gap: 12px; }
.contact-entry { border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; background: #fff; display: grid; gap: 5px; }
.contact-entry > span { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 800; }
.contact-entry a { color: var(--black); text-decoration: none; overflow-wrap: anywhere; }
.contact-entry a:hover { color: var(--pink); }
.contact-card { background: #111; color: white; padding: 32px; border-radius: 26px; box-shadow: var(--shadow); }
.contact-card h3 { font-size: 1.55rem; }
.contact-card ul { padding-left: 20px; color: #d5cbc5; margin-bottom: 26px; }
.contact-card li { margin: 8px 0; }

.cta-strip { background: #eadccf; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 46px 0; }
.cta-inner { display: flex; gap: 30px; align-items: center; justify-content: space-between; }
.cta-inner h2 { font-size: clamp(1.7rem, 2.8vw, 2.65rem); margin: 0; max-width: 790px; }

.site-footer { background: #090909; color: #fff; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.footer-grid strong { font-family: Georgia, serif; font-size: 1.45rem; }
.footer-grid p { color: #bfb4af; margin: 8px 0 0; }
.footer-contact { display: grid; justify-items: start; gap: 5px; }
.footer-contact span { color: #918782; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-top: 7px; }
.footer-contact span:first-child { margin-top: 0; }
.footer-contact a { color: white; text-decoration: none; overflow-wrap: anywhere; }
.footer-contact a:hover { color: #ffb5d8; }
.footer-bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #918782; font-size: .84rem; display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-logo-card { width: min(430px, 90%); }
  .cards.four, .steps { grid-template-columns: repeat(2, 1fr); }
  .site-nav { position: absolute; top: 74px; left: 0; right: 0; background: #0b0b0b; padding: 18px 20px 24px; flex-direction: column; align-items: stretch; display: none; border-top: 1px solid rgba(255,255,255,.08); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 6px 0; }
  .menu-toggle { display: block; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 26px, 1160px); }
  .hero { padding: 58px 0 62px; }
  .hero h1 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .section { padding: 66px 0; }
  .cards.four, .steps, .footer-grid { grid-template-columns: 1fr; }
  .area-panel div { flex-direction: column; gap: 4px; }
  .area-panel span { text-align: left; }
  .cta-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
}
