:root {
  --ink: #111316;
  --charcoal: #202327;
  --black: #07080a;
  --ivory: #f7f6f2;
  --paper: #fbfaf6;
  --blue: #1976c9;
  --blue-bright: #42aaff;
  --blue-deep: #062238;
  --blue-ink: #0b3657;
  --blue-soft: #e8f4ff;
  --sage: #e7ebe6;
  --muted: #666b70;
  --line: rgba(17, 19, 22, 0.12);
  --blue-line: rgba(25, 118, 201, 0.18);
  --shadow: 0 28px 80px rgba(7, 8, 10, 0.22);
  color-scheme: light;
  font-family: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
main {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body::selection {
  color: var(--paper);
  background: var(--blue);
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--ivory);
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ivory);
  background: rgba(7, 8, 10, 0.94);
  border-bottom-color: rgba(247, 246, 242, 0.12);
  box-shadow: 0 16px 50px rgba(7, 8, 10, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 124px;
}

.brand img {
  width: 100%;
  filter: invert(1) brightness(1.75) saturate(1.12) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.site-header.is-scrolled .brand img {
  filter: invert(1) brightness(1.75) saturate(1.12) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a,
.site-footer nav a {
  position: relative;
}

.nav-links a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-ctas {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0;
  text-shadow: 0 8px 20px rgba(7, 8, 10, 0.28);
  white-space: nowrap;
  transition: color 180ms ease;
}

.header-phone:hover {
  color: var(--blue-bright);
}

.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--blue-bright);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.label-short {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: clamp(22px, 4vw, 56px);
  min-height: 78svh;
  padding: 104px clamp(18px, 5vw, 70px) 34px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--blue-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.04) brightness(0.92);
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 20, 34, 0.86), rgba(5, 20, 34, 0.48) 42%, rgba(5, 20, 34, 0.08)),
    linear-gradient(0deg, rgba(5, 20, 34, 0.54), rgba(5, 20, 34, 0.04) 54%, rgba(5, 20, 34, 0.34));
}

#brand-glow-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  pointer-events: none;
  mix-blend-mode: screen;
}

.brand-star {
  position: relative;
  display: block;
  width: var(--star-size, 44px);
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  clip-path: polygon(50% 0, 60% 39%, 100% 50%, 60% 61%, 50% 100%, 40% 61%, 0 50%, 40% 39%);
  filter: drop-shadow(0 0 22px rgba(66, 170, 255, 0.36));
}

.brand-star::after {
  content: "";
  position: absolute;
  inset: 22%;
  background: rgba(255, 255, 255, 0.68);
  clip-path: inherit;
  opacity: 0.55;
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-stars .brand-star {
  position: absolute;
  opacity: 0.58;
}

.star-one {
  --star-size: clamp(62px, 9vw, 132px);
  right: clamp(22px, 8vw, 132px);
  bottom: clamp(46px, 10vw, 132px);
}

.star-two {
  --star-size: clamp(28px, 4vw, 58px);
  right: clamp(138px, 20vw, 360px);
  top: clamp(126px, 18vw, 210px);
  opacity: 0.38;
}

.star-three {
  --star-size: clamp(18px, 2.8vw, 36px);
  right: clamp(240px, 28vw, 470px);
  bottom: clamp(34px, 8vw, 86px);
  opacity: 0.3;
}

.hero-content {
  max-width: 790px;
  color: #ffffff;
  perspective: 1200px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: inherit;
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 5.55vw, 5.25rem);
  color: #ffffff;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.16rem, 1.8vw, 1.5rem);
  line-height: 1.14;
  font-weight: 650;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.62;
}

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

.hero-actions.reveal {
  transform-origin: 50% 80%;
}

.button {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
  transition: transform 220ms ease;
}

.button:hover::after {
  transform: translateX(4px);
}

.button.primary {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 42px rgba(25, 118, 201, 0.28);
}

.button.secondary {
  color: var(--ivory);
  background: rgba(247, 241, 231, 0.08);
  border-color: rgba(247, 241, 231, 0.36);
}

.hero-panel {
  display: none;
}

.hero-panel div {
  padding: 14px;
  border: 1px solid rgba(247, 241, 231, 0.22);
  border-radius: 4px;
  background: rgba(7, 8, 10, 0.36);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
}

.hero-panel .stat {
  margin-bottom: 5px;
  color: var(--blue-bright);
  font-family: inherit;
  font-weight: 850;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1;
}

.hero-panel div span:last-child {
  color: rgba(247, 241, 231, 0.82);
  font-size: 0.96rem;
  line-height: 1.32;
}

.intro-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 70px);
  color: #ffffff;
  background: var(--blue-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.intro-band p {
  margin: 0;
  max-width: 900px;
  color: #ffffff;
  font-family: inherit;
  font-size: clamp(1.12rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.12;
}

.intro-band a:not(.facebook-icon-link) {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.facebook-icon-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--blue);
  border: 1px solid var(--blue-line);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(25, 118, 201, 0.1);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.facebook-icon-link:hover {
  color: var(--blue-bright);
  border-color: rgba(66, 170, 255, 0.58);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(25, 118, 201, 0.18);
}

.facebook-icon-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 940px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading h2,
.split-copy h2,
.review-lead h2,
.proposal-copy h2 {
  color: var(--ink);
}

.section-heading p:last-child,
.split-copy > p,
.proposal-copy > p {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.service-section {
  background:
    linear-gradient(180deg, rgba(232, 244, 255, 0.68), rgba(251, 250, 246, 0) 45%),
    var(--paper);
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(7, 8, 10, 0.06);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  aspect-ratio: 1;
  background: rgba(66, 170, 255, 0.9);
  clip-path: polygon(50% 0, 60% 39%, 100% 50%, 60% 61%, 50% 100%, 40% 61%, 0 50%, 40% 39%);
  filter: drop-shadow(0 0 18px rgba(25, 118, 201, 0.28));
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card p:last-child,
.proof-item p,
.review-card p,
.process-item p,
.gallery-item figcaption {
  color: var(--muted);
  line-height: 1.62;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  background: #ffffff;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.process-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.process-item span {
  color: var(--blue);
  font-family: inherit;
  font-weight: 650;
  font-size: 1.45rem;
}

.process-item p {
  margin-bottom: 0;
}

.feature-stack {
  position: relative;
}

.feature-main {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.feature-stack blockquote {
  position: relative;
  max-width: 460px;
  margin: -54px 22px 0 auto;
  padding: 28px 28px 26px;
  border-radius: 4px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(10, 60, 96, 0.98), rgba(6, 34, 56, 0.96));
  box-shadow: 0 22px 48px rgba(6, 34, 56, 0.26);
}

.feature-stack blockquote::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(66, 170, 255, 0.22);
  border-radius: 3px;
  pointer-events: none;
}

.quote-star {
  --star-size: 34px;
  position: absolute;
  top: -17px;
  right: 24px;
}

blockquote p {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.45;
}

cite {
  color: var(--blue-bright);
  font-style: normal;
  font-weight: 700;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--blue-deep);
}

.proof-item {
  min-height: 230px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--paper);
  background: var(--blue-deep);
}

.proof-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-bright);
  font-family: inherit;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 650;
  line-height: 1.08;
}

.proof-item p {
  color: rgba(247, 241, 231, 0.76);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  grid-auto-flow: dense;
  align-items: start;
}

.gallery-item {
  position: relative;
  align-self: start;
  min-width: 0;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blue-deep);
  box-shadow: 0 18px 46px rgba(7, 8, 10, 0.08);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1.08;
  height: auto;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-item.gallery-wide img {
  aspect-ratio: 1.9;
}

.gallery-item.gallery-tall {
  grid-row: span 2;
}

.gallery-item.gallery-tall img {
  aspect-ratio: 0.78;
}

.gallery-item.gallery-portrait img {
  aspect-ratio: 0.92;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: static;
  margin: 0;
  min-height: 92px;
  padding: 14px;
  border-top: 1px solid rgba(247, 241, 231, 0.12);
  color: rgba(247, 246, 242, 0.78);
  background: var(--blue-deep);
}

.review-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(25, 118, 201, 0.12), rgba(66, 170, 255, 0.08)),
    #ffffff;
  overflow: hidden;
}

.section-star {
  --star-size: clamp(82px, 13vw, 178px);
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  top: 34px;
  opacity: 0.12;
  filter: none;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  position: relative;
  margin: 0;
  padding: 34px 30px 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 255, 0.52)),
    #ffffff;
  box-shadow: 0 20px 54px rgba(6, 34, 56, 0.08);
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: -22px;
  left: 20px;
  color: rgba(25, 118, 201, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.7rem;
  line-height: 1;
  pointer-events: none;
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(66, 170, 255, 0.18);
  border-radius: 3px;
  pointer-events: none;
}

.review-card p {
  position: relative;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  font-weight: 600;
  line-height: 1.58;
}

.review-card cite {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}

.review-card cite::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(232, 244, 255, 0.72)),
    var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--blue-line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(6, 34, 56, 0.06);
}

.faq-item h3 {
  color: var(--blue-ink);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.proposal-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.52fr) minmax(0, 0.78fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(6, 34, 56, 0.96), rgba(6, 34, 56, 0.72)),
    url("assets/gallery/sips-11.jpg") center / cover fixed;
}

.proposal-copy h2,
.proposal-copy p {
  color: var(--paper);
}

.proposal-copy > p {
  color: rgba(247, 241, 231, 0.78);
}

.proposal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.proposal-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(247, 241, 231, 0.2);
  border-radius: 4px;
  color: rgba(247, 241, 231, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
}

.rfp-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(247, 241, 231, 0.18);
  border-radius: 4px;
  background: rgba(7, 8, 10, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  min-height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: rgba(247, 241, 231, 0.8);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.required-field em {
  color: var(--blue-bright);
  font-style: normal;
}

.required-field small {
  margin-top: -2px;
  color: rgba(247, 241, 231, 0.62);
  font-size: 0.82rem;
  line-height: 1.4;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247, 241, 231, 0.22);
  border-radius: 4px;
  color: var(--paper);
  background: rgba(7, 8, 10, 0.62);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  padding: 0 13px;
}

.date-control {
  position: relative;
  display: block;
}

.date-control input {
  padding-right: 52px;
}

.date-picker-button {
  position: absolute;
  top: 50%;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(66, 170, 255, 0.34);
  border-radius: 4px;
  color: var(--blue-bright);
  background: rgba(66, 170, 255, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.date-picker-button:hover,
.date-picker-button:focus-visible {
  color: #ffffff;
  border-color: rgba(66, 170, 255, 0.68);
  background: rgba(66, 170, 255, 0.2);
  outline: none;
}

.date-picker-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

textarea {
  padding: 13px;
  resize: vertical;
}

select option {
  color: var(--ink);
  background: var(--paper);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(66, 170, 255, 0.24);
  background: rgba(7, 8, 10, 0.76);
}

::placeholder {
  color: rgba(247, 241, 231, 0.46);
}

.form-submit {
  width: fit-content;
  margin-top: 4px;
}

.form-submit[disabled] {
  opacity: 0.62;
  cursor: wait;
}

.form-note {
  margin: 0;
  color: rgba(247, 241, 231, 0.66);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-note.is-success {
  color: var(--sage);
}

.form-note.is-error {
  color: #ffd0d0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 70px);
  color: var(--paper);
  background: var(--blue-deep);
}

.site-footer div {
  max-width: 430px;
}

.footer-logo {
  display: block;
  width: 132px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 100%;
  filter: invert(1) brightness(1.75) saturate(1.12) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(247, 241, 231, 0.7);
  line-height: 1.6;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.site-footer nav a.footer-facebook-link::after {
  display: none;
}

.footer-phone {
  color: rgba(247, 241, 231, 0.88);
  transition: color 180ms ease;
}

.footer-phone:hover {
  color: var(--blue-bright);
}

.footer-facebook-link {
  width: 38px;
  height: 38px;
  box-shadow: none;
}

.footer-facebook-link svg {
  width: 21px;
  height: 21px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transform-origin: 50% 72%;
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .review-section,
  .proposal-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 116px;
  }

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

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

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

  .gallery-item.gallery-wide,
  .gallery-item.gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item.gallery-wide img,
  .gallery-item.gallery-tall img {
    aspect-ratio: 1.08;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    width: 98px;
  }

  .header-ctas {
    gap: 8px;
  }

  .header-phone {
    font-size: 0.72rem;
  }

  .header-action {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .label-full {
    display: none;
  }

  .label-short {
    display: inline;
  }

  .hero {
    min-height: 76svh;
    padding: 92px 16px 28px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .service-grid,
  .proof-section,
  .review-track,
  .faq-grid,
  .form-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .hero-panel div {
    padding: 14px;
  }

  .intro-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 64px 16px;
  }

  .service-card div,
  .review-card,
  .faq-item {
    padding: 20px;
  }

  .feature-stack blockquote {
    margin: -36px 12px 0;
  }

  .gallery-grid {
    grid-auto-rows: 340px;
  }

  .proposal-section {
    background-attachment: scroll;
  }

  .form-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  #brand-glow-scene {
    display: none;
  }

}

.review-page {
  min-height: 100vh;
  background: #f4f8fb;
}

.review-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 16px clamp(16px, 4vw, 48px);
  color: var(--paper);
  background: rgba(6, 34, 56, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 42px rgba(6, 34, 56, 0.18);
  backdrop-filter: blur(18px);
}

.review-brand {
  width: 116px;
}

.review-header h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
}

.review-header p {
  margin: 6px 0 0;
  color: rgba(247, 246, 242, 0.72);
  line-height: 1.4;
}

.review-home {
  color: #ffffff;
}

.image-review-main {
  padding: clamp(20px, 4vw, 48px);
}

.review-toolbar {
  position: sticky;
  top: 92px;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--blue-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(6, 34, 56, 0.1);
  backdrop-filter: blur(18px);
}

.review-toolbar > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.review-toolbar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.image-choice {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(6, 34, 56, 0.08);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.image-choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(6, 34, 56, 0.12);
}

.image-choice:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 22px 58px rgba(25, 118, 201, 0.2);
}

.image-choice input {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 22px;
  min-height: 22px;
  accent-color: var(--blue);
}

.choice-control {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 10px 7px 34px;
  color: #ffffff;
  background: rgba(6, 34, 56, 0.78);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  pointer-events: none;
}

.image-choice img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  background: var(--blue-deep);
}

.choice-name {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .image-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .review-header,
  .review-toolbar {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .review-home,
  .review-toolbar .button {
    width: 100%;
  }

  .review-toolbar {
    position: static;
  }

  .image-choice-grid {
    grid-template-columns: 1fr;
  }
}
