:root {
  --navy: #042b4f;
  --deep: #061826;
  --blue: #0879b9;
  --sky: #5ec3e6;
  --orange: #ff9f1c;
  --gold: #ffc857;
  --white: #ffffff;
  --mist: #f3f8fb;
  --line: #d9e6ee;
  --ink: #102232;
  --muted: #5d7080;
  --shadow: 0 22px 70px rgba(4, 43, 79, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  padding-bottom: 78px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.55;
}

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

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

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

.skip-link,
.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:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 30;
  padding: 10px 14px;
  margin: 8px;
  color: var(--white);
  background: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 230, 238, 0.85);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 9px 20px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  background: var(--deep);
}

.topbar a {
  color: var(--white);
  font-weight: 950;
}

.topbar span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 36px));
  min-height: 94px;
  margin: 0 auto;
  gap: 28px;
}

.brand img {
  width: 252px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.nav-links a,
.nav-menu-trigger {
  white-space: nowrap;
}

.nav-menu {
  position: relative;
  /* Keep the hover target connected while the cursor moves from the
     top-level button down into the dropdown. */
  padding-block: 14px;
  margin-block: -14px;
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 20px;
}

.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: var(--navy);
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.nav-menu-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-menu.is-open .nav-menu-trigger::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 245px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown,
.nav-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: var(--mist);
}

.nav-cta {
  padding: 14px 20px;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
  box-shadow: 0 9px 22px rgba(255, 159, 28, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

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

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/coastal-painting-hero-branded.png");
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 22, 36, 0.95) 0%, rgba(4, 43, 79, 0.82) 42%, rgba(4, 43, 79, 0.35) 100%),
    radial-gradient(circle at 15% 12%, rgba(94, 195, 230, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(6, 24, 38, 0.22), rgba(6, 24, 38, 0.72));
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 540px);
  align-items: center;
  gap: 54px;
  width: min(1180px, calc(100% - 36px));
  min-height: 860px;
  margin: 0 auto;
  padding: 74px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.18;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 19px;
  border: 0;
  border-radius: 6px;
  font-weight: 950;
  cursor: pointer;
}

.button.primary {
  color: var(--deep);
  background: var(--orange);
  box-shadow: 0 15px 34px rgba(255, 159, 28, 0.34);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.promise-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.trust-row span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.estimate-card {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
}

.form-badge img {
  width: 88px;
}

.estimate-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.estimate-card label {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.estimate-card input,
.estimate-card select,
.estimate-card textarea {
  width: 100%;
  border: 1px solid #c6d6df;
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
}

.estimate-card textarea {
  resize: vertical;
}

.hero-estimate-card {
  align-self: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  scroll-margin-top: 150px;
}

.hero-estimate-card h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.hero-estimate-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.hero-estimate-card .hero-actions {
  margin-top: 22px;
}

.crm-estimate {
  overflow: hidden;
  padding: 18px;
}

.crm-leadform {
  display: block;
  width: 100%;
  min-height: 600px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
}

.hero-leadform {
  min-height: 620px;
  box-shadow: var(--shadow);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin: -54px auto 0;
  position: relative;
  z-index: 5;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-band div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.proof-band span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro {
  color: var(--muted);
  font-size: 18px;
}

.section-intro a {
  color: var(--blue);
  font-weight: 950;
}

.section-copy {
  max-width: 680px;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
}

.intro-grid {
  display: grid;
  gap: 18px;
}

.intro-grid article,
.service-card,
.timeline article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.intro-grid article {
  padding: 24px;
}

.intro-grid p,
.service-card p,
.timeline p,
.faq-list p {
  color: var(--muted);
}

.scroll-reveal-section {
  min-height: 190vh;
  background:
    linear-gradient(180deg, var(--white), var(--mist) 42%, var(--white));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scroll-reveal-sticky {
  position: sticky;
  top: 125px;
  display: grid;
  min-height: calc(100vh - 125px);
  align-items: center;
}

.scroll-reveal-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 48px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.scroll-reveal-copy h2 {
  margin-bottom: 18px;
}

.scroll-reveal-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.scroll-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--deep);
  border: 1px solid rgba(217, 230, 238, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.scroll-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 24, 38, 0.1), transparent 38%, rgba(6, 24, 38, 0.2)),
    linear-gradient(90deg, rgba(6, 24, 38, 0.16), transparent 42%, rgba(6, 24, 38, 0.1));
}

.scroll-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-video-labels {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.scroll-video-labels span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(6, 24, 38, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.scroll-video-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
}

.scroll-video-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--orange);
  border-radius: inherit;
  transition: width 80ms linear;
}

.services-section {
  border-top: 1px solid var(--line);
}

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

.service-card {
  min-height: 250px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(243, 248, 251, 0.72), rgba(255, 255, 255, 0)),
    var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 121, 185, 0.35);
  box-shadow: 0 18px 42px rgba(4, 43, 79, 0.12);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--deep);
  font-size: 22px;
  font-weight: 950;
  background: var(--orange);
  border-radius: 50%;
}

.service-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--mist), var(--white));
  border-top: 1px solid var(--line);
}

.gallery-inner {
  padding-top: 88px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
  gap: 42px;
  margin-bottom: 30px;
}

.gallery-heading h2 {
  margin-bottom: 0;
}

.gallery-heading p:not(.eyebrow) {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
}

.project-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.slide-track {
  position: relative;
  min-height: 520px;
}

.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.project-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.project-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.project-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 24, 38, 0.78), rgba(6, 24, 38, 0.18) 62%, rgba(6, 24, 38, 0.58)),
    linear-gradient(180deg, transparent, rgba(6, 24, 38, 0.7));
}

.slide-caption {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 520px;
  color: var(--white);
}

.slide-caption span,
.project-grid span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.slide-caption h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button::before {
  content: "";
  position: absolute;
  top: 16px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
}

.slider-button.prev {
  left: 18px;
}

.slider-button.prev::before {
  left: 18px;
  transform: rotate(-135deg);
}

.slider-button.next {
  right: 18px;
}

.slider-button.next::before {
  right: 18px;
  transform: rotate(45deg);
}

.slider-dots {
  position: absolute;
  right: 34px;
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--orange);
  border-color: var(--orange);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.project-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.project-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-grid div {
  padding: 22px;
}

.project-grid h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.reviews-section {
  border-top: 1px solid var(--line);
}

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

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(243, 248, 251, 0.8), rgba(255, 255, 255, 0)),
    var(--white);
}

.stars {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 0;
}

.review-card p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}

.review-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 950;
}

.reviews-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.reviews-cta h3 {
  margin-bottom: 4px;
  color: var(--white);
}

.reviews-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.promise-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 54px;
  padding: 82px max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, var(--deep), var(--navy) 56%, #064f79);
}

.mascot-panel {
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 195, 230, 0.18), rgba(255, 159, 28, 0.18)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mascot-panel img {
  width: min(600px, 104%);
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.3));
}

.promise-copy h2,
.promise-copy h3 {
  color: var(--white);
}

.promise-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.promise-list span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.timeline article {
  position: relative;
  min-height: 260px;
  padding: 24px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 950;
}

.areas-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  border-top: 1px solid var(--line);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 12px;
}

.area-list span,
.area-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.area-list a:hover,
.area-list a:focus {
  border-color: rgba(8, 121, 185, 0.38);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(4, 43, 79, 0.08);
}

.area-list a::after {
  content: ">";
  margin-left: 8px;
  color: var(--blue);
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  padding: 20px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin-bottom: 22px;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 70px max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
}

.cta-section h2 {
  margin-bottom: 0;
  color: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px max(18px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep);
}

.footer img {
  width: 250px;
  margin-bottom: 12px;
}

.footer p {
  max-width: 420px;
  margin-bottom: 0;
}

.footer address {
  display: grid;
  gap: 8px;
  align-content: start;
  font-style: normal;
  text-align: right;
}

.footer a {
  color: var(--white);
  font-weight: 850;
}

.service-page-hero {
  padding: 88px max(18px, calc((100vw - 1180px) / 2)) 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 24, 38, 0.94) 0%, rgba(4, 43, 79, 0.82) 46%, rgba(4, 43, 79, 0.46) 72%, rgba(4, 43, 79, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 24, 38, 0.12), rgba(6, 24, 38, 0.28)),
    url("assets/coastal-painting-hero-branded.png") center / cover;
}

.service-page-hero h1 {
  max-width: 860px;
}

.service-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.service-page-hero .hero-actions {
  margin-top: 24px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.service-main {
  display: grid;
  gap: 28px;
}

.content-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.content-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 40px);
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.service-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-photo-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-photo-grid figcaption {
  padding: 14px 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}

.service-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.sidebar-card p {
  color: var(--muted);
}

.service-links {
  display: grid;
  gap: 9px;
}

.service-links a {
  padding: 11px 12px;
  color: var(--navy);
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.mini-form {
  display: grid;
  gap: 11px;
}

.mini-form input,
.mini-form select,
.mini-form textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid #c6d6df;
  border-radius: 6px;
}

.service-faq {
  display: grid;
  gap: 10px;
}

.service-faq details {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-faq summary {
  padding: 17px 0;
  color: var(--navy);
  font-weight: 950;
  cursor: pointer;
}

.service-faq p {
  margin-bottom: 18px;
}

.related-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-areas span {
  padding: 8px 12px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.sticky-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(6, 24, 38, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.sticky-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: min(240px, 44vw);
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 950;
}

.sticky-action-bar .sticky-call {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.sticky-action-bar .sticky-estimate {
  color: var(--deep);
  background: var(--orange);
}

@media (max-width: 1180px) {
  .nav {
    width: min(100% - 28px, 1120px);
    gap: 18px;
  }

  .brand img {
    width: 220px;
  }

  .nav-links {
    gap: 16px;
    font-size: 15px;
  }

  .nav-cta {
    padding-inline: 16px;
  }
}

@media (max-width: 960px) {
  .topbar {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 8px 18px;
    font-size: 14px;
  }

  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(4, 43, 79, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-menu {
    display: grid;
    padding-block: 0;
    margin-block: 0;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-menu-trigger {
    width: 100%;
    padding: 12px;
    text-align: left;
    font-weight: 950;
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu:hover .nav-dropdown,
  .nav-menu:focus-within .nav-dropdown {
    transform: none;
  }

  .nav-menu.is-open .nav-dropdown {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: 9px 12px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content,
  .intro-section,
  .scroll-reveal-inner,
  .gallery-heading,
  .service-layout,
  .promise-section,
  .areas-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 62px 0 42px;
  }

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

  .estimate-card {
    max-width: 620px;
  }

  .proof-band,
  .service-grid,
  .project-grid,
  .reviews-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .scroll-reveal-section {
    min-height: 170vh;
  }

  .scroll-reveal-sticky {
    top: 110px;
    min-height: calc(100vh - 110px);
  }

  .scroll-reveal-inner {
    gap: 28px;
  }

  .mascot-panel {
    min-height: 280px;
  }

  .footer,
  .reviews-cta,
  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-sidebar {
    position: static;
  }

  .footer address {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .topbar {
    justify-content: flex-start;
    padding-inline: 18px;
    font-size: 12px;
  }

  .brand img {
    width: 166px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 22, 36, 0.94) 0%, rgba(4, 43, 79, 0.88) 58%, rgba(4, 43, 79, 0.78) 100%),
      radial-gradient(circle at 18% 8%, rgba(94, 195, 230, 0.18), transparent 34%);
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

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

  .sticky-action-bar {
    gap: 8px;
    padding: 10px;
  }

  .sticky-action-bar a {
    width: 50%;
    min-height: 48px;
    padding-inline: 10px;
    font-size: 14px;
  }

  .proof-band {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    grid-template-columns: 1fr;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 68px 0;
  }

  .scroll-reveal-section {
    min-height: 155vh;
  }

  .scroll-reveal-sticky {
    top: 98px;
    min-height: calc(100vh - 98px);
  }

  .scroll-reveal-inner {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .scroll-reveal-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .scroll-video-labels {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .scroll-video-labels span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .scroll-video-progress {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .service-grid,
  .project-grid,
  .reviews-grid,
  .service-photo-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .slide-track {
    min-height: 430px;
  }

  .project-slide img {
    height: 430px;
  }

  .slide-caption {
    left: 22px;
    right: 22px;
    bottom: 66px;
  }

  .slider-button {
    display: none;
  }

  .slider-dots {
    left: 22px;
    right: auto;
    bottom: 28px;
  }

  .service-card,
  .timeline article {
    min-height: auto;
  }

  .mascot-panel img {
    width: 118%;
    max-width: none;
  }
}
