/* ============================================================
   POW Landscaping LLC — Design System
   Style: Dark immersive + glassmorphism + earthy/gold accents
   Pattern: Conversion-Optimized + Trust (hero CTA → trust strip
   → services → about → work → contact)
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #0a130c;
  --bg-soft: #0f1a11;
  --ink: #f4f1e6;
  --ink-soft: #cfd6c4;
  --ink-muted: #99a392;
  --panel: rgba(10, 19, 12, 0.55);
  --panel-strong: rgba(8, 17, 11, 0.82);
  --panel-elevated: rgba(16, 27, 18, 0.78);
  --border: rgba(214, 221, 201, 0.14);
  --border-strong: rgba(214, 221, 201, 0.28);

  /* Brand */
  --green-100: #d9e6c8;
  --green-300: #b9d39c;
  --green-500: #7faa61;
  --green-600: #5e8a48;
  --green-900: #233322;

  --gold-300: #e6cf95;
  --gold-500: #d4b275;
  --gold-600: #b89455;

  /* Effects */
  --radius-lg: 24px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.32);
  --shadow-lift: 0 28px 60px rgba(0, 0, 0, 0.48);
  --shadow-glow: 0 14px 32px rgba(127, 170, 97, 0.25);

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.36, 0.64, 1);

  /* Layout */
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 78px;

  /* Type */
  --font-display: "Outfit", "Avenir Next Condensed", "Franklin Gothic Medium", sans-serif;
  --font-body: "Inter", "Avenir Next", "Segoe UI", sans-serif;
}

/* ---------- Base ---------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

::selection {
  background: var(--gold-500);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Background video shell ---------- */

.video-shell,
.video-overlay {
  position: fixed;
  inset: 0;
}

.video-shell {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(127, 170, 97, 0.22), transparent 45%),
    radial-gradient(circle at 82% 60%, rgba(212, 178, 117, 0.16), transparent 40%),
    var(--bg);
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(4, 8, 5, 0.78) 0%,
      rgba(6, 12, 8, 0.52) 18%,
      rgba(8, 15, 10, 0.55) 55%,
      rgba(3, 7, 4, 0.88) 100%
    );
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 2;
}

/* ---------- Container ---------- */

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(6, 11, 7, 0.42);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(6, 11, 7, 0.78);
  border-bottom-color: var(--border);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

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

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

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease-out);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-out);
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gold-500);
  color: var(--bg) !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
}

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

.nav-cta:hover {
  background: var(--gold-300);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  padding: 0.55rem 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  transition: background 0.2s var(--ease-out);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Sections ---------- */

main {
  padding-bottom: 4rem;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading.is-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.9rem;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 0.7rem;
  transform: translateY(-2px);
}

/* ---------- Typography ---------- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: 0.55rem;
  font-weight: 600;
}

p {
  margin: 0 0 0.9rem;
}

.lede {
  font-size: 1.125rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.section-heading p {
  color: var(--ink-soft);
}

/* ---------- Panel (glassmorphism) ---------- */

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 2.2vw, 2.25rem);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.panel-strong {
  background: var(--panel-strong);
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--bg);
  box-shadow: 0 14px 32px rgba(212, 178, 117, 0.32);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(212, 178, 117, 0.42);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
  color: var(--ink);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-500);
}

.button-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}

.button .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Icons ---------- */

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(127, 170, 97, 0.22), rgba(212, 178, 117, 0.18));
  border: 1px solid var(--border);
  color: var(--gold-300);
}

.icon-tile .icon {
  width: 22px;
  height: 22px;
}

/* ---------- Hero ---------- */

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding-top: clamp(4rem, 7vw, 6rem);
}

.hero .container {
  width: 100%;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  align-items: end;
}

.hero-copy {
  padding: clamp(1.8rem, 2.6vw, 2.6rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.3rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(127, 170, 97, 0.18);
}

.hero-aside {
  padding: clamp(1.5rem, 2.4vw, 2rem);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.service-list li:hover {
  background: rgba(127, 170, 97, 0.08);
  border-color: rgba(127, 170, 97, 0.4);
}

.service-list .icon {
  width: 16px;
  height: 16px;
  color: var(--green-500);
  stroke-width: 2.2;
}

/* ---------- Trust strip ---------- */

.trust-strip {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}

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

.trust-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 178, 117, 0.45);
}

.trust-card .icon-tile {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.trust-card strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.2rem;
}

.trust-card span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ---------- Services ---------- */

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

.service-card {
  padding: 1.6rem 1.55rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(127, 170, 97, 0), rgba(212, 178, 117, 0));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.3s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.service-card:hover::before {
  background: linear-gradient(135deg, rgba(127, 170, 97, 0.55), rgba(212, 178, 117, 0.55));
}

.service-card .card-kicker {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-top: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(212, 178, 117, 0.1);
  border: 1px solid rgba(212, 178, 117, 0.28);
}

.service-card h3 {
  margin: 0.4rem 0 0.3rem;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- About / Steps split ---------- */

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.about-card {
  padding: clamp(1.8rem, 2.6vw, 2.5rem);
}

.owner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0.8rem 0.4rem 0.4rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.owner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--green-500));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.steps-stack {
  display: grid;
  gap: 0.85rem;
}

.step-card {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: var(--panel-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.step-card:hover {
  border-color: rgba(212, 178, 117, 0.4);
  transform: translateX(2px);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-500);
  min-width: 44px;
  letter-spacing: 0.02em;
}

.step-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* ---------- Gallery ---------- */

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel-strong);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  isolation: isolate;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.06);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  background:
    linear-gradient(135deg, rgba(127, 170, 97, 0.3), rgba(35, 51, 34, 0.5)),
    var(--bg-soft);
}

.gallery-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem 1.5rem 1.3rem;
  color: var(--ink);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(4, 8, 5, 0.0) 30%,
    rgba(4, 8, 5, 0.85) 100%
  );
  transform: translateY(8%);
  transition: transform 0.4s var(--ease-out);
}

.gallery-card:hover .gallery-copy,
.gallery-card:focus-within .gallery-copy {
  transform: translateY(0);
}

.gallery-copy h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.gallery-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 38ch;
}

/* ---------- Why us / Value grid ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(127, 170, 97, 0.4);
}

.value-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* ---------- Contact ---------- */

.contact-wrap {
  display: flex;
}

.contact-card {
  width: 100%;
  text-align: center;
  padding: clamp(2rem, 4vw, 3.25rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(127, 170, 97, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(212, 178, 117, 0.14), transparent 55%),
    var(--panel-strong);
  border: 1px solid rgba(212, 178, 117, 0.22);
}

.contact-card h2 {
  max-width: 22ch;
  margin: 0 auto 0.85rem;
}

.contact-card .lede {
  max-width: 56ch;
  margin: 0 auto 2rem;
}

.contact-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.contact-note {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin: 1.6rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-note .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(127, 170, 97, 0.22);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(127, 170, 97, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(127, 170, 97, 0.05);
  }
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 2.5rem 0 3rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  color: var(--ink-soft);
}

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

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.15rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-300);
  margin: 0 0 0.85rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.93rem;
  margin: 0 0 0.45rem;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease-out);
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-legal {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

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

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta-desktop {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    min-width: 240px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(8, 15, 10, 0.95);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lift);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .site-nav a {
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

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

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

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 1.25rem, 1180px);
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .services-grid,
  .gallery-grid,
  .value-grid,
  .trust-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-actions {
    flex-direction: column;
    width: 100%;
  }

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

/* ---------- Reduced motion ---------- */

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
