:root {
  --bg-dark: #1c1027;
  --bg-dark-2: #241536;
  --bg-dark-3: #2e1d45;
  --line-dark: #3a2a4e;
  --paper: #f8f7fa;
  --card: #ffffff;
  --line-light: #e5e1ec;
  --purple: #41216b;
  --purple-num: #6a4b96;
  --lav: #cfc0e4;
  --lav-bright: #e9e4f0;
  --body-dark: #b9aecb;
  --muted-dark: #8d80a3;
  --steel: #66717f;
  --steel-light: #b6bec9;
  --ink: #211d29;
  --ink-soft: #575263;
  --num-pale: #d9d2e5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--lav-bright);
  font-family: "Public Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--lav-bright); text-decoration: none; }
a:hover { color: #ffffff; }

.wrap { max-width: 1280px; margin: 0 auto; padding-left: 56px; padding-right: 56px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(28, 16, 39, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-name { display: flex; flex-direction: column; }
.brand-name .top { font-family: "Newsreader", Georgia, serif; font-size: 24px; font-weight: 600; color: #ffffff; line-height: 1; }
.brand-name .top em { font-style: italic; color: var(--lav); }
.brand-name .sub { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted-dark); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--lav-bright); }
.nav a.active { border-bottom: 2px solid var(--lav); padding-bottom: 2px; }
.btn {
  display: inline-block; background: var(--lav-bright); color: var(--bg-dark-2) !important;
  font-size: 15px; font-weight: 700; padding: 15px 30px; border-radius: 3px;
  border: none; cursor: pointer; font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: #ffffff; transform: translateY(-1px); }
.btn-light { background: var(--lav-bright); color: var(--bg-dark-2) !important; }
.site-header .btn { padding: 13px 24px; }
.link-underline { font-size: 16px; font-weight: 600; color: var(--lav-bright); border-bottom: 2px solid var(--muted-dark); padding-bottom: 3px; transition: border-color 0.2s ease; }
.link-underline:hover { border-color: var(--lav); }

/* Eyebrows */
.eyebrow-row { display: flex; align-items: center; gap: 12px; }
.eyebrow-rule { width: 36px; height: 2px; background: var(--muted-dark); flex-shrink: 0; }
.eyebrow { font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--steel-light); font-weight: 700; }
.section .eyebrow, .cta-strip .eyebrow { color: var(--steel); }
.section .eyebrow-rule { background: var(--steel); }

/* Hero (dark + glow) */
.hero {
  background: radial-gradient(1000px 540px at 72% 8%, rgba(106, 75, 150, 0.35), transparent 65%), var(--bg-dark);
  padding: 104px 0 92px;
}
.hero h1 { font-family: "Newsreader", Georgia, serif; font-size: clamp(48px, 5.2vw, 76px); line-height: 1.04; font-weight: 400; color: #ffffff; margin: 22px 0 0; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--lav); }
.hero .lede { font-size: 20px; line-height: 1.7; color: var(--body-dark); max-width: 640px; margin: 22px 0 0; }
.hero-ctas { display: flex; align-items: center; gap: 22px; margin-top: 32px; flex-wrap: wrap; }
.hero .trust { font-size: 14px; color: var(--muted-dark); margin-top: 22px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 64px; align-items: center; }
.hero-art { position: relative; height: 420px; border-radius: 6px; overflow: hidden; box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.6); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.8); }
.hero-art::after { content: ""; position: absolute; inset: 0; border-radius: 6px;
  background: linear-gradient(160deg, rgba(65, 33, 107, 0.32), rgba(102, 113, 127, 0.10) 60%, rgba(36, 21, 54, 0.25));
  mix-blend-mode: multiply; pointer-events: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero .wrap { animation: rise 0.7s ease both; }
  @keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
}

/* Page titles (dark + glow) */
.page-title {
  background: radial-gradient(1000px 540px at 72% 8%, rgba(106, 75, 150, 0.35), transparent 65%), var(--bg-dark);
  padding: 84px 0 64px;
}
.page-title h1 { font-family: "Newsreader", Georgia, serif; font-size: clamp(44px, 4.5vw, 62px); line-height: 1.06; font-weight: 400; color: #ffffff; margin: 18px 0 0; text-wrap: balance; }
.page-title h1 em, .accent-em { font-style: italic; color: var(--lav); }
.page-title .lede { font-size: 19px; line-height: 1.7; color: var(--body-dark); max-width: 700px; margin: 18px 0 0; }

/* Stat strips (dark) */
.stats { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: var(--bg-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat { position: relative; padding: 46px 48px 44px; border-right: 1px solid var(--line-dark); }
.stat::before { content: ""; position: absolute; top: 0; left: 48px; width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--lav), rgba(207, 192, 228, 0)); }
.stat:last-child { border-right: none; }
.stat-label { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--steel-light); font-weight: 700; margin-bottom: 14px; }
.stat .num { font-family: "Newsreader", Georgia, serif; font-size: 52px; white-space: nowrap; font-weight: 400; line-height: 1;
  color: #ffffff; background: linear-gradient(115deg, #ffffff 45%, var(--lav)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .num em { font-style: italic; font-size: 26px; }
.stat .num.steel { background: linear-gradient(115deg, var(--lav) 40%, var(--purple-num)); -webkit-background-clip: text; background-clip: text; }
.stat p { font-size: 15px; color: var(--body-dark); line-height: 1.65; margin: 16px 0 0; max-width: 360px; }

/* Light sections */
.section { padding: 88px 0; background: var(--paper); color: var(--ink); }
.section-head h2, h2.display { font-family: "Newsreader", Georgia, serif; font-size: clamp(34px, 3.5vw, 46px); font-weight: 400; line-height: 1.12; margin: 14px 0 0; text-wrap: balance; color: var(--ink); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 42px; }
.card { background: var(--card); border: 1px solid var(--line-light); border-radius: 6px; padding: 36px 30px; display: flex; flex-direction: column; gap: 15px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -22px rgba(36, 21, 54, 0.35); }
.card .num { font-family: "Newsreader", Georgia, serif; font-size: 40px; color: var(--num-pale); font-weight: 500; line-height: 1; }
.card h3 { font-family: "Newsreader", Georgia, serif; font-size: 25px; font-weight: 600; margin: 0; color: var(--ink); }
.card p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.card .more { font-size: 15px; font-weight: 600; color: var(--purple); margin-top: auto; }
.card .more:hover { color: var(--bg-dark-2); }
.card.featured { background: var(--purple); border-color: var(--purple); }
.card.featured .num { color: var(--purple-num); }
.card.featured h3 { color: #ffffff; }
.card.featured p { color: var(--lav); }
.card.featured .tag { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--steel-light); font-weight: 700; margin-top: auto; }

/* Dark bands */
.band { background: var(--bg-dark); color: var(--lav-bright); border-top: 1px solid var(--line-dark); }
.band h2 { font-family: "Newsreader", Georgia, serif; font-size: clamp(34px, 3.5vw, 46px); font-weight: 400; line-height: 1.12; margin: 18px 0 0; text-wrap: balance; color: #ffffff; }
.band h2 em { font-style: italic; color: var(--lav); }
.band .body { font-size: 17px; line-height: 1.75; color: var(--body-dark); margin: 20px 0 0; }
.band-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 70px; align-items: center; padding: 88px 0; }
.tick-list { display: flex; flex-direction: column; }
.tick { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line-dark); align-items: flex-start; }
.tick:last-child { border-bottom: none; }
.tick .dash { font-family: "Newsreader", Georgia, serif; font-size: 23px; color: var(--muted-dark); width: 30px; flex-shrink: 0; }
.tick p { font-size: 17px; line-height: 1.6; color: var(--lav-bright); margin: 0; }

/* Steps (light) */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px; margin-top: 42px; }
.step { border-top: 3px solid var(--purple); padding-top: 20px; }
.step:nth-child(2) { border-top-color: var(--steel); }
.step .label { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--steel); font-weight: 700; }
.step h3 { font-family: "Newsreader", Georgia, serif; font-size: 25px; font-weight: 600; margin: 10px 0 0; color: var(--ink); }
.step p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 10px 0 0; }

/* Testimonial (dark) */
.testimonial { background: var(--bg-dark); border-top: 1px solid var(--line-dark); text-align: center; }
.testimonial .inner { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 84px 0; }
.testimonial blockquote { font-family: "Newsreader", Georgia, serif; font-size: clamp(24px, 2.4vw, 31px); font-style: italic; font-weight: 400; line-height: 1.5; max-width: 880px; color: var(--lav-bright); margin: 0; }
.testimonial cite { font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-dark); font-weight: 700; font-style: normal; }

/* CTA (dark, split) */
.cta .inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 88px 0; flex-wrap: wrap; }
.cta h2 { max-width: 680px; margin: 0; font-size: clamp(32px, 3.2vw, 44px); }
.cta .sub { font-size: 17px; color: var(--body-dark); max-width: 540px; line-height: 1.65; margin: 12px 0 0; }
.cta .contact-line { display: block; font-size: 14px; color: var(--muted-dark); margin-top: 14px; }

.cta-strip { background: var(--bg-dark); border-top: 1px solid var(--line-dark); color: var(--lav-bright); }
.cta-strip .inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 72px 0; flex-wrap: wrap; }
.cta-strip h2 { font-family: "Newsreader", Georgia, serif; font-size: clamp(28px, 2.8vw, 38px); font-weight: 400; line-height: 1.2; max-width: 720px; margin: 0; color: #ffffff; }
.cta-strip h2 em { font-style: italic; color: var(--lav); }
.cta-strip p { font-size: 15px; line-height: 1.65; color: var(--body-dark); margin: 10px 0 0; }

/* Service detail rows */
.svc .inner { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 64px; padding: 62px 0; }
.svc { background: var(--card); color: var(--ink); }
.svc.alt { background: var(--paper); }
.svc .num { font-family: "Newsreader", Georgia, serif; font-size: 55px; color: var(--num-pale); font-weight: 500; line-height: 1; }
.svc h3 { font-family: "Newsreader", Georgia, serif; font-size: 33px; font-weight: 600; line-height: 1.12; margin: 10px 0 0; color: var(--ink); }
.svc .pricing { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--steel); font-weight: 700; margin-top: 10px; }
.svc .desc { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.svc-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 30px; }
.svc-list div { font-size: 15px; display: flex; gap: 10px; }
.svc-list .dash { color: var(--steel); }
.svc.dark { background: var(--bg-dark-2); color: var(--lav-bright); }
.svc.dark .num { color: var(--purple-num); }
.svc.dark h3 { color: #ffffff; }
.svc.dark .pricing { color: var(--steel-light); }
.svc.dark .desc { color: var(--body-dark); }
.svc.dark .svc-list div { color: var(--lav-bright); }
.svc.dark .svc-list .dash { color: var(--muted-dark); }

/* Audience cards (light section) */
.aud-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin-top: 42px; }
.aud { background: var(--card); border: 1px solid var(--line-light); border-radius: 6px; padding: 42px 38px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.aud:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -22px rgba(36, 21, 54, 0.35); }
.aud h3 { font-family: "Newsreader", Georgia, serif; font-size: 30px; font-weight: 600; line-height: 1.2; margin: 12px 0 0; color: var(--ink); }
.aud p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 14px 0 0; }
.aud .svc-list { grid-template-columns: 1fr; margin-top: 14px; }
.aud .svc-list div { color: var(--ink); }

/* About (dark + glow) */
.about-grid {
  display: grid; grid-template-columns: 400px minmax(0, 1fr); gap: 70px; align-items: start; padding: 84px 0;
}
.about-hero { background: radial-gradient(1000px 540px at 72% 8%, rgba(106, 75, 150, 0.35), transparent 65%), var(--bg-dark); }
.portrait { width: 100%; height: 480px; background: var(--bg-dark-3); border: 1px solid var(--line-dark); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--muted-dark); font-weight: 600; font-size: 13px; }
.portrait .big-c { font-family: "Newsreader", Georgia, serif; font-size: 120px; font-weight: 500; color: var(--purple-num); line-height: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip { background: var(--bg-dark-3); border: 1px solid var(--line-dark); color: var(--lav); font-size: 14px; font-weight: 600; padding: 8px 16px; border-radius: 999px; }
.chip.steel { color: var(--steel-light); }
.about-copy h1 { font-family: "Newsreader", Georgia, serif; font-size: clamp(44px, 4.5vw, 62px); font-weight: 400; line-height: 1.06; margin: 20px 0 0; color: #ffffff; }
.about-copy p { font-size: 17px; line-height: 1.75; color: var(--body-dark); margin: 20px 0 0; }
.pull-quote { border-left: 3px solid var(--lav); padding: 6px 0 6px 24px; font-family: "Newsreader", Georgia, serif; font-size: 24px; font-style: italic; line-height: 1.45; color: var(--lav-bright); margin: 26px 0 0; }

/* Contact */
.band#contact { background: var(--bg-dark-2); border-top: 1px solid var(--line-dark); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 480px; gap: 70px; padding: 84px 0; }
.contact-info .detail { font-size: 16px; color: var(--lav-bright); margin-top: 12px; }
.form-card { background: var(--bg-dark-3); border: 1px solid var(--line-dark); border-radius: 8px; padding: 34px; display: flex; flex-direction: column; gap: 16px; }
.form-card label { font-size: 15px; font-weight: 600; color: var(--lav); display: block; margin-bottom: 6px; }
.form-card input, .form-card textarea {
  width: 100%; background: var(--bg-dark-2); border: 1px solid var(--line-dark);
  border-radius: 5px; padding: 13px 16px; font-size: 15px; color: var(--lav-bright);
  font-family: inherit;
}
.form-card input::placeholder, .form-card textarea::placeholder { color: var(--muted-dark); }
.form-card textarea { height: 110px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted-dark); margin: 0; }

/* Footer */
.site-footer { background: var(--bg-dark); border-top: 1px solid var(--line-dark); }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; padding-bottom: 26px; gap: 20px; flex-wrap: wrap; }
.site-footer .brand-name .top { color: var(--lav); font-size: 20px; }
.foot-links { display: flex; gap: 26px; }
.foot-links a { font-size: 15px; color: var(--muted-dark); transition: color 0.15s ease; }
.foot-links a:hover { color: var(--lav); }
.foot-copy { font-size: 13px; color: var(--muted-dark); }

/* Photography — branded duotone */
.photo-band-wrap { background: var(--bg-dark); padding-top: 0; padding-bottom: 56px; }
.photo-band { position: relative; width: 100%; height: 380px; border-radius: 6px; overflow: hidden; box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.6); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.8); }
.photo-band::after { content: ""; position: absolute; inset: 0; border-radius: 6px;
  background: linear-gradient(160deg, rgba(65, 33, 107, 0.32), rgba(102, 113, 127, 0.10) 60%, rgba(36, 21, 54, 0.25));
  mix-blend-mode: multiply; pointer-events: none; }
.services-band { height: 340px; }

/* Responsive */
@media (max-width: 960px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
  .stats-grid, .cards, .steps { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line-dark); }
  .stat:last-child { border-bottom: none; }
  .band-grid, .svc .inner, .aud-grid, .about-grid, .contact-grid, .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { height: 280px; }
  .svc-list { grid-template-columns: 1fr; }
  .nav { gap: 18px; }
  .nav a:not(.btn) { display: none; }
  .portrait { height: 380px; }
}
