/* CL Concrete Pumping — professional blue & grey theme */
:root {
  --navy-950: #0c1929;
  --navy-900: #132337;
  --navy-800: #1e3a5f;
  --gray-800: #334155;
  --gray-600: #64748b;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --accent: var(--blue-600);
  --accent-dark: var(--blue-700);
  --accent-light: var(--blue-400);
  --accent-glow: rgba(37, 99, 235, 0.22);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 76px;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-950);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-dark {
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--gray-200);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-label {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--blue-50);
  border-radius: 100px;
}

.section-head {
  max-width: 620px;
  margin-bottom: 2.75rem;
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.section-head.light .section-label {
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue-400);
}

.section-head.light p {
  color: var(--gray-400);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--navy-800));
  color: var(--white);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-900);
}

.btn-ghost {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(12, 25, 41, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 3px 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.footer-logo {
  display: block;
  height: 88px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  color: var(--gray-200);
  font-weight: 500;
  font-size: 0.92rem;
}

.site-nav a:hover {
  color: var(--blue-400);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 25, 41, 0.92) 0%, rgba(30, 58, 95, 0.72) 50%, rgba(12, 25, 41, 0.88) 100%),
    url("../images/gallery-pump-1.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 35%, var(--accent-glow), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  color: var(--white);
  max-width: 720px;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.hero h1 {
  color: var(--white);
  margin: 0 0 1.25rem;
  max-width: none;
}

.hero-sub {
  max-width: 54ch;
  font-size: 1.125rem;
  color: rgba(226, 232, 240, 0.92);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-200);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 100px;
}

.hero-trust li::before {
  content: none;
}

/* Owner */
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.owner-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.owner-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 1rem 1.35rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.owner-badge span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.owner-badge strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* Services */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.65rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--blue-100);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: 0.75rem 0 0.65rem;
  color: var(--navy-900);
}

.service-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
}

.highlight-card {
  border-color: var(--blue-100);
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--white) 100%);
  box-shadow: var(--shadow-sm);
}

.card-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent);
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.why-item {
  padding: 1.65rem 1.65rem 1.65rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.why-item:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.why-num {
  display: block;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.why-item h3 {
  margin: 0 0 0.5rem;
  color: var(--navy-900);
}

.why-item p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--gray-600);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.gallery-item--wide {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 320px;
}

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

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

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(12, 25, 41, 0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: var(--gray-400);
}

.gallery-note a {
  color: var(--blue-400);
  font-weight: 600;
}

.gallery-note a:hover {
  color: var(--white);
}

/* Facebook / social */
.btn-facebook {
  background: #1877f2;
  color: var(--white);
  border-color: #1877f2;
  box-shadow: var(--shadow-sm);
}

.btn-facebook:hover {
  background: #0d65d9;
  border-color: #0d65d9;
  color: var(--white);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-address {
  font-size: 0.92rem;
  color: var(--gray-400);
  margin: 0.5rem 0 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: rgba(24, 119, 242, 0.15);
  color: #6eb3ff;
  border: 1px solid rgba(24, 119, 242, 0.35);
}

.social-link:hover {
  background: #1877f2;
  color: var(--white);
}

/* Service area */
.service-area-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.area-list {
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.area-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  color: var(--gray-800);
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.area-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.map-card {
  text-align: center;
  padding: 2.25rem;
  color: var(--white);
}

.map-card strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  display: block;
  margin-bottom: 0.35rem;
}

.map-card p:last-child {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.map-pin {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto 1.25rem;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 10px var(--accent-glow);
}

/* SEO */
.seo-content {
  max-width: 780px;
  margin-inline: auto;
}

.seo-content h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.seo-content .section-label {
  display: table;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

.seo-content p {
  color: var(--gray-600);
}

.seo-content strong {
  color: var(--navy-800);
  font-weight: 600;
}

/* Contact */
.contact {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: var(--gray-200);
}

.contact h2 {
  color: var(--white);
}

.contact .section-label {
  background: rgba(59, 130, 246, 0.2);
  color: var(--blue-400);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.contact-details li {
  margin-bottom: 1.35rem;
}

.contact-details strong {
  display: block;
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.contact-details a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--blue-400);
}

.placeholder-note {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

.quote-form {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.quote-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-900);
}

.form-row {
  margin-bottom: 1.1rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font: inherit;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.form-note a {
  color: var(--accent);
  font-weight: 600;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.25rem;
}

.form-status--success {
  color: #047857;
}

.form-status--error {
  color: #b91c1c;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Success popup */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.success-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.success-modal[hidden] {
  display: none;
}

.success-modal.is-visible[hidden] {
  display: flex;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 25, 41, 0.72);
  backdrop-filter: blur(4px);
}

.success-modal__panel {
  position: relative;
  width: min(440px, 100%);
  padding: 2rem 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: scale(0.92) translateY(12px);
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.success-modal.is-visible .success-modal__panel {
  transform: scale(1) translateY(0);
}

.success-modal__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.success-modal__panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--navy-950);
}

.success-modal__panel p {
  margin: 0 0 1rem;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.55;
}

.success-modal__email {
  padding: 1rem;
  margin-bottom: 1.25rem !important;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--blue-100);
}

.success-modal__email a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  word-break: break-all;
}

.success-modal__email a:hover {
  color: var(--accent-dark);
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--gray-400);
  padding: 3.5rem 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer h3 {
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* Floating CTA */
.floating-cta {
  display: none;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  line-height: 56px;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.floating-cta:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
  .owner-grid,
  .service-area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item--wide {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }

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

@media (max-width: 768px) {
  .logo-img {
    height: 48px;
    max-width: 160px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .floating-cta {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .service-card:hover,
  .gallery-item:hover img {
    transform: none;
  }
}
