:root {
  --bg: #050506;
  --bg-soft: #0b0d10;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.105);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.46);
  --line: rgba(255, 255, 255, 0.12);

  /* Brand accent — Deep Detail cyan/teal */
  --accent: #1ec8c8;
  --accent-strong: #19b5b5;
  --accent-deep: #0e8a8a;
  --accent-soft: rgba(30, 200, 200, 0.16);
  --accent-glow: rgba(30, 200, 200, 0.35);

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 28px;
  --radius-lg: 42px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(30, 200, 200, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(30, 200, 200, 0.08), transparent 32rem),
    var(--bg);
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: #061010;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 20rem;
  height: 20rem;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 200, 200, 0.18), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section h2,
.hero h1 {
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.section h2 {
  max-width: 820px;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.glass {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

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

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  border-color: rgba(30, 200, 200, 0.55);
  background: linear-gradient(135deg, #2ee0e0, #0e8a8a);
  color: #04151a;
  box-shadow: 0 16px 44px rgba(30, 200, 200, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(24px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
}

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

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(30, 200, 200, 0.55);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(30, 200, 200, 0.28), rgba(255, 255, 255, 0.04)),
    #08090b;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 36px rgba(0, 0, 0, 0.35);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted-2);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  gap: 0.34rem;
  width: 2.9rem;
  height: 2.9rem;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

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

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

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

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  padding: 2rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(30, 200, 200, 0.14), transparent 24rem),
    rgba(5, 5, 6, 0.96);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}

.nav-menu.active {
  transform: translateX(0);
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.55rem, 8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-menu a:hover {
  color: var(--accent);
  transform: translateX(0.35rem);
}

.nav-cta {
  width: fit-content;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(30, 200, 200, 0.5);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.hero {
  display: grid;
  min-height: 100svh;
  align-items: end;
  padding: 8rem 0 3rem;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.72);
  transform: translateY(var(--parallax-y, 0));
}

.hero-overlay {
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(5, 5, 6, 0.74) 38%, rgba(5, 5, 6, 0.1)),
    linear-gradient(90deg, rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.24) 58%, rgba(5, 5, 6, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.6rem, 15vw, 10.8rem);
  font-weight: 900;
}

.hero h1 span {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-weight: 700;
}

.hero-lead {
  max-width: 680px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 820px;
  margin-top: 3rem;
}

.hero-stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  color: var(--accent);
  font-size: 1.45rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 3;
  display: none;
  width: 2.2rem;
  height: 3.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.scroll-indicator span {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.7s infinite;
}

.split {
  display: grid;
  gap: 2rem;
}

.section-copy {
  align-self: center;
}

.about-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-card img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
}

.about-card-content {
  padding: 1.5rem;
}

.about-card-content h3 {
  margin-bottom: 0.45rem;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

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

.features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feature,
.service-card,
.process-step,
.contact-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.08),
    18px 18px 52px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.feature {
  padding: 1.25rem;
  border-radius: 1.4rem;
}

.feature:hover,
.service-card:hover,
.process-step:hover,
.contact-card:hover {
  border-color: rgba(30, 200, 200, 0.4);
  background:
    linear-gradient(145deg, rgba(30, 200, 200, 0.12), rgba(255, 255, 255, 0.04));
  transform: translateY(-8px);
}

.feature span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature h3,
.service-card h3,
.process-step h3 {
  margin: 0.45rem 0;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.feature p,
.service-card p,
.process-step p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: var(--radius);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
  transition: transform 0.45s var(--ease);
}

.service-card:hover::after {
  transform: scale(1.35);
}

.service-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 2rem;
  place-items: center;
  border: 1px solid rgba(30, 200, 200, 0.35);
  border-radius: 1rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
}

.service-card a {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--accent);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 17rem;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 55%);
}

.gallery-item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: var(--white);
  font-weight: 800;
}

.gallery-item:hover img {
  filter: saturate(1.14) contrast(1.06);
  transform: scale(1.08);
}

.review-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.review-track {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.review-slide {
  flex: 0 0 100%;
  padding: 1.5rem;
}

.review-slide p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.review-slide h3 {
  margin-top: 1.5rem;
}

.review-slide span {
  color: var(--accent);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0 1.5rem 1.5rem;
}

.slider-controls button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.slider-controls button:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
}

.slider-dots button {
  width: 0.52rem;
  height: 0.52rem;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
}

.slider-dots button.active {
  background: var(--accent);
}

.process-grid {
  display: grid;
  gap: 1rem;
}

.process-step {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius);
}

.process-step span {
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-cards {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-card {
  padding: 1rem;
  border-radius: 1.2rem;
}

.contact-card span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--accent);
  font-weight: 800;
}

.map-placeholder {
  display: grid;
  min-height: 13rem;
  margin-top: 1rem;
  place-items: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 50%, rgba(30, 200, 200, 0.16), transparent 18rem);
  text-align: center;
}

.map-placeholder span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-placeholder p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  outline: 0;
  background: rgba(255, 255, 255, 0.065);
  color: var(--white);
  padding: 0.95rem 1rem;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form select option {
  color: #080808;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(30, 200, 200, 0.7);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form-status {
  min-height: 1.4rem;
  color: var(--accent);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.5rem;
  background: #030304;
}

.footer-layout {
  display: grid;
  gap: 2rem;
}

.footer p {
  max-width: 420px;
  margin-top: 1rem;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2.5rem;
  align-items: start;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-heading {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

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

.social-icons {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem;
  align-items: center;
}

.footer-cta {
  background: linear-gradient(135deg, rgba(30, 200, 200, 0.12), rgba(30, 200, 200, 0.04));
  border-top: 1px solid rgba(30, 200, 200, 0.2);
  border-bottom: 1px solid rgba(30, 200, 200, 0.2);
  padding: 3rem 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-cta h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
  margin-top: 0.5rem;
}


.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.85rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-height: 86vh;
  width: min(100%, 1200px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 201;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

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

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 1.55rem);
  }
}


.brand-logo {
  height: 2.2rem;
  width: auto;
  display: block;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ... existing code ... */
.split,
.reviews-layout {
  grid-template-columns: 1fr;
  align-items: center;
}

.contact-layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.contact-info {
  align-self: stretch;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-heading {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

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

.footer-cta-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (min-width: 400px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 560px) {
  .hero-stats,
  .features {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-cta-inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 7.5rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    z-index: auto;
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;
    padding: 0;
    background: transparent;
    transform: none;
  }

  .nav-menu a {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0;
  }

  .nav-menu a:hover {
    transform: translateY(-1px);
  }

  .nav-cta {
    padding: 0.7rem 1rem;
  }

  .hero {
    align-items: center;
    padding-top: 5rem;
  }

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

  .scroll-indicator {
    display: block;
  }

  .split,
  .reviews-layout,
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .contact-layout {
    align-items: end;
  }

  .about-card img {
    height: 34rem;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 16rem;
  }

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

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

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

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

  .contact-form {
    padding: 1.5rem;
  }

  .footer-layout {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-links {
    grid-template-columns: repeat(3, auto);
    gap: 2.5rem;
  }
}

@media (min-width: 1100px) {
  .service-card {
    min-height: 20rem;
    padding: 1.6rem;
  }

  .contact-form {
    padding: 2rem;
  }
}
.reviews-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.reviews-layout .section-copy {
  max-width: 720px;
  max-height: 300px;
}

.reviews-layout .section-copy h2 {
  max-width: 100%;
}

/* Featurable widget responsive styles */
#featurable-f5fd6c14-e348-4118-9d74-7a7b462d588f {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
}

#featurable-f5fd6c14-e348-4118-9d74-7a7b462d588f * {
  max-width: 100% !important;
  box-sizing: border-box;
}

#featurable-f5fd6c14-e348-4118-9d74-7a7b462d588f iframe {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 768px) {
  #featurable-f5fd6c14-e348-4118-9d74-7a7b462d588f {
    padding: 0;
    margin: 0 auto;
  }
}
