:root {
  --white: #ffffff;
  --off-white: #f5f7fa;
  --soft-gray: #e9edf2;
  --charcoal: #1f252c;
  --charcoal-soft: #2f3944;
  --navy: #10253d;
  --navy-deep: #0b1a2b;
  --blue: #1f76c7;
  --blue-bright: #2d8ee4;
  --amber: #e79a3b;
  --amber-soft: #ffcc8a;
  --text: #10161d;
  --muted: #5f6974;
  --line: rgba(16, 22, 29, 0.08);
  --shadow: 0 18px 48px rgba(10, 21, 34, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 5.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only,
.hidden-field {
  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: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.social-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.social-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.45rem;
}

.social-proof {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 26, 43, 0.96);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  box-shadow: 0 10px 30px rgba(7, 15, 25, 0.2);
}

.site-header.is-solid {
  background: rgba(11, 26, 43, 0.96);
  box-shadow: 0 10px 30px rgba(7, 15, 25, 0.2);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.9rem;
}

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

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 14.5rem;
  height: 3.7rem;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.phone-button {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.phone-button span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.phone-button strong {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.2rem;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.7rem;
  height: 2px;
  margin: 0.32rem 0;
  background: var(--white);
}

.hero-section {
  position: relative;
  min-height: min(56rem, 100vh);
  color: var(--white);
  background: var(--navy-deep);
}

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

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 26, 0.9) 0%, rgba(8, 16, 26, 0.78) 38%, rgba(8, 16, 26, 0.36) 100%),
    linear-gradient(180deg, rgba(8, 16, 26, 0.08), rgba(8, 16, 26, 0.28));
}

.hero-content {
  position: relative;
  min-height: min(56rem, 100vh);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 0 5rem;
}

.hero-copy {
  width: min(42rem, 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #7ec3ff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 0.96;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.8rem, 8vw, 6.6rem);
}

h1 span {
  color: #5eb6ff;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.hero-text,
.section-heading p,
.service-card p,
.why-item p,
.review-card p,
.gallery-placeholder span,
.appointment-copy p,
.footer-brand p {
  line-height: 1.7;
}

.hero-text {
  width: min(38rem, 100%);
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-specialty {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  margin: 1.25rem 0 0;
  padding: 0.25rem 0.95rem;
  border: 1px solid rgba(126, 195, 255, 0.28);
  border-radius: 999px;
  background: rgba(10, 27, 44, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-accent {
  margin: 1rem 0 0;
  color: var(--amber-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(24, 109, 187, 0.34);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.trust-row li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #74c1ff;
}

.section {
  padding: 5.5rem 0;
}

.section-heading {
  width: min(44rem, 100%);
  margin-bottom: 2rem;
}

.section-heading p,
.appointment-copy p,
.footer-brand p {
  color: var(--muted);
}

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

.specialty-section {
  background:
    radial-gradient(circle at top right, rgba(231, 154, 59, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbff, #ffffff);
}

.services-grid,
.why-grid,
.reviews-grid {
  display: grid;
  gap: 1rem;
}

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

.specialty-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.service-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(10, 21, 34, 0.12);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(31, 118, 199, 0.1);
  color: var(--blue);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.service-card h3,
.why-item h3,
.site-footer h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 1.7rem;
}

.service-card p,
.why-item p,
.review-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.service-card-featured {
  border-color: rgba(31, 118, 199, 0.18);
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.92), rgba(255, 255, 255, 1));
  box-shadow: 0 20px 50px rgba(10, 21, 34, 0.1);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  margin-bottom: 0.75rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(31, 118, 199, 0.12);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-badge-warm {
  background: rgba(231, 154, 59, 0.16);
  color: #a75e00;
}

.why-section {
  background: linear-gradient(180deg, #f7f9fc, #f1f5f9);
}

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

.section-heading.narrow {
  width: min(38rem, 100%);
}

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

.why-item {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(16, 22, 29, 0.12);
}

.why-item h3 {
  font-size: 1.55rem;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: #e9eef4;
}

.reviews-background,
.reviews-overlay {
  position: absolute;
  inset: 0;
}

.reviews-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.reviews-overlay {
  background:
    linear-gradient(180deg, rgba(238, 242, 246, 0.92), rgba(238, 242, 246, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

.reviews-section .container {
  position: relative;
  z-index: 1;
}

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

.review-card {
  padding: 1.5rem;
  border: 1px solid rgba(16, 22, 29, 0.06);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(10, 21, 34, 0.06);
}

.stars {
  color: #f3b300;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
}

.review-card strong {
  display: block;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.reviews-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.reviews-button {
  background: rgba(11, 26, 43, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
}

.emergency-cta-section {
  background:
    linear-gradient(135deg, rgba(11, 26, 43, 0.98), rgba(16, 37, 61, 0.96)),
    radial-gradient(circle at right, rgba(231, 154, 59, 0.18), transparent 32%);
  color: var(--white);
}

.emergency-cta-inner {
  width: min(46rem, 100%);
  text-align: center;
}

.emergency-cta-inner .eyebrow {
  color: var(--amber-soft);
}

.emergency-cta-inner h2 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.emergency-cta-inner p {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.7;
}

.emergency-actions {
  justify-content: center;
  margin-top: 2rem;
}

.project-gallery {
  display: grid;
  gap: 1.2rem;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(10, 21, 34, 0.12);
}

.project-card-featured {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
}

.project-copy {
  padding: 1.5rem 1.5rem 1.25rem;
}

.project-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(31, 118, 199, 0.12);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin-top: 0.85rem;
  font-size: 2rem;
}

.project-copy p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.project-media {
  display: grid;
  gap: 0.7rem;
  padding: 0 1.5rem 1.5rem;
}

.project-card-featured .project-media {
  padding: 1.5rem;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-image {
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.single-image img {
  min-height: 18rem;
  transition: transform 220ms ease, filter 220ms ease;
}

.single-image:hover img,
.single-image:focus-within img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.project-media-three {
  grid-template-columns: repeat(3, 1fr);
}

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

.project-media-four {
  grid-template-columns: repeat(4, 1fr);
}

.project-shot {
  position: relative;
  display: grid;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.project-shot img {
  aspect-ratio: 1 / 1;
  background: var(--soft-gray);
  cursor: zoom-in;
  transition: transform 220ms ease, filter 220ms ease;
}

.project-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 15, 25, 0.04), rgba(7, 15, 25, 0.55));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.project-shot:hover::after,
.project-shot:focus-within::after {
  opacity: 1;
}

.project-shot:hover img,
.project-shot:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.project-shot figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.75rem;
  z-index: 1;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.project-shot:hover figcaption,
.project-shot:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.project-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(4, 10, 18, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 1rem;
  justify-items: center;
  min-width: 0;
  min-height: 0;
}

.lightbox-image {
  max-width: min(90vw, 1200px);
  max-height: 82vh;
  border-radius: calc(var(--radius-md) + 2px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  object-fit: contain;
}

.lightbox-caption {
  width: min(90vw, 1200px);
  display: grid;
  gap: 0.25rem;
  justify-items: start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.lightbox-project {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.lightbox-detail {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  font-size: 1.9rem;
  line-height: 1;
}

.lightbox-nav {
  width: 3.5rem;
  height: 4.5rem;
  border-radius: 999px;
  font-size: 2.2rem;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

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

.appointment-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.contact-meta p {
  margin: 0;
  color: var(--muted);
}

.appointment-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 22px 52px rgba(10, 21, 34, 0.08);
}

.appointment-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.appointment-form input,
.appointment-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 22, 29, 0.14);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
}

.appointment-form input:focus,
.appointment-form textarea:focus {
  outline: 2px solid rgba(31, 118, 199, 0.18);
  border-color: var(--blue);
}

.submit-button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 13.5rem;
  height: 3.6rem;
  margin-bottom: 0.4rem;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-footer h3 {
  margin-bottom: 0.9rem;
  font-size: 1.45rem;
}

.site-footer p {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 980px) {
  .reviews-grid,
  .appointment-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .phone-button {
    display: none;
  }

  .project-card-featured,
  .project-grid-two,
  .project-media-two,
  .project-media-three,
  .project-media-four {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  :root {
    --header-height: 4.8rem;
  }

  .social-bar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0.75rem 0;
    text-align: center;
  }

  .social-proof {
    font-size: 0.72rem;
    max-width: 24rem;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-inner {
    grid-template-columns: auto auto;
    min-height: 5.4rem;
    gap: 0.8rem;
  }

  .brand-logo-frame {
    width: 11.5rem;
    height: 3.2rem;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
    padding: 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.15rem;
    background: rgba(11, 26, 43, 0.98);
    box-shadow: 0 18px 40px rgba(7, 15, 25, 0.3);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 2.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
  }

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

  .hero-content {
    align-items: flex-end;
    padding: calc(var(--header-height) + 1.1rem) 0 2.8rem;
  }

  .hero-photo {
    object-position: 76% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 16, 26, 0.24) 0%, rgba(8, 16, 26, 0.78) 52%, rgba(8, 16, 26, 0.96) 100%),
      linear-gradient(90deg, rgba(8, 16, 26, 0.76) 0%, rgba(8, 16, 26, 0.2) 100%);
  }

  .hero-copy {
    width: 100%;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.35rem;
    background: rgba(7, 15, 25, 0.28);
    backdrop-filter: blur(12px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-text {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .hero-accent {
    margin-top: 0.7rem;
    font-size: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

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

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .hero-specialty {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .section-heading p {
    font-size: 0.98rem;
  }

  .project-copy,
  .project-media,
  .project-card-featured .project-media {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .project-copy {
    padding-top: 1.2rem;
  }

  .project-copy h3 {
    font-size: 1.8rem;
  }

  .project-media {
    padding-bottom: 1rem;
  }

  .appointment-copy h2,
  .section-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .appointment-form {
    padding: 1.2rem;
    border-radius: 1.2rem;
  }

  .lightbox {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    font-size: 1.9rem;
  }

  .lightbox-prev {
    left: 0.6rem;
  }

  .lightbox-next {
    right: 0.6rem;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 76vh;
  }

  .lightbox-caption {
    width: 100%;
    padding: 0.85rem 0.9rem;
  }

  .project-shot::after,
  .project-shot figcaption {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100vw - 1.25rem), 100%);
  }

  .brand-logo-frame {
    width: 10.4rem;
    height: 3rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-copy {
    padding: 1rem 0.95rem;
    border-radius: 1.1rem;
  }

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

  .specialty-grid,
  .full-service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }

  .review-card {
    padding: 1.2rem;
  }

  .project-copy h3 {
    font-size: 1.6rem;
  }

  .single-image img {
    min-height: 15rem;
  }

  .contact-meta {
    gap: 0.6rem;
  }
}
