:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --primary: #2563eb;
  --primary-soft: #dbeafe;
  --header-height: 72px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --accent: #f97316;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

.service-image-wrap img,
.gallery-item img {
  max-width: none;
  width: 100%;
  height: 100%;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

.container {
  width: min(1100px, 92%);
  max-width: 100%;
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.navbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-logo {
  height: 46px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  font-weight: 700;
  line-height: 1.15;
  min-width: 0;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-brand-lockup h3 {
  margin: 0;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav-toggle.active {
  background: #f8fafc;
  border-color: #d1d5db;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.75rem 4%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.nav-list.open {
  max-height: calc(100vh - var(--header-height));
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

.nav-link {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  padding: 0.78rem 0.85rem;
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.38rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--text);
  background: #f8fafc;
}

.nav-link.active {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary-soft) 60%, transparent);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.section {
  width: 100%;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 0 2rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  scroll-margin-top: var(--header-height);
}

.subtle-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.subtle-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide:nth-child(1) {
  background-image: url("assets/images/1.jpeg");
}

.hero-slide:nth-child(2) {
  background-image: url("assets/images/2.jpeg");
}

.hero-slide:nth-child(3) {
  background-image: url("assets/images/3.jpeg");
}

.hero-slide:nth-child(4) {
  background-image: url("assets/images/4.jpeg");
}

.hero-slide:nth-child(5) {
  background-image: url("assets/images/5.jpeg");
}

.hero-slide:nth-child(6) {
  background-image: url("assets/images/6.jpeg");
}

.hero-slide:nth-child(7) {
  background-image: url("assets/images/7.jpeg");
}

.hero-slide:nth-child(8) {
  background-image: url("assets/images/8.jpeg");
}

.hero-slide:nth-child(9) {
  background-image: url("assets/images/9.jpeg");
}

.hero-slide:nth-child(10) {
  background-image: url("assets/images/10.jpeg");
}

.hero-slide:nth-child(11) {
  background-image: url("assets/images/11.jpeg");
}

.hero-slide:nth-child(12) {
  background-image: url("assets/images/12.jpeg");
}

.hero-slide:nth-child(13) {
  background-image: url("assets/images/13.jpeg");
}

.hero-slide:nth-child(14) {
  background-image: url("assets/images/14.jpeg");
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 6s ease forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(5, 12, 25, 0.82), rgba(5, 12, 25, 0.58));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(980px, 100%);
  min-height: 100vh;
  padding: calc(var(--header-height) + 2.5rem) 0 2.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  color: #fff;
}

.hero-kicker {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #cbd5e1;
}

.hero-title {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-size: clamp(2.35rem, 11vw, 5rem);
  letter-spacing: 0.03em;
  font-weight: 800;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(1rem, 4.1vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  color: #e2e8f0;
}

.hero-actions {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(100%, 420px);
}

.hero-btn {
  margin-top: 0;
  min-width: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease,
    color 0.3s ease;
}

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

.hero-btn-primary {
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.3);
}

.hero-btn-primary:hover {
  background: #fb923c;
}

.hero-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28);
}

.hero-highlights {
  margin-top: 1rem;
  width: 100%;
  display: grid;
  gap: 0.75rem;
}

.highlight {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
  font-size: 1rem;
}

.highlight p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeIn 0.75s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.25s;
}

.delay-3 {
  animation-delay: 0.4s;
}

.delay-4 {
  animation-delay: 0.55s;
}

.delay-5 {
  animation-delay: 0.7s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-alt {
  background: #f8fafc;
}

.services-section {
  background: var(--surface);
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
}

.services-content {
  width: 100%;
  max-width: min(1240px, 100%);
}

.services-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.services-grid > *,
.gallery-grid > * {
  min-width: 0;
}

.service-card {
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(22px);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.service-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.service-image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.04);
}

.service-body {
  padding: 1.15rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  color: #1e40af;
  border: 1px solid #dbe8ff;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body h3 {
  margin: 0;
  font-size: 1.08rem;
}

.service-body p {
  margin: 0;
  color: #4b5563;
}

.find-us-section {
  padding-top: calc(var(--header-height) + 2.8rem);
  padding-bottom: 2.8rem;
}

.find-us-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.find-us-content {
  width: 100%;
  max-width: min(1650px, 100%);
}

.find-us-map,
.find-us-info {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.08);
}

.find-us-map {
  overflow: hidden;
  min-height: 340px;
}

.find-us-map iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.find-us-info {
  padding: 1.4rem;
}

.find-tagline {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1f2937;
}

.find-contact-card {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #e6e9ee;
  border-radius: 14px;
  background: #f8fafc;
}

.find-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.7rem;
  color: #374151;
}

.find-item:last-child {
  margin-bottom: 0;
}

.find-icon {
  line-height: 1.2;
}

.find-item a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.25s ease;
}

.find-item a:hover {
  color: var(--accent);
}

.find-social {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  color: #374151;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    background-color 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.02);
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 60%, #d1d5db);
  background: #fff7ed;
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.find-reveal {
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.find-reveal.from-left {
  transform: translateX(-28px);
}

.find-reveal.from-right {
  transform: translateX(28px);
}

.find-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.gallery-section {
  padding-top: calc(var(--header-height) + 2.6rem);
  padding-bottom: 2.8rem;
  background: #f8fafc;
}

.gallery-content {
  width: 100%;
  max-width: min(1180px, 100%);
}

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  aspect-ratio: 4 / 3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0);
  transition: background-color 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.gallery-item:hover::after {
  background: rgba(2, 6, 23, 0.14);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  background: rgba(2, 6, 23, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  margin: 0;
  width: 100%;
  max-width: min(1000px, 100%);
  justify-self: center;
  min-width: 0;
}

.lightbox-content img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-nav,
.lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.lightbox-nav {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.section-content {
  width: 100%;
  max-width: min(860px, 100%);
  min-width: 0;
}

.hero-content.section-content {
  max-width: min(980px, 100%);
}

.services-content.section-content {
  max-width: min(1240px, 100%);
}

.gallery-content.section-content {
  max-width: min(1180px, 100%);
}

.find-us-content.section-content {
  max-width: min(1650px, 100%);
}

.eyebrow {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
  color: #0f172a;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 5.5vw, 2.4rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 65ch;
  color: var(--muted);
}

.card-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.button {
  display: inline-block;
  margin-top: 0.6rem;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  padding: 0.72rem 1.1rem;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease,
    background-color 0.35s ease, color 0.35s ease;
}

.button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: min(560px, 100%);
  min-width: 0;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  min-height: 44px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

textarea {
  resize: vertical;
}

.site-footer {
  width: 100%;
  overflow-x: clip;
  background: #111827;
  color: #d1d5db;
}

.call-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 2200;
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.call-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.45);
  filter: brightness(1.04);
}

.call-fab:active {
  transform: translateY(0);
}

.call-fab-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.4rem 0 2rem;
}

.footer-column h3 {
  margin: 0 0 0.8rem;
  color: #f8fafc;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-company p {
  margin: 0 0 0.45rem;
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  padding: 0.85rem 0 1rem;
}

.privacy-page {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 2.5rem;
  min-height: 100vh;
}

.privacy-content {
  width: 100%;
  max-width: min(860px, 100%);
  min-width: 0;
}

.privacy-content h1 {
  margin-bottom: 0.65rem;
}

.privacy-intro {
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.policy-block {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 0.8rem;
}

.policy-block h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.policy-block ul {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
}

.policy-block li {
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-list {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    opacity: 1;
    max-height: none;
    overflow: visible;
    pointer-events: auto;
    border: 0;
    background: transparent;
    padding: 0;
    transition: none;
  }

  .section {
    padding: calc(var(--header-height) + 2.5rem) 0 2.5rem;
  }

  .hero-content {
    padding: calc(var(--header-height) + 2rem) 0 2rem;
  }

  .hero-actions {
    width: auto;
    flex-direction: row;
    justify-content: center;
  }

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

  .highlight {
    justify-content: flex-start;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

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

  .find-us-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }

  .find-us-map iframe {
    min-height: 100%;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .brand-text {
    font-size: clamp(0.82rem, 2.8vw, 1rem);
  }

  .container {
    width: min(1100px, 94%);
    max-width: 100%;
  }

  .section {
    min-height: auto;
    padding: calc(var(--header-height) + 1.35rem) 0 1.75rem;
  }

  .hero-content {
    min-height: 100vh;
    padding: calc(var(--header-height) + 1.4rem) 0 1.8rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 12vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: clamp(0.93rem, 4.3vw, 1.1rem);
    letter-spacing: 0.09em;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .highlight {
    justify-content: flex-start;
  }

  .services-section,
  .find-us-section {
    padding-top: calc(var(--header-height) + 1.7rem);
    padding-bottom: 2rem;
  }

  .services-grid {
    gap: 1rem;
  }

  .service-body {
    padding: 1rem;
  }

  .find-us-layout {
    gap: 0.9rem;
  }

  .find-us-info {
    text-align: left;
    padding: 1rem;
  }

  .find-social {
    flex-wrap: wrap;
  }

  #contact .section-content {
    max-width: 100%;
  }

  .find-us-info {
    text-align: left;
  }

  .footer-main {
    text-align: center;
  }

  .footer-links {
    justify-items: center;
  }

  .call-fab {
    right: 0.8rem;
    bottom: 0.85rem;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 430px) {
  .brand-lockup {
    gap: 0.5rem;
  }

  .brand-logo {
    height: 40px;
    max-width: 46px;
  }

  .brand-text {
    font-size: 0.82rem;
    max-width: 13.5rem;
  }

  .nav-link::after {
    display: none;
  }

  h2 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .lead {
    font-size: 0.96rem;
  }

  .contact-form label {
    font-size: 0.95rem;
  }

  .footer-main {
    gap: 1.25rem;
    padding: 2rem 0 1.7rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
    justify-content: center;
  }

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

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

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

  .subtle-reveal,
  .find-reveal,
  .service-card,
  .gallery-lightbox,
  .gallery-item img {
    opacity: 1 !important;
    transform: none !important;
  }
}
