:root {
  --ink: #062a50;
  --ink-deep: #031b34;
  --ink-soft: #163e64;
  --blue-pale: #eaf0f5;
  --gold: #d7a634;
  --gold-dark: #ad7b12;
  --cream: #f4efe5;
  --paper: #fcfaf6;
  --white: #ffffff;
  --muted: #627069;
  --line: #d8d9d2;
  --shadow-sm: 0 12px 30px rgba(3, 27, 52, 0.1);
  --shadow-lg: 0 28px 70px rgba(3, 27, 52, 0.18);
  --radius: 12px;
  --radius-lg: 24px;
  --container: 1240px;
  --header-height: 96px;
  color-scheme: light;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--ink-soft);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  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 {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #f3c95f;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.button-primary:hover {
  color: var(--white);
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-ghost-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.text-link b {
  color: var(--gold-dark);
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

.text-link:hover b {
  transform: translateX(5px);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  gap: 72px;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.05rem;
}

.centered-heading {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .eyebrow::before {
  display: none;
}

.centered-heading p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.centered-heading h2,
.centered-heading h3 {
  color: var(--white);
}

.centered-heading.dark-text h2,
.centered-heading.dark-text h3 {
  color: var(--ink);
}

.centered-heading.dark-text p {
  color: var(--muted);
}

/* Header */

.site-header {
  position: relative;
  z-index: 100;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(6, 42, 80, 0.12);
}

.topbar {
  color: var(--white);
  background: var(--ink);
}

.topbar-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topbar p {
  display: flex;
  align-items: center;
  margin: 0;
}

.topbar a {
  white-space: nowrap;
}

.status-dot {
  width: 9px;
  height: 9px;
  margin-right: 10px;
  background: #91c895;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(145, 200, 149, 0.13);
}

.nav-wrap {
  position: relative;
  background: rgba(252, 250, 246, 0.98);
}

.nav-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 62px;
  height: 66px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.brand-type {
  display: grid;
  line-height: 1.05;
}

.brand-type strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-type small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 0.87rem;
  font-weight: 800;
}

.desktop-nav > a,
.nav-services > summary {
  padding: 18px 2px;
  cursor: pointer;
  list-style: none;
}

.desktop-nav > a:hover,
.nav-services > summary:hover {
  color: var(--gold-dark);
}

.nav-services {
  position: relative;
}

.nav-services > summary::-webkit-details-marker {
  display: none;
}

.service-menu-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 360px;
  max-height: min(70vh, 680px);
  padding: 16px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
}

.service-menu-panel a {
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 0.82rem;
}

.service-menu-panel a:hover {
  color: var(--white);
  background: var(--ink);
}

.menu-divider {
  margin: 8px 12px 3px;
  padding-top: 12px;
  color: var(--gold-dark);
  border-top: 1px solid var(--line);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-cta {
  white-space: nowrap;
}

.mobile-menu-button,
.mobile-navigation {
  display: none;
}

/* Home hero */

.home-hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.home-hero-image,
.home-hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-hero-overlay {
  background: linear-gradient(90deg, rgba(3, 27, 52, 0.96) 0%, rgba(3, 27, 52, 0.83) 45%, rgba(3, 27, 52, 0.45) 100%);
}

.hero-glow {
  width: 680px;
  height: 680px;
  margin: auto 0 -300px -250px;
  background: radial-gradient(circle, rgba(215, 166, 52, 0.25), transparent 70%);
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.58fr);
  gap: 72px;
  align-items: start;
  padding-top: 92px;
  padding-bottom: 92px;
}

.hero-copy {
  padding-top: 54px;
}

.hero-copy h1,
.contact-hero h1,
.service-hero h1,
.not-found h1 {
  color: var(--white);
}

.hero-copy h1 {
  max-width: 780px;
}

.hero-copy > p,
.contact-hero-copy > p,
.service-hero-copy > p {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof div {
  display: grid;
  gap: 5px;
  padding-right: 20px;
}

.hero-proof div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-form-card,
.contact-form-panel {
  padding: 34px;
  color: var(--ink);
  background: rgba(252, 250, 246, 0.98);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-form-card h2,
.contact-form-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-embed {
  margin-top: 22px;
}

.quote-iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  border-radius: 10px;
  background: var(--white);
}

.form-privacy {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.form-privacy a {
  text-decoration: underline;
}

.trust-strip {
  color: var(--white);
  background: var(--ink-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
}

.trust-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid > div:nth-child(3n + 1) {
  border-left: 0;
}

.trust-grid > div:nth-child(n + 4) {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid > div > span {
  color: var(--gold);
  font-size: 1.2rem;
}

.trust-grid p {
  display: grid;
  gap: 2px;
  margin: 0;
  line-height: 1.35;
}

.trust-grid strong {
  font-size: 0.84rem;
}

.trust-grid small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
}

/* Cards and home sections */

.services-section {
  background: var(--paper);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(3, 27, 52, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  position: relative;
  overflow: hidden;
  background: var(--blue-pale);
}

.service-card-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: none;
}

.service-card-image > span,
.care-service-image > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.service-card-body h3 {
  min-height: 2.1em;
  font-size: 1.6rem;
}

.service-card-body p {
  flex: 1;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.58;
}

.service-card-body .text-link {
  align-self: flex-start;
  margin-top: 14px;
  font-size: 0.83rem;
}

.image-disclosure {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.concrete-care-section {
  background: var(--cream);
}

.care-service-list {
  display: grid;
  gap: 38px;
}

.care-service {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.care-service-media {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.care-service-reverse .care-service-media {
  grid-column: 2;
}

.care-service-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.care-service-image img {
  display: block;
  width: 100%;
  height: auto;
}

.care-service-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding: 58px;
}

.care-service-reverse .care-service-copy {
  grid-column: 1;
}

.care-service-copy h3 {
  font-size: clamp(2.5rem, 4vw, 4.25rem);
}

.care-service-copy > p:not(.lead):not(.care-note) {
  color: var(--muted);
  font-size: 0.95rem;
}

.care-ideal {
  margin: 28px 0;
  padding: 24px;
  background: var(--blue-pale);
  border-left: 4px solid var(--gold);
}

.care-ideal > strong {
  display: block;
  margin-bottom: 13px;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.care-ideal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.care-ideal li {
  padding: 6px 10px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid #cdd8e1;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.care-note {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-weight: 700;
}

.care-photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  background: var(--ink);
}

.care-photo-strip figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink-deep);
}

.care-photo-strip img {
  display: block;
  width: 100%;
  height: auto;
}

.care-photo-strip figure:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.home-gallery-callout {
  color: var(--white);
  background: var(--ink-deep);
}

.gallery-callout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.gallery-callout-grid h2 {
  color: var(--white);
}

.gallery-callout-grid p {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-callout-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.gallery-callout-images img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.gallery-callout-images img:first-child {
  grid-row: auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.photo-card:hover img {
  transform: none;
}

.service-gallery-section {
  background: var(--white);
}

.service-gallery-section + .service-gallery-section {
  padding-top: 0;
}

.service-photo-grid .photo-card:first-child:nth-last-child(7) {
  grid-column: span 2;
}

.feature-section {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: 86px;
  align-items: center;
}

.feature-image-wrap {
  position: relative;
}

.feature-image-wrap > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-badge {
  position: absolute;
  right: -30px;
  bottom: 42px;
  display: grid;
  max-width: 250px;
  gap: 4px;
  padding: 22px 26px;
  color: var(--white);
  background: var(--ink);
  border-left: 6px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.feature-badge strong {
  font-size: 1.05rem;
}

.feature-badge span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}

.detail-list,
.process-grid,
.service-process-grid,
.included-list,
.ideal-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list {
  display: grid;
  margin: 34px 0;
}

.detail-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.detail-list li > span {
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.detail-list strong {
  display: block;
  margin-bottom: 4px;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-section,
.owner-section {
  color: var(--white);
  background: var(--ink);
}

.process-grid,
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.process-grid li,
.service-process-grid li {
  min-height: 290px;
  padding: 38px 32px;
  background: var(--ink);
}

.process-grid li > span,
.service-process-grid li > span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-grid h3,
.service-process-grid h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.process-grid p,
.service-process-grid p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.values-section {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.68fr);
  gap: 90px;
  align-items: center;
}

.values-grid > div > p {
  max-width: 720px;
  color: var(--muted);
}

.values-grid blockquote {
  position: relative;
  padding: 48px;
  margin-bottom: 0;
  color: var(--white);
  background: var(--ink-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.values-grid blockquote > span {
  position: absolute;
  top: 14px;
  left: 26px;
  color: rgba(215, 166, 52, 0.32);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.values-grid blockquote p {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.45;
}

.values-grid blockquote footer {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-area-section {
  background: var(--white);
}

.service-area-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.service-area-heading h2 {
  margin-bottom: 0;
}

.service-area-heading > p {
  color: var(--muted);
}

.area-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.area-map {
  min-height: 520px;
}

.area-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.72) contrast(1.05);
}

.area-copy {
  align-self: center;
  padding: 48px;
}

.area-copy > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.area-copy h3 {
  margin-top: 12px;
  color: var(--white);
  font-size: 2.5rem;
}

.area-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.area-copy .text-link {
  color: var(--white);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
}

.area-chips span {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
}

.faq-section,
.service-faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: 86px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 36px;
}

.faq-intro p {
  color: var(--muted);
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.accordion-list details {
  border-bottom: 1px solid var(--line);
}

.accordion-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 800;
  list-style: none;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list summary span {
  flex: 0 0 auto;
  color: var(--gold-dark);
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.accordion-list details[open] summary span {
  transform: rotate(45deg);
}

.accordion-list details > p {
  max-width: 760px;
  padding: 0 52px 28px 0;
  color: var(--muted);
}

.expert-review {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 62px;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.expert-monogram {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-weight: 900;
}

.expert-review strong {
  display: block;
}

.expert-review p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.review-date {
  text-align: right;
}

/* Shared lower CTA and footer */

.cta-band {
  padding: 88px 0;
  color: var(--white);
  background: linear-gradient(110deg, var(--ink-soft), var(--ink-deep));
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: center;
}

.cta-inner h2 {
  max-width: 900px;
  margin-bottom: 14px;
  color: var(--white);
}

.cta-inner p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.cta-phone {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.cta-phone strong {
  color: var(--white);
}

.site-footer {
  padding: 84px 0 24px;
  color: var(--white);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.72fr 1fr;
  gap: 56px;
}

.brand-light .brand-type strong {
  color: var(--white);
}

.brand-light .brand-type small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-about > p {
  max-width: 370px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-row span {
  padding: 5px 9px;
  color: #eac458;
  border: 1px solid rgba(215, 166, 52, 0.35);
  border-radius: 999px;
  font-size: 0.68rem;
}

.site-footer h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links,
.site-footer address {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-style: normal;
}

.footer-links a:hover,
.site-footer address a:hover {
  color: var(--gold);
}

.footer-button {
  margin-top: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  margin-top: 68px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

/* Inner pages */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--gold-dark);
}

.breadcrumbs-light {
  color: rgba(255, 255, 255, 0.65);
}

.inner-hero {
  padding: 72px 0 92px;
  background: var(--cream);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 80px;
  align-items: end;
}

.inner-hero h1 {
  max-width: 960px;
  margin-bottom: 24px;
}

.inner-hero-grid > div:first-child > p {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-stat {
  display: grid;
  gap: 8px;
  padding: 34px;
  color: var(--white);
  background: var(--ink);
  border-left: 6px solid var(--gold);
  border-radius: 10px;
}

.hero-stat strong {
  color: var(--gold);
  font-size: 2.4rem;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: center;
}

.owner-brand-panel {
  padding: 52px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.owner-brand-panel img {
  width: min(100%, 340px);
  margin: 0 auto;
  border-radius: 18px;
}

.owner-brand-panel p {
  margin: 24px 0 0;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-copy > p:not(.lead) {
  color: var(--muted);
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1fr);
  gap: 90px;
}

.owner-grid h2 {
  color: var(--white);
}

.owner-title {
  color: var(--gold);
  font-weight: 800;
}

.owner-family-photo {
  max-width: 560px;
  margin: 32px 0 0;
  overflow: hidden;
  background: var(--ink-deep);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
}

.owner-family-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center 38%;
}

.owner-family-photo figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.gallery-hero .inner-hero-grid {
  align-items: end;
}

.gallery-jump-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: 14px 0;
  color: var(--white);
  background: rgba(3, 27, 52, 0.96);
  box-shadow: 0 8px 22px rgba(3, 27, 52, 0.16);
}

.gallery-jump-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-jump-nav a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.gallery-jump-nav a:hover {
  color: var(--ink-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-group {
  scroll-margin-top: 90px;
  background: var(--paper);
}

.gallery-group-alt {
  background: var(--cream);
}

.gallery-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-photo-card figcaption {
  min-height: 58px;
  padding: 15px 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.gallery-disclosure {
  padding: 28px;
  color: var(--muted);
  background: var(--blue-pale);
  border-left: 5px solid var(--gold);
}

.gallery-disclosure p {
  margin: 0;
}

.owner-commitment {
  max-width: 600px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.owner-commitment p {
  color: rgba(255, 255, 255, 0.68);
}

.owner-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.owner-facts > div {
  padding: 30px;
  background: var(--ink);
}

.owner-facts dt {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owner-facts dd {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.standards-section {
  background: var(--paper);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.standards-grid article {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
}

.standards-grid article > span {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.standards-grid h3 {
  margin-top: 24px;
}

.standards-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-hero,
.legal-hero,
.not-found {
  padding: 72px 0 92px;
  color: var(--white);
  background: linear-gradient(118deg, var(--ink-deep), var(--ink-soft));
}

.contact-hero-copy {
  max-width: 950px;
}

.contact-main-section {
  background: var(--cream);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.contact-form-panel {
  border: 1px solid var(--line);
}

.contact-info-panel {
  display: grid;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info-panel > div {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-info-panel > div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-panel a,
.contact-info-panel strong {
  color: var(--white);
  font-size: 1.1rem;
}

.contact-info-panel p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.google-profile-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.google-profile-card > span {
  display: grid !important;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink) !important;
  background: var(--white);
  border-radius: 999px;
  font-size: 1.1rem !important;
}

.google-profile-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.8rem;
}

.contact-services-section {
  background: var(--white);
}

.contact-services-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  gap: 90px;
}

.contact-service-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.contact-service-links a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}

.contact-service-links a:nth-child(odd) {
  padding-right: 24px;
}

.contact-service-links a:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.contact-service-links span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-service-links strong {
  font-size: 0.82rem;
}

.contact-service-links b {
  color: var(--gold-dark);
}

.legal-hero h1,
.not-found h1 {
  max-width: 980px;
}

.legal-hero p,
.not-found p {
  color: rgba(255, 255, 255, 0.7);
}

.legal-content {
  max-width: 880px;
}

.legal-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 1.7rem;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--ink-soft);
  text-decoration: underline;
}

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
}

/* Service pages */

.service-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.service-hero-image,
.service-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hero-image {
  object-fit: contain;
}

.service-hero-overlay {
  background: linear-gradient(90deg, rgba(3, 27, 52, 0.96), rgba(3, 27, 52, 0.78) 58%, rgba(3, 27, 52, 0.38));
}

.service-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 76px;
  align-items: end;
  min-height: 680px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.service-hero-copy h1 {
  max-width: 920px;
}

.service-hero-copy h1 em {
  display: block;
  margin-top: 10px;
  font-size: 0.55em;
}

.service-hero-aside {
  padding: 30px;
  background: rgba(3, 27, 52, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid var(--gold);
  backdrop-filter: blur(8px);
}

.service-hero-aside > span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.prep-list,
.problem-list,
.materials-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.prep-list li,
.problem-list li,
.materials-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 9px 0;
}

.prep-list li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.84rem;
}

.prep-list li > span:first-child,
.problem-list li > span:first-child,
.materials-list li > span:first-child {
  color: var(--gold);
  font-weight: 900;
}

.service-intro-section {
  background: var(--white);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: 80px;
  align-items: center;
}

.service-intro-copy > p {
  color: var(--muted);
}

.service-intro-copy > p:first-of-type {
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.service-intro-image {
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-intro-image img {
  display: block;
  width: 100%;
  height: auto;
}

.service-intro-image figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.problem-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  padding: 46px 52px;
  margin-top: 72px;
  color: var(--white);
  background: var(--ink);
  border-left: 6px solid var(--gold);
}

.problem-panel h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
}

.problem-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

.benefits-section {
  background: var(--cream);
}

.compact-heading {
  max-width: 900px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-grid article {
  min-height: 310px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: 0 8px 24px rgba(3, 27, 52, 0.05);
}

.benefit-grid article > span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.benefit-grid h3 {
  font-size: 1.55rem;
}

.benefit-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.included-section {
  background: var(--white);
}

.included-grid,
.materials-grid,
.ideal-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 92px;
  align-items: start;
}

.included-copy {
  position: sticky;
  top: 36px;
}

.included-copy > p,
.materials-grid > div > p {
  color: var(--muted);
}

.included-list,
.ideal-list {
  border-top: 1px solid var(--line);
}

.included-list li,
.ideal-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}

.included-list span,
.ideal-list span {
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.included-list strong,
.ideal-list strong {
  font-size: 0.96rem;
}

.service-process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.materials-section {
  background: var(--white);
}

.materials-list {
  padding: 30px 34px;
  background: var(--cream);
  border-left: 5px solid var(--gold);
}

.materials-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.materials-list li:last-child {
  border-bottom: 0;
}

.custom-section {
  background: var(--blue-pale);
}

.custom-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.custom-card {
  display: block;
  min-height: 250px;
  padding: 32px;
  background: var(--white);
  border: 1px solid #cfdae3;
  border-bottom: 5px solid var(--ink);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

a.custom-card:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-5px);
}

.custom-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.custom-card h3 {
  font-size: 1.45rem;
}

a.custom-card:hover h3 {
  color: var(--white);
}

.custom-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

a.custom-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.custom-card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-dark);
  font-size: 0.75rem;
}

.ideal-section {
  color: var(--white);
  background: var(--ink-soft);
}

.ideal-grid > div h2 {
  color: var(--white);
}

.ideal-list {
  border-color: rgba(255, 255, 255, 0.18);
}

.ideal-list li {
  border-color: rgba(255, 255, 255, 0.18);
}

.ideal-list strong {
  color: rgba(255, 255, 255, 0.82);
}

.related-section {
  background: var(--cream);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.related-grid a {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.related-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  transition: transform 0.35s ease;
}

.related-grid a:hover img {
  transform: none;
}

.related-grid a > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.related-grid h3 {
  margin: 0;
  font-size: 1.25rem;
}

.related-grid a > div > span {
  color: var(--gold-dark);
  font-size: 1.3rem;
}

/* Flake color guide */

.flake-color-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 170, 65, 0.18), transparent 28%),
    var(--cream);
}

.flake-color-jump {
  position: sticky;
  top: var(--header-height, 0);
  z-index: 12;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.flake-color-jump .container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  scrollbar-width: thin;
}

.flake-color-jump a {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.flake-color-jump a:hover,
.flake-color-jump a:focus-visible {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.flake-color-section-alt {
  background: var(--cream);
}

.flake-color-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.flake-color-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.flake-color-card img {
  display: block;
  width: 100%;
  height: auto;
}

.flake-color-card figcaption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 17px 18px 18px;
}

.flake-color-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.flake-color-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.flake-color-card small {
  grid-column: 1 / -1;
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.flake-color-note {
  margin-top: 34px;
  margin-bottom: 86px;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--blue-pale);
}

.flake-color-note h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.flake-color-note > p {
  max-width: 900px;
  color: var(--muted);
}

.flake-color-note-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 25px;
}

.flake-color-note .flake-trademark {
  margin: 25px 0 0;
  font-size: 0.72rem;
}

.service-color-guide {
  padding-top: 0;
  background: var(--paper);
}

.service-color-guide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding: 46px 50px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 30%, rgba(212, 170, 65, 0.25), transparent 30%),
    var(--ink);
}

.service-color-guide-inner h2 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.service-color-guide-inner p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

/* Responsive */

@media (max-width: 1120px) {
  .flake-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .desktop-nav {
    gap: 18px;
  }

  .brand-type {
    display: none;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.55fr);
    gap: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 6vw, 5rem);
  }

  .care-service-copy {
    padding: 42px;
  }

  .feature-grid,
  .story-grid {
    gap: 56px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .flake-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-color-guide-inner {
    grid-template-columns: 1fr;
    padding: 38px 32px;
  }

  :root {
    --header-height: 82px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .topbar-hours {
    display: none !important;
  }

  .topbar-inner {
    min-height: 52px;
    font-size: 0.67rem;
  }

  .topbar-inner > p:first-child {
    max-width: 58%;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .brand-type {
    display: grid;
  }

  .mobile-menu-button {
    display: grid;
    width: 52px;
    height: 52px;
    padding: 13px;
    place-content: center;
    gap: 5px;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
  }

  .mobile-menu-button > span:not(.sr-only) {
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-navigation:not([hidden]) {
    position: absolute;
    z-index: 60;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    max-height: calc(100vh - 134px);
    overflow-y: auto;
    color: var(--white);
    background: var(--ink-deep);
    box-shadow: var(--shadow-lg);
  }

  .mobile-navigation-inner {
    display: grid;
    padding-top: 22px;
    padding-bottom: 32px;
  }

  .mobile-navigation-inner > a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
  }

  .mobile-navigation-inner > p {
    margin: 20px 0 4px;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-service-link {
    padding-left: 18px !important;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-form-card {
    max-width: 640px;
  }

  .split-heading,
  .service-area-heading,
  .cta-inner,
  .inner-hero-grid,
  .owner-grid,
  .contact-services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(odd) {
    border-left: 0;
  }

  .trust-grid > div:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-grid > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .care-service,
  .feature-grid,
  .values-grid,
  .faq-grid,
  .story-grid,
  .contact-main-grid,
  .service-hero-inner,
  .service-intro-grid,
  .problem-panel,
  .included-grid,
  .materials-grid,
  .ideal-grid {
    grid-template-columns: 1fr;
  }

  .care-service-reverse .care-service-media {
    grid-column: 1;
  }

  .care-service-media,
  .care-service-copy,
  .care-service-reverse .care-service-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .care-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-callout-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .photo-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-badge {
    right: 20px;
  }

  .process-grid,
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-process-grid,
  .benefit-grid,
  .custom-card-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .service-process-grid li {
    min-height: 240px;
  }

  .area-showcase {
    grid-template-columns: 1fr;
  }

  .area-copy {
    padding: 38px;
  }

  .faq-intro,
  .included-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .cta-actions {
    justify-items: start;
  }

  .service-hero,
  .service-hero-inner {
    min-height: 0;
  }

  .service-hero-inner {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .service-hero-aside {
    max-width: 560px;
  }

  .problem-panel {
    gap: 24px;
    padding: 38px;
  }

  .contact-main-grid {
    gap: 28px;
  }

  .owner-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .flake-color-grid {
    grid-template-columns: 1fr;
  }

  .flake-color-note {
    padding: 28px 22px;
  }

  .flake-color-note-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-color-guide-inner {
    padding: 30px 24px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .topbar-inner {
    gap: 12px;
    letter-spacing: 0.07em;
  }

  .status-dot {
    display: none;
  }

  .brand img {
    width: 56px;
    height: 59px;
  }

  .brand-type strong {
    font-size: 0.83rem;
  }

  .brand-type small {
    font-size: 0.58rem;
  }

  .home-hero-overlay {
    background: linear-gradient(rgba(3, 27, 52, 0.9), rgba(3, 27, 52, 0.84));
  }

  .home-hero-grid {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
  }

  .hero-proof div,
  .hero-proof div + div {
    padding: 13px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-form-card,
  .contact-form-panel {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div + div,
  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    min-height: 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .service-card-grid,
  .process-grid,
  .standards-grid,
  .owner-facts,
  .contact-service-links {
    grid-template-columns: 1fr;
  }

  .service-card-body h3 {
    min-height: 0;
  }

  .care-photo-strip,
  .photo-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .care-photo-strip figure {
    min-height: 0;
  }

  .gallery-callout-images {
    grid-template-columns: 1fr;
  }

  .gallery-callout-images img:first-child {
    grid-row: auto;
  }

  .photo-card img {
    height: auto;
  }

  .gallery-jump-nav {
    position: static;
  }

  .care-service-copy {
    padding: 34px 24px;
  }

  .feature-badge {
    right: 12px;
    bottom: 20px;
    max-width: calc(100% - 24px);
  }

  .values-grid blockquote {
    padding: 38px 28px;
  }

  .area-map,
  .area-map iframe {
    min-height: 360px;
  }

  .area-copy {
    padding: 30px 24px;
  }

  .expert-review {
    grid-template-columns: auto 1fr;
  }

  .review-date {
    grid-column: 1 / -1;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .inner-hero {
    padding: 54px 0 68px;
  }

  .hero-stat {
    max-width: 340px;
  }

  .owner-brand-panel {
    padding: 30px;
  }

  .contact-info-panel > div {
    padding: 24px;
  }

  .contact-service-links a:nth-child(odd),
  .contact-service-links a:nth-child(even) {
    padding-right: 4px;
    padding-left: 4px;
    border-left: 0;
  }

  .service-hero-overlay {
    background: rgba(3, 27, 52, 0.84);
  }

  .service-hero-copy h1 em {
    font-size: 0.62em;
  }

  .problem-panel {
    padding: 30px 24px;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .custom-card {
    min-height: 0;
  }

  .included-list li,
  .ideal-list li {
    grid-template-columns: 40px 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-form-card,
  .cta-band,
  .button,
  .mobile-navigation {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 32px 0;
  }
}
