@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #ff3ea5;
  --black: #060608;
  --panel: #0d0d11;
  --muted: #a4a4ad;
  --line: #25252c;
  --white: #f8f7fa;
  --display: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --body: "Source Sans 3", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
main { overflow: hidden; }
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  background: var(--pink);
  color: #08080a;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.skip-link:focus { top: 12px; }

.announcement {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: #09090b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.announcement span { margin: 0 15px; }

.site-header {
  height: 110px;
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 10;
}
.brand img { width: 180px; height: 104px; object-fit: contain; }
.site-header nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
}
.site-header nav a,
.site-header nav .nav-parent > a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-header nav a:hover,
.site-header nav .nav-parent > a:hover { color: var(--pink); }
.nav-parent { position: relative; }
.nav-parent .sub-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: #0a0a0d;
  border: 1px solid var(--line);
  padding: 12px 0;
  display: none;
  z-index: 20;
}
.nav-parent:hover .sub-nav,
.nav-parent:focus-within .sub-nav { display: grid; }
.sub-nav a {
  padding: 10px 18px;
  font-size: 11px;
  color: #cfcfd6;
}
.sub-nav a:hover { color: var(--pink); background: #121218; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #45454d;
  color: var(--white);
  min-height: 44px;
  min-width: 44px;
  justify-self: end;
  margin-right: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 8, 0.96);
  z-index: 40;
  padding: 90px 24px 40px;
  overflow: auto;
}
.mobile-panel.is-open { display: block; }
.mobile-panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-family: var(--display);
  text-transform: uppercase;
  min-height: 44px;
}
.mobile-panel .panel-close {
  position: absolute;
  top: 28px;
  right: 20px;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 14px;
  min-height: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--pink);
  color: #08080a;
  padding: 18px 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  min-height: 44px;
}
.button span { font-size: 17px; }
.button-small { padding: 14px 18px; justify-self: end; }

.hero {
  min-height: 790px;
  height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #050507;
  background-size: cover;
  background-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.66) 43%, rgba(5, 5, 7, 0.16) 75%),
    linear-gradient(0deg, rgba(5, 5, 7, 0.65), transparent 55%);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 700px;
  margin-left: 8vw;
  margin-top: 88px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
  color: #d1d1d7;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--pink);
  display: inline-block;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  text-transform: uppercase;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.4px;
}
h1 {
  font-size: clamp(70px, 7.5vw, 126px);
  line-height: 0.82;
  margin: 28px 0;
}
h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--pink);
}
.hero-copy {
  max-width: 580px;
  color: #c6c6ce;
  font-size: 17px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 34px;
}
.text-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid #777;
  padding: 12px 0;
}
.text-link span {
  color: var(--pink);
  font-size: 16px;
  margin-left: 14px;
}
.hero-proof {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 58px;
  border-left: 2px solid var(--pink);
  padding-left: 18px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 10px;
}
.hero-proof strong { font: 42px/1 var(--display); }
.stars { color: var(--pink); letter-spacing: 2px; }
.hero-proof small {
  grid-column: 1 / 3;
  font-size: 9px;
  letter-spacing: 1.8px;
  color: #bdbdc5;
  margin-top: 5px;
}
.scroll-mark {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  font-size: 8px;
  letter-spacing: 2px;
  color: #aaa;
  writing-mode: vertical-rl;
}
.scroll-mark span { color: var(--pink); margin-top: 10px; }

.trust-strip {
  height: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #09090c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.trust-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--pink);
}

.section { padding: 110px 7vw; }
.section-heading h2,
.results h2,
.protection h2,
.about h2,
.quote-section h2,
.story-grid h2,
.community-intro h2,
.values h2,
.personal-cta h2,
.community-callout h2,
.page-copy h2 {
  font-size: clamp(52px, 5.6vw, 90px);
  line-height: 0.92;
  margin-top: 24px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  margin-bottom: 55px;
}
.split-heading > p,
.split-heading > div:last-child > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}
.service-card {
  min-height: 480px;
  background-size: cover;
  background-position: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.25s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  outline: 1px solid var(--pink);
  z-index: 2;
}
.service-number { font: 16px var(--display); color: var(--pink); }
.service-card h3 { font-size: 26px; }
.service-card p {
  color: #c3c3ca;
  font-size: 13px;
  line-height: 1.6;
  min-height: 62px;
}
.service-card b { font-size: 9px; letter-spacing: 1.5px; }
.service-card b span { float: right; color: var(--pink); font-size: 16px; }

.specialty-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--line);
  border-top: 0;
}
.specialty-row a {
  display: grid;
  grid-template-columns: 50px 1fr auto 28px;
  align-items: center;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: 0.2s;
  min-height: 44px;
}
.specialty-row a:last-child { border-right: 0; }
.specialty-row span { color: var(--pink); font: 16px var(--display); }
.specialty-row strong { font: 26px var(--display); text-transform: uppercase; }
.specialty-row small { font-size: 8px; letter-spacing: 1.5px; color: #aaa; }
.specialty-row b { color: var(--pink); }

.care-heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  gap: 30px;
  margin: 90px 0 30px;
}
.care-heading .eyebrow { grid-column: 1 / 3; }
.care-heading h3 {
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 0.95;
}
.care-heading h3 em { font-style: normal; color: var(--pink); }
.care-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 470px;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}
.care-card {
  min-height: 270px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  transition: 0.2s;
}
.care-card:last-child { border-right: 0; }
.care-card:hover {
  background: #121218;
  box-shadow: inset 0 3px var(--pink);
}
.care-card > span { font: 16px var(--display); color: var(--pink); }
.care-card h4 {
  font: 24px var(--display);
  text-transform: uppercase;
  margin: 42px 0 12px;
}
.care-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}
.care-card b {
  font-size: 8px;
  letter-spacing: 1.2px;
  margin-top: auto;
  color: #ddd;
}

.corporate-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  padding: 90px 8vw;
  background: #09090c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.corporate-band h2 {
  font-size: clamp(48px, 5vw, 84px);
  line-height: 0.92;
  margin: 18px 0 22px;
}
.corporate-band > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 28px;
}
.corporate-photo {
  margin: 0;
  background: #111;
  min-height: 420px;
}
.corporate-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 40% center;
  display: block;
}

.results {
  display: grid;
  grid-template-columns: 46% 54%;
  background: #0a0a0d;
  padding-right: 0;
}
.results-copy { padding-right: 7vw; }
.results-copy > p:not(.eyebrow),
.protection-copy > p,
.about-content > p:not(.eyebrow),
.quote-intro > p:not(.eyebrow),
.page-copy p,
.story-copy p,
.community-intro > div:last-child p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}
.results ul {
  list-style: none;
  padding: 20px 0;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}
.results li {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.results li > b { color: var(--pink); font: 16px var(--display); }
.results li span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.results li strong {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.results li small { color: #888; }

.ba-slider,
.before-after {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  background: #08080c;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  pointer-events: none;
}
.ba-before-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--pink);
  z-index: 3;
  transform: translateX(-1px);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: #070709;
  display: grid;
  place-items: center;
  font-size: 16px;
  pointer-events: none;
}
.label {
  position: absolute;
  top: 28px;
  background: #09090c;
  padding: 8px 12px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
  z-index: 5;
}
.label-before { left: 25px; }
.label-after { right: 25px; color: var(--pink); }
.placeholder-panel {
  min-height: 700px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.2), rgba(8, 8, 12, 0.85)),
    url("../images/hero-1200.jpg") center / cover;
}
.placeholder-panel p {
  max-width: 360px;
  color: #cfcfd6;
  font-size: 14px;
  line-height: 1.6;
}
.placeholder-panel small {
  display: block;
  margin-top: 12px;
  color: var(--pink);
  letter-spacing: 1.4px;
  font-size: 9px;
}

.showcase { background: #07070a; }
.gallery-note {
  display: block;
  color: var(--pink);
  font-size: 8px;
  letter-spacing: 1.3px;
  line-height: 1.5;
  margin-top: 12px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.showcase-grid article {
  border: 1px solid var(--line);
  background: #0d0d11;
}
.showcase-grid .ba-slider,
.showcase-grid .comparison-pair { min-height: 440px; height: 440px; }
.showcase-meta {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.showcase-meta small {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--pink);
}
.showcase-meta h3 { font-size: 25px; margin-top: 8px; }
.showcase-meta p {
  color: #888;
  text-align: right;
  font-size: 10px;
  line-height: 1.6;
  margin: 0;
}
.showcase-cta {
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.showcase-cta p {
  color: var(--muted);
  font-size: 12px;
  max-width: 560px;
  line-height: 1.6;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.gallery-filters a,
.gallery-filters span {
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.gallery-filters .is-active {
  border-color: var(--pink);
  color: var(--pink);
}

.protection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
}
.protection-image {
  height: 680px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75)), url("../images/placeholder-protection.jpg") center / cover;
  position: relative;
}
.protection-image > span {
  position: absolute;
  bottom: 25px;
  left: 25px;
  font: 48px / 0.9 var(--display);
  color: var(--pink);
  text-transform: uppercase;
}
.protection-image small {
  font: 9px var(--body);
  letter-spacing: 2px;
  color: white;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 35px 0;
}
.metrics div {
  padding: 25px 14px;
  border-right: 1px solid var(--line);
}
.metrics strong {
  display: block;
  font: 28px var(--display);
  color: var(--pink);
}
.metrics span {
  font-size: 8px;
  letter-spacing: 1.3px;
  color: #aaa;
}
.outline-button {
  display: inline-flex;
  gap: 25px;
  border: 1px solid #555;
  padding: 16px 18px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.outline-button span { color: var(--pink); }

.reviews { background: #0b0b0e; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}
.review-grid article {
  background: #111116;
  padding: 32px;
  border: 1px solid #1d1d24;
}
.review-grid blockquote {
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  margin: 22px 0 36px;
}
.review-grid footer {
  border-top: 1px solid var(--line);
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
}
.review-grid footer span { font-size: 10px; font-weight: bold; }
.review-grid footer small {
  font-size: 8px;
  color: #888;
  letter-spacing: 1px;
}

.about {
  min-height: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  padding: 0;
  background: #08080b;
}
.about-content {
  max-width: none;
  padding: 90px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .text-link { display: inline-block; margin-top: 25px; }
.about-photo {
  margin: 0;
  min-height: 640px;
  background: #111;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  display: block;
}

.quote-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  padding: 110px 7vw;
  gap: 9vw;
  background: var(--pink);
  color: #08080a;
}
.quote-section .eyebrow { color: #08080a; }
.quote-section .eyebrow span { background: #08080a; }
.quote-section h2 em { color: white; }
.quote-intro > p:not(.eyebrow) { color: #48152f; }
.contact-line {
  border-top: 1px solid rgba(0, 0, 0, 0.28);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.contact-line small { font-size: 8px; letter-spacing: 1.5px; }
.contact-line strong { font-size: 12px; }
.direct-contact {
  background: #0a0a0d;
  color: white;
  padding: 46px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.direct-contact > small:first-child {
  color: var(--pink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
}
.direct-contact h3 {
  font-size: clamp(42px, 4vw, 64px);
  margin: 18px 0;
}
.direct-contact p {
  color: #aaa;
  line-height: 1.7;
  font-size: 14px;
  margin: 0 0 30px;
}
.direct-contact .button { width: 100%; margin-bottom: 12px; }
.contact-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid #45454d;
  padding: 17px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  min-height: 44px;
}
.contact-outline:hover { border-color: var(--pink); color: var(--pink); }
.response-note {
  text-align: center;
  color: #686872;
  font-size: 8px;
  letter-spacing: 1.4px;
  margin-top: 20px;
}

.footer {
  padding: 65px 7vw 30px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 45px;
  background: #070709;
}
.footer-brand img { width: 140px; }
.footer-brand p {
  color: #888;
  font-size: 12px;
  max-width: 210px;
  line-height: 1.6;
}
.footer > div:not(.footer-brand):not(.footer-bottom) {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer b {
  font-size: 9px;
  color: var(--pink);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.footer a { font-size: 11px; color: #aaa; }
.footer-bottom {
  grid-column: 1 / 5;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.3px;
  color: #777;
}
.mobile-contact { display: none; }

.inner-header { position: absolute; }
.inner-hero {
  min-height: 690px;
  padding: 180px 8vw 90px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.inner-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 7, 0.96), rgba(5, 5, 7, 0.45)), linear-gradient(0deg, #060608, transparent 45%);
}
.inner-hero > div { position: relative; z-index: 1; max-width: 780px; }
.inner-hero h1 { margin: 25px 0; }
.inner-hero > div > p:last-child {
  color: #c5c5ce;
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
}
.about-hero {
  background-image: url("../images/tony-portrait.jpg");
  background-position: 50% 12%;
}
.community-hero { background-image: url("../images/placeholder-community.jpg"); }
.service-hero { background-image: url("../images/placeholder-auto.jpg"); }
.gallery-hero { background-image: url("../images/hero-1200.jpg"); }
.contact-hero,
.areas-hero { background-image: url("../images/hero-1200.jpg"); }

.breadcrumbs {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8d8d96;
  margin-bottom: 18px;
}
.breadcrumbs a { color: #cfcfd6; }
.breadcrumbs a:hover { color: var(--pink); }

.story-grid,
.community-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  align-items: center;
}
.tony-portrait {
  margin: 0;
  background: #111;
}
.tony-portrait img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 12%;
}
.sample-note {
  border-left: 2px solid var(--pink);
  padding: 14px 18px;
  background: #101014;
  font-size: 12px !important;
}
.values { background: #0b0b0e; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border: 1px solid var(--line);
}
.value-grid article {
  padding: 38px;
  border-right: 1px solid var(--line);
}
.value-grid article:last-child { border-right: 0; }
.value-grid b { color: var(--pink); font: 18px var(--display); }
.value-grid h3 { font-size: 30px; margin: 55px 0 14px; }
.value-grid p { color: var(--muted); line-height: 1.65; font-size: 13px; }
.personal-cta,
.community-callout {
  padding: 95px 8vw;
  background: var(--pink);
  color: #070709;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: center;
}
.personal-cta .eyebrow,
.community-callout .eyebrow { color: #070709; }
.personal-cta .eyebrow span,
.community-callout .eyebrow span { background: #070709; }
.personal-cta h2 em,
.community-callout h2 em { color: #fff; }
.personal-cta > div:last-child p,
.community-callout > p { line-height: 1.7; color: #461329; }
.personal-cta .contact-outline,
.community-callout .contact-outline {
  border-color: #070709;
  color: #070709;
  margin-top: 10px;
}
.community-intro { background: #08080b; }
.community-stories { background: #0d0d11; }
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.story-cards article { background: #111116; padding-bottom: 28px; }
.community-photo {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-bottom: 28px;
}
.community-photo span {
  font-size: 8px;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 14px;
}
.story-cards article > small,
.story-cards article > h3,
.story-cards article > p {
  margin-left: 25px;
  margin-right: 25px;
}
.story-cards article > small {
  font-size: 8px;
  letter-spacing: 1.6px;
  color: var(--pink);
}
.story-cards h3 { font-size: 27px; margin-top: 14px; }
.story-cards p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.community-callout { display: block; text-align: center; }
.community-callout .eyebrow { justify-content: center; }
.community-callout > p { max-width: 630px; margin: 22px auto; }
.community-callout > div { display: flex; justify-content: center; gap: 12px; }
.community-callout .contact-outline { margin-top: 0; min-width: 160px; }

.page-copy {
  max-width: 760px;
}
.page-copy h2 { margin: 36px 0 16px; font-size: 42px; }
.page-copy ul { color: var(--muted); line-height: 1.8; padding-left: 18px; }
.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin: 50px 0 20px;
}
.include-grid article {
  background: var(--panel);
  padding: 36px 32px;
  min-height: 220px;
}
.include-grid span { color: var(--pink); font: 16px var(--display); }
.include-grid h3 { font-size: 30px; margin: 28px 0 12px; }
.include-grid p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }
.service-process { max-width: 760px; margin-top: 10px; }
.service-quote-row { margin: 40px 0 10px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.work-grid figure { margin: 0; }
.work-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: #111;
}
.service-work { background: #07070a; padding-top: 90px; }
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 40px;
}
.related-services a {
  background: var(--panel);
  padding: 28px;
  min-height: 140px;
}
.related-services a:hover { outline: 1px solid var(--pink); }
.related-services span { color: var(--pink); font: 14px var(--display); }
.related-services strong { display: block; margin-top: 20px; font: 22px var(--display); }

.empty-state {
  border: 1px solid var(--line);
  padding: 40px;
  background: var(--panel);
  color: var(--muted);
  line-height: 1.7;
}

.error-page {
  min-height: 70vh;
  padding: 180px 8vw 80px;
}

@media (max-width: 1280px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card h3 { font-size: 28px; }
  .specialty-row a {
    grid-template-columns: 44px 1fr 20px;
  }
  .specialty-row small { display: none; }
}

@media (max-width: 1000px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-grid .ba-slider,
  .showcase-grid .comparison-pair { height: 520px; }
  .showcase-grid article { max-width: 780px; width: 100%; margin: auto; }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    height: 90px;
    padding: 0 20px;
  }
  .brand img { width: 138px; height: 84px; }
  .site-header nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero {
    min-height: 720px;
    height: auto;
    background-position: 62% center;
  }
  .hero-content { margin: 112px 22px 80px; width: auto; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 5, 7, 0.95), rgba(5, 5, 7, 0.5)), linear-gradient(0deg, #050507, transparent);
  }
  h1 { font-size: 64px; }
  .hero-copy { font-size: 14px; }
  .hero-proof, .scroll-mark { display: none; }
  .trust-strip {
    overflow: auto;
    justify-content: flex-start;
    gap: 34px;
    padding: 0 24px;
    white-space: nowrap;
  }
  .section { padding: 80px 22px; }
  .split-heading { grid-template-columns: 1fr; }
  .split-heading > p { margin-top: 24px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 420px; }
  .specialty-row { grid-template-columns: 1fr; }
  .specialty-row a { border-bottom: 1px solid var(--line); }
  .results { grid-template-columns: 1fr; padding-right: 22px; }
  .results-copy { padding-right: 0; }
  .before-after, .ba-slider, .placeholder-panel { min-height: 520px; margin-top: 55px; }
  .protection { grid-template-columns: 1fr; }
  .protection-image { height: 520px; }
  .review-grid { grid-template-columns: 1fr; }
  .about {
    grid-template-columns: 1fr;
  }
  .about-photo {
    order: -1;
    min-height: 460px;
  }
  .quote-section { grid-template-columns: 1fr; padding: 80px 22px; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-column: 1 / 3; }
  .footer-brand { grid-column: 1 / 3; }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .care-card { border-bottom: 1px solid var(--line); }
  .care-heading { grid-template-columns: 1fr; }
  .care-heading .eyebrow { grid-column: 1; }
  .corporate-band {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 22px;
  }
  .story-grid, .community-intro, .personal-cta { grid-template-columns: 1fr; }
  .value-grid, .story-cards, .related-services, .include-grid, .work-grid { grid-template-columns: 1fr; }
  .value-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .inner-hero { min-height: 620px; padding-left: 22px; padding-right: 22px; }
  .personal-cta, .community-callout { padding: 75px 22px; }
}

@media (max-width: 560px) {
  .announcement { font-size: 7px; letter-spacing: 1.2px; }
  .site-header .button-small { display: none; }
  .brand img { width: 128px; height: 82px; }
  .hero { min-height: 690px; }
  .hero-content { margin-top: 120px; }
  .eyebrow { font-size: 8px; letter-spacing: 1.5px; }
  h1 { font-size: 52px; line-height: 0.87; }
  .hero-copy { max-width: 320px; }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .hero-actions .button { width: 100%; }
  .section-heading h2,
  .results h2,
  .protection h2,
  .about h2,
  .quote-section h2 { font-size: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 440px; }
  .specialty-row a { grid-template-columns: 36px 1fr 20px; }
  .specialty-row small { display: none; }
  .results li span { display: block; }
  .results li small { display: block; margin-top: 5px; }
  .before-after, .ba-slider, .placeholder-panel {
    min-height: 430px;
    margin-left: -22px;
    margin-right: -22px;
  }
  .protection-image { height: 430px; }
  .metrics strong { font-size: 22px; }
  .footer {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 95px;
  }
  .footer-brand { grid-column: 1 / 3; }
  .footer-bottom {
    grid-column: 1 / 3;
    flex-direction: column;
    gap: 12px;
  }
  .care-heading { margin-top: 65px; }
  .care-grid { grid-template-columns: 1fr; }
  .care-card { min-height: 220px; border-right: 0; }
  .care-card h4 { margin-top: 30px; }
  .direct-contact { padding: 30px 24px; }
  .mobile-contact {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    position: fixed;
    z-index: 30;
    bottom: 0;
    left: 0;
    right: 0;
    height: 58px;
  }
  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0d;
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    min-height: 44px;
  }
  .mobile-contact a:last-child {
    background: var(--pink);
    color: #070709;
  }
  .inner-hero { min-height: 590px; padding-top: 145px; }
  .inner-hero h1 { font-size: 58px; }
  .community-callout > div { flex-direction: column; }
  .showcase-meta { display: block; }
  .showcase-meta p { text-align: left; margin-top: 12px; }
  .showcase-cta { align-items: flex-start; flex-direction: column; }
  .showcase-cta .outline-button { width: 100%; justify-content: center; }
  .has-mobile-bar { padding-bottom: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .service-card { transition: none; }
}
