:root {
  --canvas: #fff8f8;
  --surface: #fff8f8;
  --surface-low: #fff0f3;
  --surface-pink: #fde7f4;
  --surface-peach: #fde6d3;
  --surface-blue: #cfdffc;
  --surface-lilac: #ddd7f4;
  --surface-mint: #bff3d0;
  --surface-coral: #fad2d1;
  --ink: #23191c;
  --ink-soft: #614b52;
  --outline: #dbc0c7;
  --primary: #a43368;
  --primary-deep: #81154d;
  --plum: #392d31;
  --on-primary: #fff8f8;
  --radius-sm: 12px;
  --radius-card: 24px;
  --radius-panel: 32px;
  --shell: 1136px;
  --shadow: 0 18px 48px rgba(62, 31, 44, .14);
  --shadow-soft: 0 10px 28px rgba(62, 31, 44, .09);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 103% 27%, rgba(240, 183, 212, .33) 0 9%, transparent 26%),
    radial-gradient(circle at -3% 63%, rgba(207, 223, 252, .27) 0 9%, transparent 24%),
    var(--canvas);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
address { font-style: normal; }
::selection { color: var(--on-primary); background: var(--primary); }

.skip-link { position: fixed; z-index: 100; top: -70px; left: 18px; padding: 10px 16px; color: var(--on-primary); background: var(--primary-deep); border-radius: 10px; transition: top .2s ease; }
.skip-link:focus { top: 18px; }
.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }
.section--tight { padding-top: 0; }
.site-main { padding-bottom: 104px; }
.page-content { display: grid; gap: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  line-height: 1;
}
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--primary-deep);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}
.section-label::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--primary-deep);
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "↗";
  font-size: 17px;
  font-weight: 400;
}
.page-title, h1, h2, h3 { margin-top: 0; font-family: var(--font); }
h1, .page-title { font-size: clamp(3rem, 5.4vw, 5.2rem); font-weight: 650; letter-spacing: -.061em; line-height: .98; }
h2 { font-size: clamp(2.2rem, 3.7vw, 4rem); font-weight: 500; letter-spacing: -.055em; line-height: 1.04; }
h3 { font-size: 1.55rem; font-weight: 700; letter-spacing: -.035em; line-height: 1.08; }
p { margin-top: 0; }
.text-balance { text-wrap: balance; }
.prose { max-width: 60ch; color: var(--ink-soft); font-size: 18px; line-height: 1.58; }
.prose p:last-child { margin-bottom: 0; }
.prose--compact { font-size: 16px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .76, .24, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.button, .card-action, .header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  border: 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 20px;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.button:hover, .card-action:hover, .header-action:hover { transform: translateY(-2px); }
.button:active, .card-action:active, .header-action:active { transform: translateY(1px) scale(.985); }
.button--primary, .header-action { padding: 0 25px; color: var(--on-primary); background: var(--primary); border-radius: 999px; box-shadow: 0 9px 20px rgba(164, 51, 104, .18); }
.button--primary:hover, .header-action:hover { background: var(--primary-deep); box-shadow: 0 12px 26px rgba(129, 21, 77, .24); }
.button--outline { padding: 0 24px; color: var(--primary-deep); background: rgba(255, 248, 248, .72); border: 1px solid var(--primary-deep); border-radius: 999px; }
.button--outline:hover { color: var(--on-primary); background: var(--primary-deep); }
.card-action { padding: 0 19px; color: var(--on-primary); background: var(--plum); border-radius: 12px; box-shadow: 0 8px 20px rgba(35, 25, 28, .14); }
.card-action::after, .text-link span { content: "→"; font-size: 1.2em; line-height: 1; }
.card-action:hover { background: var(--primary-deep); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--primary-deep); font-size: 17px; font-weight: 700; }
.text-link:hover { color: var(--primary); }
.text-link span { font-size: 1.25em; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  padding: 16px 0;
  background: rgba(255, 248, 248, .86);
  border-bottom: 1px solid rgba(219, 192, 199, .55);
  backdrop-filter: blur(16px);
}
.nav-shell { display: flex; align-items: center; min-height: 58px; }
.brand { display: flex; align-items: center; width: 190px; }
.brand img { width: 100%; height: 60px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.site-nav > a, .nav-menu-button {
  padding: 9px 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
  line-height: 20px;
}
.site-nav > a:hover, .site-nav > a.is-active { color: var(--primary-deep); background: var(--surface-low); }
.site-nav > a.is-active { box-shadow: inset 0 -2px 0 var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 30px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 8px; color: var(--primary-deep); background: var(--surface); border: 1px solid var(--outline); border-radius: 12px; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; padding-top: 8px; }
.hero-panel {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  color: var(--on-primary);
  background-color: var(--plum);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-panel::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 85% 22%, rgba(231, 87, 161, .82) 0 6%, rgba(231, 87, 161, .26) 12%, transparent 28%),
    radial-gradient(circle at 77% 78%, rgba(129, 87, 232, .55) 0 8%, transparent 28%),
    linear-gradient(99deg, rgba(25, 14, 18, .95) 1%, rgba(37, 18, 29, .75) 48%, rgba(22, 12, 18, .16) 100%);
  content: "";
}
.hero-panel::after {
  position: absolute;
  z-index: 0;
  right: -9%;
  bottom: -72%;
  width: min(68vw, 670px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, .08), 0 0 0 76px rgba(255, 255, 255, .04);
  content: "";
}
.hero--home .hero-panel { background-image: url("images/hero-home.jpg"); }
.hero--about .hero-panel { background-image: url("images/hero-about.jpg"); }
.hero--services .hero-panel { background-image: url("images/hero-services.jpg"); }
.hero--contact .hero-panel { background-image: url("images/hero-contact.jpg"); }
.hero__content { position: relative; z-index: 1; align-self: end; max-width: 820px; padding: 54px; }
.hero__content .eyebrow { color: #ffd4e6; }
.hero__content h1 { max-width: 13ch; margin-bottom: 20px; text-shadow: 0 3px 16px rgba(0, 0, 0, .32); }
.hero__content h1 em { color: #ffb4d7; font-style: normal; font-weight: 400; }
.hero__content h1 small { display: block; margin-top: 11px; color: #ffe2ef; font-size: .48em; font-weight: 600; letter-spacing: .08em; }
.hero__content p:last-child { max-width: 640px; margin-bottom: 0; color: #fff5fa; font-size: 21px; font-weight: 550; line-height: 1.35; text-shadow: 0 2px 8px rgba(0, 0, 0, .35); }
.hero__content .hero-compact { max-width: 620px; font-size: 19px !important; font-weight: 500 !important; line-height: 1.5 !important; }

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 96px;
  align-items: center;
  padding: 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 4%, rgba(207, 223, 252, .9) 0 11%, transparent 28%),
    linear-gradient(135deg, #fff0f5, #fff8f8 68%);
  border: 1px solid rgba(219, 192, 199, .72);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft);
}
.intro-grid::after {
  position: absolute;
  right: 8%;
  bottom: -58%;
  width: 280px;
  height: 280px;
  border: 34px solid rgba(208, 33, 133, .14);
  border-radius: 50%;
  content: "";
}
.intro-grid__copy, .intro-grid > div:last-child { position: relative; z-index: 1; }
.intro-grid__copy { padding-top: 8px; }
.intro-grid__copy .text-link { margin-top: 22px; }
.intro-grid__title { max-width: 10ch; margin: 0; }
.intro-grid__title strong { color: var(--primary); font-weight: 500; }
.services-intro { display: grid; grid-template-columns: .85fr 1fr; gap: 80px; align-items: start; margin-bottom: 50px; }
.services-intro h2 { max-width: 10ch; margin-bottom: 0; }
.services-intro .prose { padding-top: 46px; }

.service-stack { display: grid; gap: 50px; }
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 10fr 9fr;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(35, 25, 28, .08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.service-card::after {
  position: absolute;
  z-index: -1;
  top: -118px;
  right: -94px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(35, 25, 28, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .17), 0 0 0 68px rgba(255, 255, 255, .1);
  content: "";
}
.service-card:nth-child(even) { grid-template-columns: 9fr 10fr; }
.service-card:nth-child(even)::after { right: auto; left: -94px; }
.service-card:nth-child(even) .service-card__visual { grid-column: 2; }
.service-card:nth-child(even) .service-card__content { grid-column: 1; grid-row: 1; }
.service-card--pink { background: var(--surface-pink); }
.service-card--peach { background: var(--surface-peach); }
.service-card--blue { background: var(--surface-blue); }
.service-card--lilac { background: var(--surface-lilac); }
.service-card--mint { background: var(--surface-mint); }
.service-card--coral { background: var(--surface-coral); }
.service-card__visual {
  position: relative;
  min-height: 100%;
  margin: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, .28);
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 18px;
}
.service-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .15), rgba(35, 25, 28, .19));
  content: "";
}
.service-card__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.87) contrast(.98); transition: filter .35s ease, transform .55s ease; }
.service-card:hover .service-card__visual img { filter: saturate(1.08) contrast(1); transform: scale(1.045); }
.service-card__content { display: flex; position: relative; z-index: 1; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; padding: 52px 50px 52px 58px; }
.service-card:nth-child(even) .service-card__content { padding: 52px 58px 52px 50px; }
.service-index {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(35, 25, 28, .35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.service-card__content h3 { max-width: 17ch; margin: 0; font-size: clamp(2rem, 3.1vw, 3.2rem); font-weight: 650; letter-spacing: -.056em; line-height: 1.02; }
.service-card__content p { max-width: 49ch; margin: 0; color: #4e3d43; font-size: 16px; line-height: 1.5; }
.service-card__content .card-action { margin-top: 8px; }

.trust-section {
  position: relative;
  display: grid;
  gap: 32px;
  padding: 58px;
  overflow: hidden;
  color: var(--on-primary);
  background:
    radial-gradient(circle at 87% 9%, rgba(215, 90, 163, .55) 0 8%, transparent 26%),
    linear-gradient(120deg, #392d31, #672653 75%, #4d2144);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow);
}
.trust-section::after { position: absolute; right: -120px; bottom: -170px; width: 390px; height: 390px; border: 1px solid rgba(255, 255, 255, .4); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255, 255, 255, .06); content: ""; }
.trust-section__head { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.trust-section__head .section-label { color: #ffd5e7; }
.trust-section__head .section-label::before { color: inherit; }
.trust-section__head h2 { max-width: 11ch; margin: 0; }
.trust-section__head .prose { margin-left: auto; color: #f7dce9; }
.trust-rail { position: relative; z-index: 1; display: grid; grid-auto-columns: minmax(280px, 1fr); grid-auto-flow: column; gap: 16px; overflow-x: auto; padding: 2px 2px 12px; scroll-snap-type: x mandatory; scrollbar-color: rgba(255,255,255,.6) transparent; }
.trust-card { display: grid; grid-template-rows: min-content min-content 1fr; gap: 9px; min-height: 258px; padding: 25px; color: var(--ink); background: var(--surface); border: 1px solid rgba(255,255,255,.65); border-radius: var(--radius-sm); scroll-snap-align: start; box-shadow: 0 12px 24px rgba(23, 12, 18, .16); }
.trust-card:nth-child(2) { background: var(--surface-pink); }
.trust-card:nth-child(3) { background: var(--surface-blue); }
.trust-card:nth-child(4) { background: var(--surface-mint); }
.trust-card h3 { margin: 0; font-size: 24px; }
.trust-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }

.clients-section { padding-bottom: 0; }
.clients-section__head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.clients-section__head h2 { max-width: 17ch; margin: 0; }
.client-rail { display: flex; overflow-x: auto; padding: 7px 0; background: linear-gradient(90deg, var(--surface-pink), var(--surface), var(--surface-blue)); border-top: 1px solid var(--outline); border-bottom: 1px solid var(--outline); scrollbar-width: thin; }
.client-logo { display: grid; flex: 0 0 176px; height: 118px; padding: 23px; place-items: center; background: rgba(255, 255, 255, .74); border-right: 1px solid rgba(219, 192, 199, .8); }
.client-logo img { max-width: 100%; max-height: 65px; object-fit: contain; mix-blend-mode: multiply; }

.gradient-cta { overflow: hidden; color: var(--on-primary); background: linear-gradient(100deg, #d02185 0%, #a32d71 48%, #69255f 100%); border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-panel); box-shadow: var(--shadow); }
.gradient-cta__inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 456px; }
.gradient-cta__image { position: relative; min-height: 100%; background: url("images/service-sales.jpg") center / cover; }
.gradient-cta__image::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(208, 33, 133, .14), rgba(44, 12, 39, .72)); content: ""; }
.gradient-cta__content { display: flex; position: relative; flex-direction: column; align-items: flex-start; justify-content: center; max-width: 510px; padding: 60px 64px; }
.gradient-cta__content::after { position: absolute; top: -100px; right: -170px; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.08); content: ""; }
.gradient-cta__content h2, .gradient-cta__content p, .gradient-cta__content a { position: relative; z-index: 1; }
.gradient-cta__content h2 { margin-bottom: 30px; font-size: clamp(2.2rem, 3.2vw, 3.2rem); }
.gradient-cta__content > p { max-width: 40ch; margin: -14px 0 28px; color: #f8dce9; font-size: 18px; line-height: 1.45; }
.gradient-cta__content .button--outline { color: var(--primary-deep); background: var(--surface); border-color: transparent; }
.gradient-cta__content .button--outline:hover { color: var(--on-primary); background: var(--primary-deep); }

.copy-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f4, #fff9f9 60%, #f4ecff);
  border: 1px solid rgba(219, 192, 199, .8);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-soft);
}
.copy-split::after { position: absolute; top: -135px; right: -120px; width: 330px; height: 330px; border: 1px solid rgba(164, 51, 104, .24); border-radius: 50%; box-shadow: 0 0 0 33px rgba(164, 51, 104, .08); content: ""; }
.copy-split > * { position: relative; z-index: 1; }
.copy-split h2 { max-width: 10ch; margin-bottom: 0; }
.copy-split .prose { padding-top: 7px; }
.philosophy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.philosophy-card { position: relative; min-height: 318px; padding: 34px; overflow: hidden; background: var(--surface-low); border: 1px solid var(--outline); border-radius: var(--radius-card); box-shadow: var(--shadow-soft); }
.philosophy-card:nth-child(2) { background: var(--surface-blue); }
.philosophy-card::after { position: absolute; right: -50px; bottom: -56px; width: 150px; height: 150px; border: 1px solid rgba(35,25,28,.2); border-radius: 50%; content: ""; }
.philosophy-card .service-index { margin-bottom: 48px; }
.philosophy-card h3 { margin-bottom: 17px; font-size: 30px; }
.philosophy-card p, .philosophy-card ul { position: relative; z-index: 1; margin-bottom: 0; color: var(--ink-soft); font-size: 16px; }
.philosophy-card ul { padding-left: 18px; }
.mission-panel { position: relative; padding: 66px; overflow: hidden; color: var(--on-primary); background: linear-gradient(100deg, #d02185, #69255f); border-radius: var(--radius-panel); box-shadow: var(--shadow); }
.mission-panel::after { position: absolute; right: -110px; bottom: -180px; width: 400px; height: 400px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.08); content: ""; }
.mission-panel > * { position: relative; z-index: 1; }
.mission-panel h2 { max-width: 24ch; margin-bottom: 30px; }
.mission-panel .prose { color: #f9dfeb; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team-card { position: relative; min-height: 318px; padding: 34px; overflow: hidden; background: var(--surface-pink); border: 1px solid rgba(35,25,28,.08); border-radius: var(--radius-card); box-shadow: var(--shadow-soft); }
.team-card:nth-child(2n) { background: var(--surface-peach); }
.team-card:nth-child(3n) { background: var(--surface-blue); }
.team-card:nth-child(4n) { background: var(--surface-lilac); }
.team-card:nth-child(5n) { background: var(--surface-mint); }
.team-card::after { position: absolute; top: -44px; right: -35px; width: 135px; height: 135px; border: 1px solid rgba(35,25,28,.18); border-radius: 50%; content: ""; }
.team-card .service-index, .team-card h3, .team-card p { position: relative; z-index: 1; }
.team-card .service-index { margin-bottom: 43px; }
.team-card h3 { margin-bottom: 15px; font-size: 30px; }
.team-card p { max-width: 56ch; margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.53; }

.contact-grid { display: grid; grid-template-columns: .84fr 1fr; gap: 64px; align-items: stretch; }
.contact-info { display: flex; position: relative; flex-direction: column; align-items: flex-start; justify-content: center; padding: 34px 0; }
.contact-info::after { position: absolute; right: 0; bottom: 0; width: 190px; height: 190px; border: 20px solid rgba(208,33,133,.12); border-radius: 50%; content: ""; }
.contact-info > * { position: relative; z-index: 1; }
.contact-info h2 { max-width: 10ch; margin-bottom: 34px; }
.contact-info address { display: grid; gap: 8px; margin-bottom: 32px; color: var(--ink-soft); font-size: 18px; }
.contact-info address strong { color: var(--ink); }
.contact-info address a:hover { color: var(--primary); }
.contact-form { display: grid; gap: 22px; padding: 44px; background: linear-gradient(135deg, var(--surface-low), #fffafb); border: 1px solid var(--outline); border-radius: var(--radius-card); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 7px; }
.contact-form label span { color: var(--ink-soft); font-size: 14px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--outline); outline: 0; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--primary); }
.contact-form textarea { min-height: 124px; resize: vertical; }
.form-note { min-height: 1.3em; margin: -8px 0 0; color: var(--primary); font-size: 14px; }
.map-panel { position: relative; min-height: 370px; overflow: hidden; color: var(--on-primary); background: linear-gradient(115deg, #41223e, #a12570); border-radius: var(--radius-panel); box-shadow: var(--shadow); }
.map-panel::before { position: absolute; inset: 0; opacity: .68; background-image: linear-gradient(25deg, transparent 46%, rgba(255,255,255,.22) 47%, transparent 48%), linear-gradient(126deg, transparent 46%, rgba(255,255,255,.16) 47%, transparent 48%), linear-gradient(76deg, transparent 47%, rgba(255,255,255,.13) 48%, transparent 49%); background-size: 190px 150px, 250px 200px, 390px 230px; content: ""; }
.map-panel::after { position: absolute; right: -105px; bottom: -138px; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.07); content: ""; }
.map-panel__content { position: relative; z-index: 1; display: grid; min-height: 370px; place-content: center; text-align: center; }
.map-pin { display: grid; width: 43px; height: 43px; margin: 0 auto 16px; place-items: center; color: var(--primary); background: var(--surface); border-radius: 50% 50% 50% 0; box-shadow: 0 9px 27px rgba(0,0,0,.22); transform: rotate(-45deg); }
.map-pin span { font-size: 22px; transform: rotate(45deg); }
.map-panel p { margin-bottom: 0; font-size: 15px; font-weight: 750; letter-spacing: .09em; line-height: 1.65; }

.site-footer { position: relative; padding: 82px 0 30px; overflow: hidden; color: var(--on-primary); background: linear-gradient(110deg, #81154d, #5b1f4f); }
.site-footer::before { position: absolute; top: -245px; right: -150px; width: 490px; height: 490px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.055), 0 0 0 84px rgba(255,255,255,.035); content: ""; }
.footer-grid, .footer-bottom { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .9fr .9fr; gap: 40px; }
.footer-brand { display: block; width: 224px; margin-bottom: 26px; }
.footer-brand img { width: 100%; }
.footer-contact { color: #f6dce8; font-size: 14px; line-height: 1.75; }
.footer-contact a:hover, .footer-links a:hover { color: #ffb7d8; }
.footer-column h3 { margin-bottom: 17px; color: #ffd5e8; font-size: 14px; font-weight: 800; }
.footer-links { display: grid; gap: 10px; color: #f5dce8; font-size: 14px; }
.footer-bottom { margin-top: 60px; padding-top: 21px; color: #eed5e1; border-top: 1px solid rgba(255,255,255,.2); font-size: 12px; }
.back-to-top { position: fixed; z-index: 20; right: 24px; bottom: 24px; display: grid; width: 44px; height: 44px; place-items: center; color: var(--on-primary); background: var(--primary); border-radius: 50%; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { padding: 12px 0; }
  .site-nav { position: fixed; z-index: 10; top: 78px; right: 18px; left: 18px; display: grid; gap: 3px; padding: 16px; background: rgba(255,248,248,.98); border: 1px solid var(--outline); border-radius: var(--radius-card); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav > a, .nav-menu-button { padding: 13px 14px; font-size: 16px; text-align: left; }
  .nav-actions { margin-left: auto; }
  .nav-actions .button--outline, .nav-actions .header-action { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .service-card, .service-card:nth-child(even) { grid-template-columns: 1fr 1fr; }
  .service-card__content, .service-card:nth-child(even) .service-card__content { padding: 42px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .intro-grid, .copy-split { gap: 42px; padding: 46px; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .site-main { padding-bottom: 64px; }
  .section { padding: 70px 0; }
  .brand { width: 156px; }
  .brand img { height: 50px; }
  .hero { padding-top: 0; }
  .hero-panel { min-height: 500px; border-radius: 24px; }
  .hero-panel::after { right: -46%; bottom: -40%; width: 400px; }
  .hero__content { padding: 30px; }
  .hero__content h1 { max-width: 10ch; font-size: clamp(2.7rem, 12vw, 4.25rem); }
  .hero__content p:last-child { font-size: 18px; }
  .intro-grid, .services-intro, .copy-split, .contact-grid, .gradient-cta__inner, .trust-section__head { grid-template-columns: 1fr; }
  .intro-grid, .copy-split { gap: 28px; padding: 32px 28px; border-radius: 24px; }
  .intro-grid__title, .services-intro h2, .copy-split h2, .trust-section__head h2 { max-width: 12ch; }
  .services-intro { gap: 18px; margin-bottom: 35px; }
  .services-intro .prose { padding-top: 0; }
  .service-stack { gap: 26px; }
  .service-card, .service-card:nth-child(even) { grid-template-columns: 1fr; min-height: 0; }
  .service-card:nth-child(even) .service-card__visual, .service-card:nth-child(even) .service-card__content { grid-column: auto; grid-row: auto; }
  .service-card__visual { min-height: 260px; margin: 6px 6px 0; }
  .service-card__content, .service-card:nth-child(even) .service-card__content { padding: 34px 28px 38px; }
  .service-card__content h3 { font-size: clamp(2rem, 9vw, 2.9rem); }
  .trust-section { padding: 34px 28px; border-radius: 24px; }
  .trust-section__head { gap: 24px; }
  .trust-section__head .prose { margin-left: 0; }
  .trust-rail { grid-auto-columns: minmax(270px, 84vw); }
  .clients-section__head { align-items: start; flex-direction: column; gap: 20px; }
  .gradient-cta { border-radius: 24px; }
  .gradient-cta__image { min-height: 250px; }
  .gradient-cta__content { padding: 42px 28px; }
  .philosophy-grid, .team-grid { grid-template-columns: 1fr; }
  .mission-panel { padding: 40px 28px; border-radius: 24px; }
  .contact-grid { gap: 26px; }
  .contact-form { padding: 30px 28px; }
  .map-panel, .map-panel__content { min-height: 290px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { margin-top: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
