:root {
  color-scheme: light;
  --ink: #214a36;
  --forest: #214a36;
  --green: #214a36;
  --sage: #7c9b78;
  --blue: #8fafbd;
  --clay: #d8c8a8;
  --sand: #d8c8a8;
  --gold: #bba56b;
  --cream: #f7f6f2;
  --stone: #2f2f2f;
  --white: #ffffff;
  --line: rgba(33, 74, 54, 0.14);
  --muted: rgba(47, 47, 47, 0.72);
  --shadow: 0 24px 70px rgba(33, 74, 54, 0.18);
  --soft-shadow: 0 14px 42px rgba(33, 74, 54, 0.11);
  --glass: rgba(255, 255, 255, 0.62);
  --cursor-x: 50vw;
  --cursor-y: 18vh;
  --display: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Montserrat, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(143, 175, 189, 0.18), transparent 18rem),
    linear-gradient(115deg, rgba(247, 246, 242, 0.96), rgba(216, 200, 168, 0.38)),
    var(--cream);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(ellipse at 25% 6%, rgba(143, 175, 189, 0.24), transparent 34rem),
    conic-gradient(from 140deg at 82% 12%, rgba(216, 200, 168, 0.28), rgba(124, 155, 120, 0.14), rgba(143, 175, 189, 0.18), rgba(216, 200, 168, 0.28)),
    repeating-linear-gradient(92deg, rgba(33, 74, 54, 0.055) 0 1px, transparent 1px 12px);
  background-size: auto, 180% 180%, auto;
  animation: coastal-aura 18s ease-in-out infinite alternate;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 80%);
}

body::after {
  z-index: -1;
  opacity: 0.32;
  background:
    repeating-radial-gradient(circle at 10% 10%, rgba(33, 74, 54, 0.1) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, rgba(143, 175, 189, 0.16), transparent 44%, rgba(216, 200, 168, 0.18));
  mix-blend-mode: multiply;
}

.ambient-system {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-line,
.ambient-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ambient-line {
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(33, 74, 54, 0.2) 8% calc(8% + 1px), transparent calc(8% + 1px) 32%),
    repeating-linear-gradient(105deg, transparent 0 42px, rgba(33, 74, 54, 0.06) 42px 43px, transparent 43px 86px);
  transform-origin: center;
}

.ambient-line-one {
  clip-path: polygon(0 10%, 100% 0, 100% 18%, 0 30%);
  animation: line-float 16s ease-in-out infinite alternate;
}

.ambient-line-two {
  clip-path: polygon(0 78%, 100% 62%, 100% 84%, 0 96%);
  animation: line-float 20s ease-in-out infinite alternate-reverse;
}

.ambient-grain {
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(33, 74, 54, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(47, 47, 47, 0.12) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: multiply;
  animation: grain-drift 2.8s steps(5) infinite;
}

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

a {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--green);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(33, 74, 54, 0.1);
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(22px) saturate(1.25);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header[data-scrolled] {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  border-color: rgba(33, 74, 54, 0.16);
  box-shadow: 0 18px 48px rgba(33, 74, 54, 0.1);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(330px, 48vw);
  text-decoration: none;
}

.brand-logo {
  width: min(255px, 42vw);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(33, 74, 54, 0.08));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  position: relative;
  min-height: 40px;
  padding: 12px 11px;
  color: rgba(33, 74, 54, 0.82);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--forest);
  background: rgba(124, 155, 120, 0.14);
  transform: translateY(-1px);
}

.header-call {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--forest), #173b2c);
  border: 1px solid rgba(33, 74, 54, 0.25);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(33, 74, 54, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-call span {
  margin-top: 4px;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(33, 74, 54, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 26px 0 24px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 247, 238, 0.97) 0%, rgba(251, 247, 238, 0.84) 42%, rgba(251, 247, 238, 0.24) 100%),
    url("/assets/bruce-sons-hero-2026.png") center / cover no-repeat;
  opacity: 0.32;
  transform: scale(1.03);
  animation: hero-breathe 20s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: auto -12% 2% 44%;
  z-index: -1;
  height: 46%;
  content: "";
  opacity: 0.5;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(33, 74, 54, 0.2) 18% 19%, transparent 19% 38%, rgba(143, 175, 189, 0.24) 38% 39%, transparent 39%),
    linear-gradient(135deg, rgba(216, 200, 168, 0.32), rgba(124, 155, 120, 0.18));
  clip-path: polygon(10% 0, 100% 22%, 90% 100%, 0 78%);
  filter: blur(0.2px);
  animation: cut-slide 14s ease-in-out infinite alternate;
}

.hero-kinetic {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-kinetic span {
  position: absolute;
  display: block;
  border: 1px solid rgba(33, 74, 54, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.hero-kinetic span:nth-child(1) {
  right: min(9vw, 110px);
  top: 9%;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  animation: orbital-drift 18s ease-in-out infinite alternate;
}

.hero-kinetic span:nth-child(2) {
  right: 4vw;
  bottom: 8%;
  width: min(28vw, 360px);
  aspect-ratio: 1;
  border-color: rgba(143, 175, 189, 0.18);
  animation: orbital-drift 15s ease-in-out infinite alternate-reverse;
}

.hero-kinetic span:nth-child(3) {
  left: 3vw;
  bottom: 14%;
  width: min(22vw, 260px);
  aspect-ratio: 1;
  border-color: rgba(187, 165, 107, 0.2);
  animation: orbital-drift 21s ease-in-out infinite alternate;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.78fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  left: -28px;
  top: -24px;
  z-index: -1;
  width: min(72vw, 760px);
  height: calc(100% + 48px);
  content: "";
  background:
    linear-gradient(135deg, rgba(247, 246, 242, 0.82), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(16, 40, 30, 0.08);
  backdrop-filter: blur(10px);
  mask-image: linear-gradient(90deg, #000 78%, transparent);
}

.hero-brand-mark {
  width: 56px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 14px 24px rgba(33, 74, 54, 0.12));
  animation: mark-float 5s ease-in-out infinite alternate;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 12.5ch;
  font-size: 4.35rem;
  line-height: 0.94;
  text-wrap: balance;
}

h2 {
  max-width: 18ch;
  font-size: 3.25rem;
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  font-size: 1.17rem;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.intro {
  max-width: 55rem;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.hero-intel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 22px;
  overflow: hidden;
  background: rgba(33, 74, 54, 0.12);
  border: 1px solid rgba(33, 74, 54, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(33, 74, 54, 0.09);
}

.hero-intel span {
  display: grid;
  gap: 4px;
  min-height: 86px;
  align-content: center;
  padding: 14px 16px;
  color: rgba(47, 47, 47, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.hero-intel strong {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.hero-service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-service-row a {
  padding: 9px 11px;
  color: rgba(16, 40, 30, 0.74);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 40, 30, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-service-row a:hover,
.hero-service-row a:focus-visible {
  color: var(--forest);
  border-color: rgba(47, 111, 73, 0.32);
  transform: translateY(-1px);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  transition: opacity 180ms ease, transform 520ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #173b2c, var(--forest));
  border: 1px solid rgba(33, 74, 54, 0.9);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(16, 40, 30, 0.16);
  backdrop-filter: blur(12px);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: auto 14px 9px;
  height: 1px;
  background: rgba(216, 200, 168, 0.55);
}

.hero-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 260ms ease, box-shadow 260ms ease;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
}

.hero-media:hover {
  box-shadow: 0 42px 120px rgba(16, 40, 30, 0.28);
}

.hero-media::before {
  position: absolute;
  inset: 16px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
}

.hero-media-radar {
  position: absolute;
  inset: 26px 26px auto auto;
  z-index: 4;
  display: grid;
  gap: 8px;
  width: min(210px, 48%);
}

.hero-media-radar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(16, 40, 30, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  animation: radar-rise 760ms ease both;
}

.hero-media-radar span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--sand);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(216, 200, 168, 0.16);
}

.hero-media-radar span:nth-child(2) {
  animation-delay: 120ms;
}

.hero-media-radar span:nth-child(3) {
  animation-delay: 240ms;
}

.hero-media::after,
.image-panel::before,
.showcase-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.2) 48%, transparent 56%),
    radial-gradient(circle at var(--glow-x, 22%) var(--glow-y, 18%), rgba(255, 255, 255, 0.26), transparent 28%);
  mix-blend-mode: screen;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: image-drift 14s ease-in-out infinite alternate;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.image-panel:hover img {
  transform: scale(1.035);
}

.visual-showcase {
  position: relative;
  padding: 72px 0 38px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(33, 74, 54, 0.16);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.showcase-card-large {
  grid-row: span 2;
  min-height: 560px;
}

.showcase-card:hover,
.showcase-card:focus-within {
  border-color: rgba(216, 200, 168, 0.76);
  box-shadow: 0 38px 100px rgba(33, 74, 54, 0.24);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px);
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 900ms ease, filter 900ms ease;
}

.showcase-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.07);
}

.showcase-card figcaption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 3;
  max-width: 520px;
  padding: 18px;
  color: var(--white);
  background: rgba(23, 59, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.18);
}

.showcase-card figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-card figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.18;
}

.award-atelier {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}

.award-atelier::before {
  position: absolute;
  inset: 12% 0 auto;
  height: 76%;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(143, 175, 189, 0.16), transparent),
    repeating-linear-gradient(90deg, transparent 0 5.5vw, rgba(33, 74, 54, 0.08) 5.5vw calc(5.5vw + 1px), transparent calc(5.5vw + 1px) 11vw);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  pointer-events: none;
}

.atelier-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}

.atelier-copy p:last-child {
  max-width: 60ch;
  margin-top: 20px;
  font-size: 1.05rem;
}

.atelier-stack {
  position: relative;
  display: grid;
  gap: 14px;
  perspective: 1200px;
}

.atelier-stack::before {
  position: absolute;
  inset: -28px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 20% 20%, rgba(143, 175, 189, 0.26), transparent 22rem),
    linear-gradient(135deg, rgba(33, 74, 54, 0.14), rgba(216, 200, 168, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 30px;
}

.atelier-tile {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  min-height: 142px;
  padding: 26px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(33, 74, 54, 0.12);
  transform: rotateY(-4deg) translateX(var(--offset, 0));
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  backdrop-filter: blur(18px) saturate(1.18);
}

.atelier-tile:nth-child(2) {
  --offset: 28px;
}

.atelier-tile:nth-child(3) {
  --offset: 56px;
}

.atelier-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(216, 200, 168, 0.38), transparent 18rem),
    linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-40%);
  transition: opacity 260ms ease, transform 520ms ease;
}

.atelier-tile:hover,
.atelier-tile:focus-visible {
  border-color: rgba(187, 165, 107, 0.48);
  box-shadow: 0 32px 86px rgba(33, 74, 54, 0.2);
  transform: rotateY(0deg) translateX(var(--offset, 0)) translateY(-4px);
}

.atelier-tile:hover::after,
.atelier-tile:focus-visible::after {
  opacity: 1;
  transform: translateX(20%);
}

.atelier-tile span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-weight: 950;
  background: linear-gradient(135deg, var(--forest), #173b2c);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(33, 74, 54, 0.18);
}

.atelier-tile strong {
  position: relative;
  z-index: 1;
  align-self: end;
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.04;
}

.atelier-tile em {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.hero-badge {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(16, 40, 30, 0.82), rgba(47, 111, 73, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(16, 40, 30, 0.25);
  backdrop-filter: blur(16px) saturate(1.2);
}

.hero-badge strong {
  display: block;
  font-size: 1.18rem;
}

.hero-badge span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(238, 227, 208, 0.58)),
    rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
}

.trust-band {
  padding: 18px 0;
  background: rgba(247, 246, 242, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(33, 74, 54, 0.12);
  border: 1px solid rgba(33, 74, 54, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.trust-grid div {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 116px;
  padding: 16px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.trust-icon,
.line-icon {
  display: grid;
  place-items: center;
  color: var(--forest);
  font-family: var(--display);
  line-height: 1;
}

.trust-icon {
  width: 42px;
  height: 42px;
  font-size: 0.76rem;
  font-family: var(--sans);
  font-weight: 950;
  letter-spacing: 0.08em;
  border: 1px solid rgba(33, 74, 54, 0.2);
  border-radius: 999px;
}

.trust-grid strong {
  color: var(--stone);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-snapshot {
  padding: 70px 0 30px;
}

.snapshot-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.snapshot-heading h2 {
  max-width: 17ch;
}

.snapshot-row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(33, 74, 54, 0.14);
  border: 1px solid rgba(33, 74, 54, 0.12);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.snapshot-row a {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 140px;
  padding: 16px 8px;
  color: var(--stone);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.snapshot-row a:hover,
.snapshot-row a:focus-visible {
  color: var(--forest);
  background: rgba(247, 246, 242, 0.96);
  transform: translateY(-2px);
  box-shadow: inset 0 -3px 0 rgba(187, 165, 107, 0.72);
}

.line-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 9px;
  font-size: 0.78rem;
  font-family: var(--sans);
  font-weight: 950;
  letter-spacing: 0.08em;
  border-bottom: 2px solid rgba(124, 155, 120, 0.55);
}

.seasonal-band,
.guide-band {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.seasonal-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(33, 74, 54, 0.96), rgba(33, 74, 54, 0.82)),
    url("/assets/bruce-sons-modern-hero.png") center / cover no-repeat;
}

.seasonal-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 82% 12%, rgba(143, 175, 189, 0.34), transparent 22rem);
  pointer-events: none;
}

.seasonal-band .section-inner {
  position: relative;
}

.seasonal-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.64fr);
  gap: 34px;
  align-items: end;
}

.seasonal-copy h2,
.seasonal-copy .eyebrow {
  color: var(--white);
}

.seasonal-copy p:last-child {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.season-card {
  position: relative;
  min-height: 255px;
  padding: 28px;
  color: var(--white);
  text-decoration: none;
  background: rgba(247, 246, 242, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.season-card:hover,
.season-card:focus-visible {
  transform: translateY(-5px);
  background: rgba(247, 246, 242, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
}

.season-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 950;
  background: var(--sand);
  border-radius: 999px;
}

.season-card h3 {
  color: var(--white);
  font-size: 1.62rem;
}

.season-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.seasonal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.guide-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(247, 246, 242, 0.9)),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.form-status {
  min-height: 1.4em;
  margin: 16px 0 0;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.proof-item {
  position: relative;
  min-height: 138px;
  padding: 27px 22px;
}

.proof-item::before {
  position: absolute;
  inset: 12px 0 12px auto;
  width: 1px;
  content: "";
  background: rgba(16, 40, 30, 0.12);
}

.proof-item:last-child::before {
  display: none;
}

.proof-item strong {
  display: block;
  color: var(--forest);
  font-size: 2.18rem;
  font-weight: 750;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 86px 0;
}

.section.alt {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(238, 227, 208, 0.52)),
    rgba(255, 255, 255, 0.35);
  border-block: 1px solid rgba(16, 40, 30, 0.08);
}

.section-copy {
  max-width: 760px;
}

.section-copy p {
  margin: 18px 0 0;
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.service-card,
.detail-card {
  position: relative;
  isolation: isolate;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px) saturate(1.16);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.service-card {
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.market-section {
  position: relative;
}

.market-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.market-copy {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38)),
    var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.market-copy p {
  margin: 0;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.advantage-grid div {
  min-height: 148px;
  padding: 18px;
  background: rgba(251, 247, 238, 0.62);
  border: 1px solid rgba(16, 40, 30, 0.1);
  border-radius: 14px;
}

.advantage-grid strong,
.advantage-grid span {
  display: block;
}

.advantage-grid strong {
  color: var(--forest);
  line-height: 1.2;
}

.advantage-grid span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-card::before,
.detail-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.45;
  background:
    radial-gradient(circle at var(--glow-x, 22%) var(--glow-y, 18%), rgba(143, 175, 189, 0.22), transparent 24rem),
    linear-gradient(90deg, rgba(47, 111, 73, 0.14), transparent 44%),
    repeating-linear-gradient(135deg, rgba(16, 40, 30, 0.06) 0 1px, transparent 1px 11px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent);
  transition: opacity 260ms ease;
}

.service-card::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  content: "";
  opacity: 0.92;
  background:
    linear-gradient(135deg, rgba(33, 74, 54, 0.98), rgba(124, 155, 120, 0.82));
  filter: drop-shadow(0 12px 20px rgba(33, 74, 54, 0.16));
  mask: var(--service-icon) center / contain no-repeat;
  transition: transform 260ms ease, opacity 260ms ease;
}

.service-card:not([data-service])::after {
  display: none;
}

.service-card[data-service="cleanup"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 18h16M8 14l-3 4M16 14l3 4M12 4v10M7 9h10'/%3E%3C/svg%3E");
}

.service-card[data-service="irrigation"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v6M5 9c4-2 10-2 14 0M7 13c3-1.6 7-1.6 10 0M12 9v10M6 20h12'/%3E%3C/svg%3E");
}

.service-card[data-service="stone"],
.service-card[data-service="hardscape"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17h16M5 12h14M7 7h10M4 17l2 4h12l2-4M5 12l2-5h10l2 5'/%3E%3C/svg%3E");
}

.service-card[data-service="planting"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20V9M12 9c-5 0-7-3-7-6 5 0 7 3 7 6ZM12 12c5 0 7-3 7-6-5 0-7 3-7 6ZM6 21h12'/%3E%3C/svg%3E");
}

.service-card[data-service="lawn"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h16M7 20c1-6 1-9-1-13M12 20c1-7 2-11 5-16M16 20c0-5 1-8 4-11M10 20c-1-4-3-7-6-9'/%3E%3C/svg%3E");
}

.service-card[data-service="blowout"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h10a3 3 0 1 0-3-3M4 13h15a3 3 0 1 1-3 3M4 18h7'/%3E%3C/svg%3E");
}

.service-card[data-service="flowers"] {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM12 7c0-3 2-4 4-4 1 2 0 4-4 4ZM15 10c3 0 4 2 4 4-2 1-4 0-4-4ZM12 13v8M8 21h8M9 10c-3 0-4-2-4-4 2-1 4 0 4 4Z'/%3E%3C/svg%3E");
}

.service-card span {
  display: inline-flex;
  max-width: calc(100% - 72px);
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card p,
.detail-card p {
  margin: 12px 0 0;
}

.service-card:hover,
.service-card:focus-visible,
.detail-card:hover {
  border-color: rgba(47, 111, 73, 0.34);
  box-shadow: var(--shadow);
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-7px);
}

.service-card:hover::before,
.service-card:focus-visible::before {
  opacity: 0.72;
}

.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
  transform: rotate(-5deg) scale(1.08);
}

.image-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.image-panel::after {
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 34%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(16, 40, 30, 0.28));
  border-radius: 0 0 16px 16px;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 40, 30, 0.11);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.check-list li::before {
  position: absolute;
  left: 14px;
  top: 15px;
  width: 14px;
  height: 14px;
  content: "";
  background:
    linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background:
    linear-gradient(105deg, rgba(238, 227, 208, 0.86), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(82, 127, 145, 0.16), transparent);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.page-hero h1 {
  max-width: 15ch;
  font-size: 4.15rem;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(238, 227, 208, 0.44));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

details {
  min-height: 220px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 850;
  line-height: 1.3;
}

details p {
  margin-bottom: 0;
}

.contact-panel {
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
  background: rgba(251, 247, 238, 0.78);
  border: 1px solid rgba(16, 40, 30, 0.15);
  border-radius: 10px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: rgba(47, 111, 73, 0.58);
  box-shadow: 0 0 0 4px rgba(47, 111, 73, 0.12);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  position: relative;
  padding: 38px 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, #173b2c, #214a36 58%, #2f4d4f);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 14px);
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-inner p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  width: 220px;
  height: auto;
  padding: 9px 12px;
  background: rgba(247, 246, 242, 0.96);
  border-radius: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-call {
  color: var(--white);
  font-weight: 850;
}

.contact-phone {
  margin: 18px 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.contact-phone a {
  color: var(--forest);
  text-decoration: none;
}

@keyframes image-drift {
  from {
    transform: scale(1.02) translate3d(-6px, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(8px, -6px, 0);
  }
}

@keyframes coastal-aura {
  from {
    background-position: 0 0, 0% 50%, 0 0;
  }

  to {
    background-position: 0 0, 100% 50%, 0 0;
  }
}

@keyframes hero-breathe {
  from {
    opacity: 0.28;
    transform: scale(1.02);
  }

  to {
    opacity: 0.38;
    transform: scale(1.07) translate3d(10px, -8px, 0);
  }
}

@keyframes cut-slide {
  from {
    transform: translate3d(-1%, 0, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(2%, -2%, 0) rotate(1deg);
  }
}

@keyframes line-float {
  from {
    transform: translate3d(-2%, 0, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(2%, -2%, 0) rotate(1deg);
  }
}

@keyframes grain-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(-1%, 1%, 0);
  }

  50% {
    transform: translate3d(1%, -1%, 0);
  }

  75% {
    transform: translate3d(1%, 1%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orbital-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(16px, -14px, 0) scale(1.04);
  }
}

@keyframes mark-float {
  from {
    transform: translateY(0) rotate(-1deg);
  }

  to {
    transform: translateY(-6px) rotate(1deg);
  }
}

@keyframes radar-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@supports (animation-timeline: view()) {
  .section,
  .proof-strip,
  .page-hero {
    animation: rise-in both;
    animation-range: entry 5% cover 28%;
    animation-timeline: view();
  }
}

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

@media (max-width: 1040px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: 4.05rem;
  }

  .hero-grid,
  .split-grid,
  .market-grid,
  .atelier-grid {
    gap: 34px;
  }

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

  .showcase-card-large {
    grid-row: span 1;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 20;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #f7f6f2;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .header-call {
    margin-left: auto;
  }

  .hero-grid,
  .split-grid,
  .market-grid,
  .atelier-grid,
  .seasonal-copy,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .atelier-stack::before {
    inset: -18px;
  }

  .atelier-tile,
  .atelier-tile:nth-child(2),
  .atelier-tile:nth-child(3) {
    --offset: 0;
    transform: none;
  }

  .atelier-tile:hover,
  .atelier-tile:focus-visible {
    transform: translateY(-4px);
  }

  .hero {
    min-height: auto;
    padding: 44px 0;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2,
  .page-hero h1 {
    font-size: 2.6rem;
  }

  .hero-media {
    min-height: 420px;
  }

  .proof-grid,
  .service-grid,
  .showcase-grid,
  .seasonal-grid,
  .advantage-grid,
  .faq-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand,
  .brand-logo {
    max-width: 188px;
    width: 188px;
  }

  .header-inner {
    gap: 10px;
  }

  .header-call {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 0.58rem;
  }

  .header-call span {
    display: none;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .intro {
    font-size: 1.03rem;
  }

  .page-hero {
    padding: 52px 0;
  }

  .hero-media {
    display: none;
  }

  .hero-intel {
    grid-template-columns: 1fr;
  }

  .hero-intel span {
    min-height: 72px;
  }

  .hero-kinetic,
  .ambient-line {
    opacity: 0.5;
  }

  .award-atelier {
    padding: 62px 0;
  }

  .atelier-tile {
    grid-template-columns: 1fr;
  }

  .atelier-tile span {
    grid-row: auto;
  }

  .image-panel {
    min-height: 320px;
  }

  .visual-showcase {
    padding: 48px 0 18px;
  }

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

  .showcase-card,
  .showcase-card-large {
    min-height: 330px;
  }

  .showcase-card figcaption {
    inset: auto 12px 12px;
    padding: 14px;
  }

  .proof-grid,
  .service-grid,
  .showcase-grid,
  .seasonal-grid,
  .advantage-grid,
  .faq-grid,
  .trust-grid,
  .list-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-heading {
    display: block;
  }

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

  .hero-copy::before {
    left: -14px;
    top: -16px;
    width: calc(100% + 28px);
    height: calc(100% + 32px);
    border-radius: 18px;
  }

  .proof-item {
    min-height: auto;
  }

  .proof-item::before {
    inset: auto 0 0;
    width: auto;
    height: 1px;
  }

  .button {
    width: 100%;
  }

  .contact-panel {
    padding: 22px;
  }

  .footer-brand {
    display: grid;
  }

  .footer-logo {
    width: 210px;
  }
}
