:root {
  --ink: #171415;
  --charcoal: #262123;
  --ivory: #f7f2ea;
  --paper: #fffdf9;
  --plum: #9f2f6f;
  --plum-soft: #c74e98;
  --blush: #f8ddea;
  --gold: #b7955a;
  --gold-light: #d8c295;
  --stone: #d8d0c5;
  --muted: #6e6768;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--paper); padding: .8rem 1rem; }
.skip-link:focus { left: .75rem; top: .75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,249,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(38,33,35,.12);
}
.nav-wrap { max-width: var(--max); margin: auto; min-height: 80px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; display: flex; align-items: center; gap: 13px; font-family: var(--serif); letter-spacing: .13em; font-size: .95rem; font-weight: 700; white-space: nowrap; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--plum); font-family: var(--serif); font-size: 1.15rem; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { text-decoration: none; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 28px 0 24px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--plum); border-color: var(--gold); }
.menu-button { display: none; border: 1px solid var(--stone); background: transparent; padding: .6rem .8rem; font: 700 .78rem var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }

.hero { min-height: calc(100vh - 80px); display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); background: var(--ivory); overflow: hidden; }
.hero-copy { padding: clamp(72px, 9vw, 136px) clamp(28px, 7vw, 108px); display: flex; flex-direction: column; justify-content: center; position: relative; }
.hero-copy::after { content: ""; position: absolute; right: -80px; bottom: -110px; width: 280px; height: 280px; border: 1px solid rgba(183,149,90,.55); transform: rotate(45deg); }
.eyebrow { margin: 0 0 20px; color: var(--plum); font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h1 { margin: 0; font-size: clamp(3.4rem, 7vw, 7.2rem); letter-spacing: -.045em; }
.hero h1 span { display: block; color: var(--plum); font-style: italic; }
.hero-intro { max-width: 660px; margin: 30px 0 0; color: #4f494a; font-size: clamp(1.05rem, 1.35vw, 1.25rem); }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border: 1px solid var(--plum); background: var(--plum); color: #fff; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: .2s ease; }
.button:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-2px); }
.button.secondary { color: var(--plum); background: transparent; }
.button.secondary:hover { color: #fff; }
.hero-visual { position: relative; min-height: 620px; padding: clamp(22px, 3vw, 46px); display: grid; place-items: center; background: linear-gradient(145deg, var(--blush), #efd0df 58%, var(--plum-soft)); }
.hero-visual img { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 126px); object-fit: contain; }
.hero-visual .portrait-image { filter: none; box-shadow: 0 24px 70px rgba(38,33,35,.22); }
.hero-note { position: absolute; right: 0; bottom: 0; width: min(82%, 420px); padding: 22px 28px; background: rgba(23,20,21,.92); color: #fff; font-family: var(--serif); font-size: 1.05rem; }
.hero-note strong { color: var(--gold-light); font-size: 1.15rem; letter-spacing: .04em; }

.section { padding: clamp(76px, 9vw, 126px) 24px; }
.section.dark { background: var(--charcoal); color: #fff; }
.section.ivory { background: var(--ivory); }
.section.plum { background: var(--plum); color: #fff; }
.inner { max-width: var(--max); margin: auto; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2, .page-hero h1 { font-size: clamp(2.65rem, 5vw, 5rem); margin: 0 0 20px; letter-spacing: -.035em; }
.section-heading p { max-width: 680px; color: var(--muted); font-size: 1.08rem; margin: 0; }
.dark .section-heading p, .plum .section-heading p { color: #d8d0d2; }

.gateway-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--stone); }
.gateway { min-height: 330px; padding: 42px; border-right: 1px solid var(--stone); border-bottom: 1px solid var(--stone); text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; transition: background .25s, color .25s; }
.gateway:nth-child(even) { border-right: 0; }
.gateway .number { color: var(--gold); font: italic 1.05rem var(--serif); }
.gateway h3 { font-size: clamp(2rem, 3vw, 3.25rem); margin: 30px 0 12px; }
.gateway p { max-width: 480px; color: var(--muted); margin: 0; }
.gateway .arrow { font-size: 1.7rem; color: var(--plum); }
.gateway:hover { background: var(--plum); color: #fff; }
.gateway:hover p { color: #ede3e8; }
.gateway:hover .arrow { color: var(--gold-light); }

.split { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(44px, 8vw, 110px); align-items: start; }
.statement { font: italic clamp(2.15rem, 4.3vw, 4.4rem)/1.08 var(--serif); margin: 0; color: var(--gold-light); }
.prose { max-width: 730px; }
.prose p { margin-top: 0; color: inherit; }
.prose .lead { font: 1.55rem/1.4 var(--serif); }
.portrait-story { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(44px, 8vw, 108px); align-items: center; }
.portrait-frame { position: relative; margin: 0; padding: 14px 14px 0; border: 1px solid var(--gold); background: var(--ivory); }
.portrait-frame::before { content: ""; position: absolute; z-index: -1; inset: 28px -20px -20px 28px; background: var(--plum); }
.portrait-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: contain; object-position: center; background: #fff; }
.portrait-frame figcaption { padding: 14px 4px 16px; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.portrait-story .statement { margin-bottom: 30px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.18); margin-top: 56px; }
.proof { background: var(--charcoal); padding: 32px 24px; }
.proof strong { display: block; color: var(--gold-light); font: 2.4rem var(--serif); }
.proof span { font-size: .85rem; color: #d7cfd1; }

.page-hero { background: var(--ivory); padding: clamp(92px, 12vw, 160px) 24px 84px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: 8%; top: 22%; width: 220px; height: 220px; border: 1px solid var(--gold); transform: rotate(45deg); opacity: .5; }
.page-hero .inner { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; }
.page-hero p { max-width: 720px; font-size: 1.16rem; color: var(--muted); }
.page-hero .kicker { color: var(--plum); font-weight: 800; letter-spacing: .17em; text-transform: uppercase; font-size: .76rem; }
.feature-image { max-width: var(--max); margin: -42px auto 0; padding: 0 24px; position: relative; z-index: 2; }
.feature-image img { width: 100%; max-height: 650px; object-fit: cover; box-shadow: 0 24px 60px rgba(23,20,21,.16); }
.brand-logo-panel { max-width: 760px; margin: -32px auto 0; padding: 28px; position: relative; z-index: 2; background: #fff; border: 1px solid var(--stone); box-shadow: 0 22px 55px rgba(23,20,21,.12); }
.brand-logo-panel img { display: block; width: 100%; height: auto; }
.image-caption { margin: 10px 0 0; color: var(--muted); font-size: .78rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 30px; border: 1px solid var(--stone); background: var(--paper); }
.service-card h3 { margin: 6px 0 14px; font-size: 1.75rem; }
.service-card p { color: var(--muted); margin: 0; }
.service-card .tag { color: var(--plum); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.timeline { border-left: 1px solid var(--gold); margin-left: 10px; }
.timeline-item { position: relative; padding: 0 0 36px 38px; }
.timeline-item::before { content: ""; position: absolute; left: -6px; top: 7px; width: 11px; height: 11px; background: var(--plum); border-radius: 50%; }
.timeline-item h3 { margin: 0 0 8px; font-size: 1.5rem; }
.timeline-item p { margin: 0; color: var(--muted); }
.callout { padding: clamp(42px, 6vw, 78px); background: var(--plum); color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.callout h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); }
.callout p { margin: 10px 0 0; color: #e2d6dc; }
.contact-phone { font: 2rem/1.2 var(--serif); }
.contact-phone a { color: #fff; text-decoration-color: var(--gold-light); text-underline-offset: 5px; }
.contact-actions { display: grid; gap: 12px; min-width: 210px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(42px, 8vw, 100px); align-items: start; }
.contact-form { display: grid; gap: 20px; max-width: 760px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form label { display: grid; gap: 7px; font-size: .82rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--stone); background: #fff; color: var(--ink); padding: 14px 15px; border-radius: 0; font: 1rem/1.45 var(--sans); text-transform: none; letter-spacing: normal; }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form .button { width: fit-content; cursor: pointer; }
.form-note { margin: -8px 0 0; color: var(--muted); font-size: .88rem; }
.contact-card { padding: 36px; background: var(--ivory); border-top: 4px solid var(--plum); }
.contact-card h2 { margin: 0 0 14px; font-size: 2.25rem; }
.contact-card .contact-phone { margin: 28px 0; }
.contact-card .contact-phone a { color: var(--plum); }
.light-button { background: #fff; color: var(--plum); border-color: #fff; }
.outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.light-button:hover, .outline-light:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.site-footer { background: #100e0f; color: #eee7ea; padding: 58px 24px 28px; }
.footer-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
.footer-brand { font: 2rem var(--serif); margin: 0 0 12px; }
.site-footer p { color: #bdb5b8; max-width: 430px; }
.site-footer h2 { font: .74rem var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #d9d2d5; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.copyright { max-width: var(--max); margin: 42px auto 0; padding-top: 22px; border-top: 1px solid #393335; color: #91898c; font-size: .78rem; }
.social-section { padding: 46px max(24px, calc((100vw - var(--max)) / 2)); background: var(--plum); color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.social-section .eyebrow { color: var(--gold-light); margin-bottom: 5px; }
.social-section h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); }
.social-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.social-links a { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; padding: 0 17px; border: 1px solid rgba(255,255,255,.55); color: #fff; text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.social-links a:hover { background: #fff; color: var(--plum); }

@media (max-width: 960px) {
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--paper); padding: 12px 24px 24px; border-bottom: 1px solid var(--stone); flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 610px; }
  .hero-visual { min-height: 500px; }
  .split, .portrait-story, .footer-grid, .contact-layout, .social-section { grid-template-columns: 1fr; }
  .social-links { justify-content: flex-start; }
  .portrait-frame { max-width: 560px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-wrap { padding: 0 18px; }
  .brand { font-size: .8rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero-copy { padding: 70px 22px; min-height: 560px; }
  .hero-visual { min-height: 420px; }
  .hero-note { width: 92%; }
  .gateway-grid, .service-grid { grid-template-columns: 1fr; }
  .gateway { border-right: 0; padding: 32px 22px; min-height: 285px; }
  .proof-grid { grid-template-columns: 1fr; }
  .page-hero::after { width: 150px; height: 150px; right: -80px; }
  .callout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .social-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
