:root {
  --purple-950: #22112f;
  --purple-900: #2d1743;
  --purple-800: #4f2a73;
  --purple-700: #65338f;
  --purple-500: #8f55c7;
  --purple-300: #caa8ee;
  --white: #ffffff;
  --off-white: #f8f5fb;
  --black: #08060b;
  --ink: #1d1428;
  --muted: #665972;
  --border: rgba(79, 42, 115, 0.18);
  --shadow: 0 24px 50px rgba(34, 17, 47, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background-color: var(--off-white);
  background-image:
    linear-gradient(90deg, rgba(79, 42, 115, 0.07) 50%, transparent 50%),
    linear-gradient(rgba(8, 6, 11, 0.045) 50%, transparent 50%);
  background-size: 96px 96px;
  line-height: 1.6;
}

a { color: var(--purple-700); font-weight: 700; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { max-width: 850px; }
.sr-only, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem; z-index: 100;
  background: var(--white); color: var(--purple-900); padding: .75rem 1rem; border-radius: 999px;
}

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(34, 17, 47, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand img { width: 180px; border-radius: 4px; }
.site-nav { display: flex; gap: .35rem; align-items: center; flex-wrap: wrap; }
.site-nav a {
  color: var(--white); padding: .7rem .85rem; border-radius: 999px; font-weight: 800; letter-spacing: .01em;
}
.site-nav a.active, .site-nav a:hover { background: rgba(255,255,255,.16); text-decoration: none; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.28); border-radius: 12px; background: transparent; cursor: pointer; padding: .6rem; }
.nav-toggle-line { display: block; height: 2px; margin: 5px 0; background: var(--white); }

.hero { padding: 5.5rem 0; color: var(--white); }
.hero-plaid {
  background-color: var(--purple-900);
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.06) 50%, transparent 50%),
    linear-gradient(rgba(8,6,11,.24) 50%, transparent 50%),
    radial-gradient(circle at 15% 20%, rgba(202,168,238,.42), transparent 28rem),
    linear-gradient(135deg, var(--purple-950), var(--purple-800));
  background-size: 92px 92px, 92px 92px, auto, auto;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 2rem; align-items: center; }
.eyebrow { margin: 0 0 .75rem; color: var(--purple-300); font-size: .86rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 0 0 1rem; font-size: clamp(2.5rem, 7vw, 5.8rem); line-height: .92; letter-spacing: -.04em; text-transform: uppercase; }
h2 { line-height: 1.15; color: var(--purple-900); }
.hero h2 { color: var(--white); }
.hero-text { max-width: 720px; color: rgba(255,255,255,.88); font-size: 1.25rem; }
.button-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.button { display: inline-block; border: 0; border-radius: 999px; padding: .9rem 1.3rem; cursor: pointer; font-weight: 900; }
.button.primary { background: var(--white); color: var(--purple-900); }
.button.secondary { color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.button.primary:hover, .button.secondary:hover { text-decoration: none; transform: translateY(-1px); }

.hero-card, .card, .content-panel, .photo-card, .contact-form, .callout, .priority-list article {
  background: rgba(255,255,255,.94); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow);
}
.hero-card { padding: 1.25rem; color: var(--ink); }
.card-logo { border-radius: 14px; margin-bottom: 1rem; }
.section { padding: 4rem 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.card, .content-panel { padding: 1.6rem; }
.card p, .content-panel p, li { color: var(--muted); }
.two-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr); gap: 1.5rem; align-items: start; }
.photo-card { overflow: hidden; }
.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.plaid-card img { aspect-ratio: 3 / 4; }
.page-plaid {
  background-image:
    linear-gradient(90deg, rgba(79, 42, 115, 0.09) 50%, transparent 50%),
    linear-gradient(rgba(8, 6, 11, 0.055) 50%, transparent 50%);
  background-size: 84px 84px;
}
.image-band { padding: 4rem 0; color: var(--white); background: linear-gradient(rgba(34,17,47,.78), rgba(34,17,47,.78)), url('../images/purple-black-plaid.jpg') center / cover; }
.image-band h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.image-band p { max-width: 720px; color: rgba(255,255,255,.88); }
.callout { margin-top: 1.25rem; padding: 1.3rem; background: #fbf8ff; }
.priority-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.priority-list article { padding: 1.2rem; box-shadow: none; }

.contact-form { display: grid; gap: .8rem; padding: 1.2rem; margin-top: 1.2rem; box-shadow: none; }
label { font-weight: 900; color: var(--purple-900); }
input, textarea { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: .9rem 1rem; font: inherit; }
input:focus, textarea:focus { outline: 3px solid rgba(143,85,199,.25); border-color: var(--purple-700); }
.form-note { margin: 0; color: var(--muted); }
.site-footer { padding: 2rem 0; background: var(--purple-950); color: rgba(255,255,255,.86); }
.site-footer a { color: var(--white); }
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.site-footer p { margin: .25rem 0 0; }

@media (max-width: 820px) {
  .header-inner { min-height: 74px; flex-wrap: wrap; padding: .65rem 0; }
  .brand img { width: 150px; }
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-bottom: .65rem; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .82rem .9rem; }
  .hero { padding: 3.5rem 0; }
  .hero-grid, .cards, .two-column { grid-template-columns: 1fr; }
}
