:root {
  --ink: #0b0d0b;
  --ink-soft: #171a17;
  --forest: #15392d;
  --forest-deep: #0d241c;
  --forest-soft: #235542;
  --brass: #c9a34f;
  --brass-light: #e4c779;
  --parchment: #f2eee4;
  --paper: #fbfaf6;
  --stone: #6c695f;
  --stone-dark: #46463f;
  --white: #ffffff;
  --line: rgba(11, 13, 11, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 12px 36px rgba(11, 13, 11, 0.08);
  --shadow-lg: 0 28px 80px rgba(11, 13, 11, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --max: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 4px;
}

.site-header :focus-visible,
.hero :focus-visible,
.page-hero :focus-visible,
.section--dark :focus-visible,
.section--forest :focus-visible,
.site-footer :focus-visible,
.status-page :focus-visible,
.lightbox :focus-visible,
.gallery-link:focus-visible {
  outline-color: var(--brass-light);
}

::selection {
  color: var(--ink);
  background: var(--brass-light);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--brass-light);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(11, 13, 11, 0.96);
  border-bottom: 1px solid rgba(201, 163, 79, 0.26);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.35));
}

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

.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.brand-tagline {
  margin-top: 7px;
  color: var(--brass-light);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav > a:not(.button) {
  position: relative;
  padding: 12px 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav > a:not(.button)::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.desktop-nav .button {
  margin-left: 9px;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(310px, calc(100vw - 40px));
  max-height: calc(100dvh - 110px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid rgba(201, 163, 79, 0.36);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.mobile-nav-panel a {
  display: block;
  min-height: 46px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-panel .button {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button--gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--brass-light), var(--brass));
  border-color: var(--brass-light);
  box-shadow: 0 10px 30px rgba(201, 163, 79, 0.2);
}

.button--gold:hover {
  background: var(--brass-light);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  background: var(--forest-deep);
}

.button--outline {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button--outline:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--brass-light);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.6vw, 6.25rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.3vw, 4.2rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p {
  margin-top: 0;
  margin-bottom: 1.2em;
}

.lead {
  max-width: 700px;
  color: var(--stone-dark);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 86px));
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(8, 10, 8, 0.92) 0%, rgba(8, 10, 8, 0.72) 42%, rgba(8, 10, 8, 0.1) 75%, rgba(8, 10, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.68) 0%, transparent 42%),
    url("./hero-mower-cinematic-v3-f6f9c5.jpg");
  background-image:
    linear-gradient(90deg, rgba(8, 10, 8, 0.92) 0%, rgba(8, 10, 8, 0.72) 42%, rgba(8, 10, 8, 0.1) 75%, rgba(8, 10, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.68) 0%, transparent 42%),
    image-set(
      url("./hero-mower-cinematic-v3-f6f9c5.webp") type("image/webp") 1x,
      url("./hero-mower-cinematic-v3-f6f9c5.jpg") type("image/jpeg") 1x
    );
  background-position: center 28%;
  background-size: cover;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 78% 24%, rgba(228, 199, 121, 0.13), transparent 26%);
}

.hero-content {
  max-width: 760px;
  padding-block: clamp(92px, 13vw, 150px) 76px;
}

.hero-seal {
  width: 108px;
  height: 108px;
  margin-bottom: 24px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.4));
}

.hero h1 {
  text-wrap: balance;
}

.hero .hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-strip {
  color: var(--white);
  background: var(--forest-deep);
  border-bottom: 1px solid rgba(201, 163, 79, 0.22);
}

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

.proof-item {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-right: 1px solid var(--line-light);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-number {
  flex: 0 0 auto;
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1;
}

.proof-item strong {
  display: block;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
}

.proof-item span:last-child {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.section {
  padding-block: clamp(74px, 9vw, 120px);
}

.section--tight {
  padding-block: clamp(58px, 7vw, 88px);
}

.section--parchment {
  background: var(--parchment);
}

.section--dark {
  color: var(--white);
  background: var(--ink);
}

.section--forest {
  color: var(--white);
  background: var(--forest-deep);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--stone-dark);
}

.section--dark .section-heading p:not(.eyebrow),
.section--forest .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.audience-grid,
.service-grid,
.values-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.audience-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.audience-card-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.audience-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 10, 8, 0.94), rgba(7, 10, 8, 0.1) 75%);
}

.audience-card:hover .audience-card-image {
  transform: scale(1.025);
}

.audience-card--commercial .audience-card-image {
  object-position: 56% center;
}

.audience-card--residential .audience-card-image {
  object-position: center;
}

.audience-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.audience-card p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

.audience-card .text-link {
  color: var(--brass-light);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(201, 163, 79, 0.23);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-panel-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.feature-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.feature-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 76px);
}

.feature-panel-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.check-list,
.plain-list,
.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 13px;
  height: 7px;
  content: "";
  border-bottom: 2px solid var(--brass-light);
  border-left: 2px solid var(--brass-light);
  transform: rotate(-45deg);
}

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

.service-card,
.value-card,
.process-card,
.content-card {
  padding: clamp(26px, 3.6vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.card-index {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--forest);
  border: 1px solid rgba(21, 57, 45, 0.26);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 800;
}

.service-card p,
.value-card p,
.process-card p,
.content-card p {
  color: var(--stone-dark);
}

.service-card .text-link {
  margin-top: auto;
}

.work-preview {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 16px;
}

.work-tile {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-md);
  isolation: isolate;
}

.work-tile:first-child {
  grid-row: 1 / -1;
}

.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.work-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 7, 6, 0.9), transparent 60%);
}

.work-tile:hover img {
  transform: scale(1.035);
}

.work-tile-copy {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.work-tile-copy strong,
.work-tile-copy span {
  display: block;
}

.work-tile-copy strong {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.work-tile-copy span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

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

.process-card {
  position: relative;
  counter-increment: process;
}

.process-card::before {
  display: block;
  margin-bottom: 25px;
  color: var(--brass);
  content: "0" counter(process);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 800;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(228, 199, 121, 0.2), transparent 28%),
    var(--forest-deep);
  border: 1px solid rgba(201, 163, 79, 0.3);
  border-radius: var(--radius-lg);
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.cta-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  position: relative;
  min-height: 530px;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 9, 7, 0.94), rgba(7, 9, 7, 0.56) 55%, rgba(7, 9, 7, 0.32));
}

.page-hero--commercial {
  background-image: url("../portfolio/commercial-care.jpg");
  background-position: 54% center;
}

.page-hero--services {
  background-image: url("../portfolio/shrub-care.jpg");
  background-position: center 55%;
}

.page-hero--work {
  background-image: url("../portfolio/lawn-finish.jpg");
}

.page-hero--about {
  background-image: url("../portfolio/desert-garden-care.jpg");
  background-position: center 38%;
}

.page-hero--contact {
  min-height: 440px;
  background-image: url("../portfolio/shrub-shaping.jpg");
  background-position: center 46%;
}

.page-hero-content {
  max-width: 850px;
  padding-block: 110px 66px;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  text-wrap: balance;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.page-hero .hero-actions {
  margin-top: 28px;
}

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

.scope-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.scope-card h2,
.scope-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.scope-card p,
.scope-card li {
  color: var(--stone-dark);
}

.service-list {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.service-list li {
  position: relative;
  padding-top: 11px;
  padding-left: 24px;
  border-top: 1px solid var(--line);
}

.service-list li::before {
  position: absolute;
  top: 1.42em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--brass);
  border-radius: 50%;
}

.cadence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cadence-card {
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
}

.cadence-card strong,
.cadence-card h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.cadence-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 88px);
}

.editorial-media {
  position: relative;
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.editorial-media::after {
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 64%;
  height: 58%;
  content: "";
  background: var(--brass);
  border-radius: var(--radius-lg);
}

.editorial-copy .lead {
  margin-bottom: 28px;
}

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

.value-card {
  box-shadow: none;
}

.value-card .card-index {
  margin-bottom: 22px;
}

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

.gallery-card {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-card--wide {
  grid-column: span 8;
}

.gallery-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--forest-deep);
}

.gallery-link::after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  content: "+";
  background: var(--brass-light);
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-link:hover::after,
.gallery-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-card--wide .gallery-link img {
  aspect-ratio: 8 / 3.9;
}

.gallery-link:hover img {
  transform: scale(1.025);
}

.gallery-caption {
  padding: 20px 22px 22px;
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption strong {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.gallery-caption span {
  margin-top: 4px;
  color: var(--stone);
  font-size: 0.86rem;
}

.lightbox {
  width: min(1080px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(201, 163, 79, 0.36);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgba(11, 13, 11, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  background: #020302;
}

.lightbox-caption {
  margin: 0;
  padding: 17px 24px 20px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 28px;
}

.contact-card,
.form-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-card {
  position: sticky;
  top: 116px;
}

.contact-detail {
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.contact-detail:first-of-type {
  margin-top: 26px;
}

.contact-detail span,
.contact-detail strong {
  display: block;
}

.contact-detail span {
  color: var(--stone);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.privacy-note {
  padding: 18px;
  color: var(--stone-dark);
  background: var(--parchment);
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label,
.fieldset legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.required {
  color: #8c371f;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(11, 13, 11, 0.28);
  border-radius: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(21, 57, 45, 0.12);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 2px;
}

.field-help {
  margin: 0;
  color: var(--stone);
  font-size: 0.8rem;
}

.fieldset {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 11px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.86rem;
}

.check-option:hover {
  border-color: rgba(21, 57, 45, 0.42);
}

.check-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--forest);
}

.consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.86rem;
}

.consent input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.form-actions p {
  margin: 0;
  color: var(--stone);
  font-size: 0.8rem;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.legal-copy h2 {
  margin-top: 2em;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--stone-dark);
}

.legal-copy a {
  color: var(--forest);
  font-weight: 750;
}

.status-page {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding-block: 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(201, 163, 79, 0.18), transparent 25%),
    var(--forest-deep);
}

.status-card {
  max-width: 760px;
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 163, 79, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.status-card img {
  width: 106px;
  height: 106px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.status-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.status-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #070907;
  border-top: 1px solid rgba(201, 163, 79, 0.22);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.72fr));
  gap: 46px;
  padding-block: 64px 52px;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 17px;
  color: var(--brass-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

  .footer-main {
    grid-template-columns: 1.3fr repeat(2, minmax(0, 0.8fr));
  }

  .footer-main > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 720px;
    background-image:
      linear-gradient(90deg, rgba(8, 10, 8, 0.94), rgba(8, 10, 8, 0.5)),
      linear-gradient(0deg, rgba(8, 10, 8, 0.86), transparent 60%),
      url("./hero-mower-cinematic-v3-f6f9c5.jpg");
    background-image:
      linear-gradient(90deg, rgba(8, 10, 8, 0.94), rgba(8, 10, 8, 0.5)),
      linear-gradient(0deg, rgba(8, 10, 8, 0.86), transparent 60%),
      image-set(
        url("./hero-mower-cinematic-v3-f6f9c5.webp") type("image/webp") 1x,
        url("./hero-mower-cinematic-v3-f6f9c5.jpg") type("image/jpeg") 1x
      );
    background-position: 82% center;
  }

  .proof-grid,
  .process-grid,
  .cadence-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:last-child {
    min-height: 82px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .feature-panel,
  .editorial-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-panel-media {
    min-height: 390px;
  }

  .contact-card {
    position: static;
  }

  .work-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 240px;
  }

  .work-tile:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .work-tile:last-child {
    grid-column: auto;
  }

  .gallery-card,
  .gallery-card--wide {
    grid-column: span 6;
  }

  .gallery-card--wide .gallery-link img {
    aspect-ratio: 4 / 3;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-block: 72px 56px;
  }

  .hero-seal {
    width: 88px;
    height: 88px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 3.6rem);
  }

  .hero-actions .button,
  .section-actions .button,
  .status-actions .button {
    width: 100%;
  }

  .audience-grid,
  .service-grid,
  .scope-grid,
  .values-grid,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 330px;
  }

  .feature-panel-media {
    min-height: 300px;
  }

  .editorial-media::after {
    right: 0;
    bottom: -14px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .work-preview {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .work-tile,
  .work-tile:first-child,
  .work-tile:last-child {
    min-height: 270px;
    grid-column: auto;
  }

  .gallery-card,
  .gallery-card--wide {
    grid-column: 1 / -1;
  }

  .form-card,
  .contact-card {
    padding: 24px 18px;
  }

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

  .footer-brand,
  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
