:root {
  --green-950: #163825;
  --green-900: #1d462d;
  --green-800: #245233;
  --green-700: #2f6a3f;
  --green-500: #62a24b;
  --green-300: #bed68b;
  --yellow-500: #f6d34d;
  --yellow-400: #ffd968;
  --yellow-200: #fdf2ba;
  --cream: #fffef7;
  --ink: #203125;
  --muted: #5e6c60;
  --line: rgba(22, 56, 37, 0.12);
  --line-strong: rgba(22, 56, 37, 0.18);
  --shadow: 0 22px 52px rgba(36, 82, 51, 0.12);
  --radius-xl: 38px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 2.2rem));
  --header-height: 94px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(246, 211, 77, 0.2), transparent 30%),
    linear-gradient(180deg, #fbfbf2 0%, #fffef7 42%, #f6f7ef 100%);
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--green-950);
  color: #fff;
  transition: top 0.2s ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(255, 254, 247, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 254, 247, 0.94);
  border-color: rgba(36, 82, 51, 0.08);
  box-shadow: 0 10px 24px rgba(36, 82, 51, 0.08);
  padding: 0.8rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 3rem;
  color: var(--green-800);
  flex: 0 0 auto;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text span {
  font-size: 0.92rem;
  color: var(--muted);
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.3rem;
  font-weight: 700;
  color: var(--green-900);
}

.main-nav a {
  position: relative;
  padding: 0.3rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.92rem 1.45rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

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

.button:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
  color: var(--green-950);
  box-shadow: 0 14px 28px rgba(246, 211, 77, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(246, 211, 77, 0.38);
}

.button-secondary {
  background: rgba(36, 82, 51, 0.08);
  color: var(--green-900);
  border: 1px solid rgba(36, 82, 51, 0.14);
}

.button-call {
  background: var(--green-950);
  color: #fff;
  box-shadow: 0 12px 24px rgba(22, 56, 37, 0.18);
}

.button-small {
  padding: 0.82rem 1.18rem;
}

.button-large {
  min-width: 17rem;
  padding-inline: 2rem;
}

.ghost-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 800;
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.ghost-button {
  color: var(--green-900);
}

.ghost-button:hover,
.ghost-button:focus-visible {
  border-color: rgba(36, 82, 51, 0.26);
  background: rgba(36, 82, 51, 0.06);
}

.danger-button {
  color: #a4381a;
  border-color: rgba(164, 56, 26, 0.2);
}

.danger-button:hover,
.danger-button:focus-visible {
  background: rgba(164, 56, 26, 0.08);
}

.hero-section,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero-section {
  padding: 4.6rem 0 3rem;
}

.hero-photo-lead {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: end;
  padding: 6.2rem 0 2.4rem;
  background: var(--green-950);
  color: #fff;
}

.hero-bg-photo,
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-photo {
  background-image: url("assets/chantier-elagage.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-bg-overlay {
  background:
    linear-gradient(90deg, rgba(9, 29, 18, 0.92) 0%, rgba(9, 29, 18, 0.72) 46%, rgba(9, 29, 18, 0.28) 100%),
    linear-gradient(0deg, rgba(9, 29, 18, 0.78) 0%, rgba(9, 29, 18, 0) 54%);
}

.page-hero {
  padding: 4.1rem 0 2.2rem;
}

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

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.shape-one {
  width: 18rem;
  height: 18rem;
  top: 8rem;
  left: -6rem;
  background: radial-gradient(circle, rgba(246, 211, 77, 0.22), transparent 70%);
}

.shape-two {
  width: 24rem;
  height: 24rem;
  top: 2rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(98, 162, 75, 0.18), transparent 72%);
}

.shape-three {
  width: 16rem;
  height: 16rem;
  bottom: 1rem;
  right: 22%;
  background: radial-gradient(circle, rgba(246, 211, 77, 0.16), transparent 70%);
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.hero-conversion {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.38fr);
  gap: 2rem;
  align-items: end;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 0.24rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow-500), transparent);
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.trust-copy h2,
.cta-panel h2,
.contact-copy h2,
.panel-head h2,
.panel-head h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--green-950);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-photo-lead .hero-copy h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  text-wrap: balance;
}

.page-hero-copy h1,
.panel-head h1 {
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
}

.hero-lead,
.page-hero-copy p,
.section-heading p,
.trust-copy p,
.cta-panel p,
.contact-copy p,
.panel-head p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-lead {
  max-width: 58ch;
  margin-top: 1.35rem;
  font-size: 1.15rem;
}

.hero-photo-lead .eyebrow,
.hero-photo-lead .hero-lead {
  color: rgba(255, 255, 255, 0.84);
}

.hero-photo-lead .eyebrow::before {
  background: linear-gradient(90deg, var(--yellow-500), rgba(255, 255, 255, 0.22));
}

.hero-photo-lead .hero-lead {
  max-width: 46rem;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.page-hero-actions,
.artisan-login-actions,
.admin-form-actions,
.admin-card-actions,
.admin-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.hero-actions {
  margin: 2rem 0 1.6rem;
}

.hero-photo-lead .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 44rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-proof-row li {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero-proof-row strong,
.hero-proof-row span {
  display: block;
}

.hero-proof-row strong {
  font-family: "Sora", sans-serif;
  color: var(--yellow-400);
  line-height: 1.1;
}

.hero-proof-row span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  font-size: 0.92rem;
}

.instant-call-panel {
  padding: 1.3rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-950);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.instant-call-panel span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--green-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.instant-call-panel a {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  color: var(--green-950);
}

.instant-call-panel p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.hero-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-photo-strip article {
  min-height: 9.5rem;
  display: grid;
  align-content: end;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(9, 29, 18, 0.88), rgba(9, 29, 18, 0.18)),
    url("assets/chantier-elagage.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-photo-strip article:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(9, 29, 18, 0.88), rgba(9, 29, 18, 0.18)),
    url("assets/chantier-haies.jpg") center / cover;
}

.hero-photo-strip article:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(9, 29, 18, 0.88), rgba(9, 29, 18, 0.18)),
    url("assets/chantier-entretien.jpg") center / cover;
}

.hero-photo-strip span {
  color: var(--yellow-400);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.hero-photo-strip strong {
  color: #fff;
  font-family: "Sora", sans-serif;
  line-height: 1.25;
}

.page-hero-actions {
  margin-top: 1.9rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li,
.hero-mini-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 4.25rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 82, 51, 0.08);
}

.highlight-icon,
.project-icon-badge,
.project-empty-icon,
.hero-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.highlight-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  background: rgba(246, 211, 77, 0.24);
  color: var(--green-900);
}

.highlight-icon svg {
  width: 1.4rem;
  fill: currentColor;
}

.hero-contact-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
  margin-top: 1.9rem;
  padding: 0.85rem 1.1rem;
  border-left: 4px solid var(--yellow-500);
  background: rgba(36, 82, 51, 0.05);
  color: var(--green-900);
  font-weight: 800;
}

.hero-contact-bar span {
  color: var(--muted);
  font-weight: 700;
}

.hero-visual,
.page-hero-visual {
  position: relative;
}

.visual-card,
.hero-mini-card,
.artisan-login-card,
.panel-card,
.project-card,
.project-empty,
.admin-project-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(36, 82, 51, 0.08);
  box-shadow: var(--shadow);
}

.visual-card,
.hero-mini-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 245, 228, 0.86));
}

.visual-card {
  padding: 1.2rem;
}

.visual-card--photo {
  padding: 0.75rem;
  overflow: hidden;
  isolation: isolate;
}

.visual-card--photo::after {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(9, 29, 18, 0.06), rgba(9, 29, 18, 0.28));
  pointer-events: none;
}

.hero-illustration {
  width: 100%;
  height: auto;
}

.hero-photo {
  width: 100%;
  min-height: 32rem;
  aspect-ratio: 31 / 26;
  border-radius: 28px;
  background-image: url("assets/chantier-elagage.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.visual-note {
  position: absolute;
  left: 1.6rem;
  bottom: 1.3rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(22, 56, 37, 0.9);
  color: #fff;
  max-width: 18rem;
  z-index: 1;
}

.visual-note strong {
  font-size: 1rem;
}

.visual-note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.hero-mini-card {
  padding: 1.45rem;
}

.hero-mini-orb {
  position: absolute;
  inset: auto auto 1.1rem 1.1rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 211, 77, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-mini-art {
  position: relative;
  min-height: 16rem;
  padding: 1rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 247, 207, 0.92), rgba(228, 241, 216, 0.96));
  overflow: hidden;
}

.hero-mini-tree {
  position: absolute;
  right: 2.6rem;
  bottom: 2rem;
  width: 9rem;
  height: 11.5rem;
}

.hero-mini-tree::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1.15rem;
  height: 5.4rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #734d32;
}

.hero-mini-tree::after {
  content: "";
  position: absolute;
  inset: 0.8rem 0 3.8rem;
  border-radius: 44% 56% 42% 58%;
  background: linear-gradient(180deg, #4a8f48, #245233);
}

.hero-mini-strip {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #8eb65c, #73994c);
}

.hero-mini-badges {
  position: relative;
  display: grid;
  gap: 0.85rem;
  max-width: 13.5rem;
}

.hero-mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-900);
  font-weight: 800;
}

.hero-mini-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 14px;
  background: rgba(246, 211, 77, 0.22);
  color: var(--green-900);
}

.hero-mini-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-mini-points {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding: 1rem 0 0;
  margin: 0;
}

.services-section,
.trust-section,
.cta-section,
.contact-section,
.projects-section,
.home-work-section,
.artisan-entry-section,
.admin-main {
  padding: 5.5rem 0;
}

.home-work-section {
  padding-bottom: 2.5rem;
}

.section-heading {
  max-width: 46rem;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.72fr);
  gap: 1.5rem;
  align-items: end;
}

.section-heading-split > p {
  margin: 0;
}

.section-heading h2,
.trust-copy h2,
.cta-panel h2,
.contact-copy h2,
.panel-head h2 {
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.services-grid,
.projects-grid,
.admin-list,
.photo-slots {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.trust-item,
.project-card,
.project-empty,
.admin-project-card,
.panel-card {
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 245, 230, 0.92));
}

.service-card {
  min-height: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(36, 82, 51, 0.08);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.service-photo {
  width: calc(100% + 3.1rem);
  max-width: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: -1.55rem -1.55rem 1rem;
}

.service-card:hover,
.project-card:hover,
.admin-project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 82, 51, 0.18);
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  margin-top: -3.15rem;
  border: 4px solid rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(246, 211, 77, 0.2), rgba(98, 162, 75, 0.16));
  color: var(--green-900);
}

.service-icon svg,
.trust-number svg,
.project-icon-badge svg,
.project-empty-icon svg {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon svg {
  width: 2.4rem;
  stroke-width: 2.6;
  fill: none;
}

.service-card h3,
.trust-item h3,
.site-footer h3,
.project-title,
.admin-project-title {
  margin: 1rem 0 0.45rem;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  line-height: 1.3;
}

.service-card p,
.trust-item p,
.footer-text,
.footer-list,
.project-location,
.project-description,
.project-empty p,
.admin-project-meta,
.admin-empty,
.quiet-link,
.panel-subcopy {
  margin: 0;
  color: var(--muted);
}

.trust-section {
  position: relative;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 5rem 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 82, 51, 0.12), transparent);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

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

.trust-item {
  border-radius: var(--radius-md);
}

.trust-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: rgba(246, 211, 77, 0.22);
  color: var(--green-900);
}

.trust-number svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke-width: 2.2;
}

.trust-item-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(36, 82, 51, 0.92), rgba(47, 106, 63, 0.9));
  color: #fff;
}

.trust-item-wide p {
  color: rgba(255, 255, 255, 0.74);
}

.trust-item-wide .trust-number {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(34, 76, 43, 0.97), rgba(46, 104, 61, 0.96)),
    linear-gradient(135deg, rgba(246, 211, 77, 0.08), transparent);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel .eyebrow,
.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel .eyebrow::before {
  background: linear-gradient(90deg, var(--yellow-500), rgba(255, 255, 255, 0.2));
}

.cta-panel p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.cta-mail {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
}

.contact-grid,
.admin-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.admin-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-points,
.footer-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.contact-points {
  margin: 2rem 0 0;
}

.contact-points li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(36, 82, 51, 0.1);
}

.contact-points strong {
  color: var(--green-900);
}

.contact-points a {
  font-weight: 800;
}

.contact-form,
.artisan-login-card,
.panel-card {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 237, 0.95));
}

.contact-form,
.panel-card {
  border-radius: var(--radius-lg);
}

.field-row,
.projects-grid {
  display: grid;
  gap: 1rem;
}

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

.projects-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.home-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: 1rem;
  margin-top: 2rem;
}

.work-photo-card {
  position: relative;
  min-height: 13.35rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--green-950);
}

.work-photo-card-large {
  grid-row: span 3;
  min-height: 42rem;
}

.work-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.work-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 29, 18, 0.84), rgba(9, 29, 18, 0.14) 58%),
    linear-gradient(90deg, rgba(9, 29, 18, 0.24), transparent);
}

.work-photo-card:hover img,
.work-photo-card:focus-within img {
  transform: scale(1.045);
}

.work-photo-card div {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 1;
}

.work-photo-card span {
  color: var(--yellow-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-photo-card h3 {
  max-width: 20rem;
  margin: 0.25rem 0 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

.field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field label {
  font-weight: 700;
  color: var(--green-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(36, 82, 51, 0.14);
  border-radius: 18px;
  background: #fff;
  padding: 0.92rem 1rem;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(98, 162, 75, 0.16);
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.button-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.form-note,
.form-status,
.login-status,
.admin-status,
.admin-limit {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
}

.form-note {
  color: var(--muted);
}

.form-status,
.login-status,
.admin-status,
.admin-limit {
  min-height: 1.6rem;
  font-weight: 700;
}

.form-status.is-success,
.login-status.is-success,
.admin-status.is-success {
  color: var(--green-700);
}

.form-status.is-error,
.login-status.is-error,
.admin-status.is-error,
.admin-limit {
  color: #9a3b1d;
}

.projects-shell {
  display: grid;
  gap: 1.5rem;
}

.projects-head {
  max-width: 42rem;
}

.project-card,
.project-empty,
.admin-project-card {
  overflow: hidden;
}

.project-card {
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.project-card-header,
.admin-project-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.project-icon-badge,
.project-empty-icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(246, 211, 77, 0.22), rgba(98, 162, 75, 0.2));
  color: var(--green-900);
}

.project-icon-badge svg,
.project-empty-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke-width: 2.15;
}

.project-title,
.admin-project-title {
  margin: 0;
}

.project-location,
.admin-project-meta {
  margin-top: 0.25rem;
}

.project-description {
  margin-top: 1rem;
}

.project-photos,
.admin-project-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.project-photo,
.admin-project-photos img,
.photo-slot-preview img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  border-radius: 18px;
  object-fit: cover;
}

.project-empty {
  display: grid;
  justify-items: start;
  gap: 0.85rem;
}

.artisan-entry-section {
  padding-top: 1rem;
}

.artisan-login-wrap {
  display: grid;
  justify-content: center;
}

.artisan-login-card {
  width: min(100%, 34rem);
}

.artisan-login-card h2,
.artisan-login-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--green-950);
}

.artisan-login-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.quiet-link {
  font-weight: 700;
}

.panel-head {
  display: grid;
  gap: 0.25rem;
}

.admin-hero {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.count-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(36, 82, 51, 0.08);
  color: var(--green-900);
  font-weight: 800;
}

.count-pill::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--yellow-500);
}

.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.photo-slot {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(36, 82, 51, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.photo-slot-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.photo-slot-head strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  color: var(--green-950);
}

.photo-slot-preview {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(244, 247, 237, 1), rgba(231, 241, 222, 0.92));
}

.photo-slot-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 1.15 / 1;
  color: var(--muted);
  font-weight: 700;
}

.photo-slot input[type="file"] {
  margin-top: 0.9rem;
}

.admin-list {
  grid-template-columns: 1fr;
}

.admin-project-card {
  display: grid;
  gap: 1rem;
}

.admin-card-actions {
  gap: 0.7rem;
}

.admin-empty {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(36, 82, 51, 0.05);
}

.site-footer {
  padding: 2.7rem 0 3rem;
  background: #143321;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.6rem;
}

.footer-brand .brand-text span,
.footer-text,
.footer-list,
.footer-list a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-list {
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-list a:hover,
.footer-list a:focus-visible,
.contact-points a:hover,
.contact-points a:focus-visible,
.hero-contact-bar a:hover,
.hero-contact-bar a:focus-visible,
.cta-mail:hover,
.cta-mail:focus-visible,
.quiet-link:hover,
.quiet-link:focus-visible {
  color: var(--yellow-400);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.leaf-a,
.leaf-b,
.leaf-c {
  transform-origin: center;
  animation: drift 7s ease-in-out infinite;
}

.leaf-b {
  animation-delay: 0.6s;
}

.leaf-c {
  animation-delay: 1.2s;
}

.badge-group,
.worker-group,
.mower-group {
  animation: sway 6.5s ease-in-out infinite;
  transform-origin: center;
}

.worker-group {
  animation-delay: 0.4s;
}

.mower-group {
  animation-delay: 0.8s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(5deg);
  }
}

@keyframes sway {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 1120px) {
  .header-inner,
  .cta-panel,
  .contact-grid,
  .trust-layout,
  .hero-grid,
  .page-hero-grid,
  .hero-conversion-grid,
  .section-heading-split,
  .home-work-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .main-nav {
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-photo-lead .hero-copy h1 {
    max-width: 13ch;
  }

  .work-photo-card-large {
    grid-row: auto;
    min-height: 28rem;
  }

  .cta-actions {
    align-items: stretch;
  }

  .button-large {
    min-width: 0;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 146px;
  }

  .site-header {
    padding: 0.9rem 0;
  }

  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .main-nav {
    gap: 0.95rem 1.1rem;
  }

  .hero-section,
  .page-hero {
    padding-top: 3.3rem;
  }

  .hero-highlights,
  .hero-proof-row,
  .hero-photo-strip,
  .services-grid,
  .trust-grid,
  .field-row,
  .footer-grid,
  .photo-slots,
  .project-photos,
  .admin-project-photos {
    grid-template-columns: 1fr;
  }

  .hero-photo-lead {
    min-height: auto;
    padding: 4.8rem 0 2rem;
  }

  .hero-bg-overlay {
    background:
      linear-gradient(90deg, rgba(9, 29, 18, 0.92), rgba(9, 29, 18, 0.64)),
      linear-gradient(0deg, rgba(9, 29, 18, 0.82), rgba(9, 29, 18, 0.06) 58%);
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 10vw, 3.6rem);
  }

  .hero-photo-lead .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 11vw, 4.2rem);
  }

  .section-heading-split {
    gap: 0.65rem;
  }

  .home-work-grid {
    grid-template-columns: 1fr;
  }

  .work-photo-card,
  .work-photo-card-large {
    min-height: 21rem;
  }

  .visual-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .visual-card--photo .visual-note {
    position: absolute;
    left: 1rem;
    right: auto;
    bottom: 1rem;
    margin-top: 0;
    max-width: min(18rem, calc(100% - 2rem));
    z-index: 2;
  }

  .trust-item-wide {
    grid-column: auto;
  }

  .contact-form,
  .panel-card,
  .artisan-login-card {
    padding: 1.3rem;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 1.2rem, 100%);
    --header-height: 132px;
  }

  .site-header {
    padding: 0.65rem 0;
  }

  .site-header.is-scrolled {
    padding: 0.55rem 0;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.45rem;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text span {
    font-size: 0.8rem;
  }

  .site-header .button {
    width: auto;
    padding: 0.72rem 0.9rem;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-width: calc(100vw - 1.2rem);
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0.05rem 0 0.2rem;
    font-size: 0.88rem;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero-section,
  .page-hero,
  .services-section,
  .trust-section,
  .cta-section,
  .contact-section,
  .projects-section,
  .artisan-entry-section,
  .admin-main {
    padding: 4.2rem 0;
  }

  .hero-section {
    padding-top: 2rem;
  }

  .hero-photo-lead {
    padding: 2.8rem 0 1.2rem;
  }

  .hero-photo-lead .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .hero-photo-lead .hero-lead {
    font-size: 1rem;
  }

  .hero-proof-row li {
    padding: 0.78rem 0.9rem;
  }

  .instant-call-panel {
    padding: 1rem;
    border-radius: 20px;
  }

  .instant-call-panel a {
    font-size: 1.72rem;
  }

  .hero-photo-strip {
    gap: 0.65rem;
  }

  .hero-photo-strip article {
    min-height: 7.8rem;
    border-radius: 18px;
  }

  .home-work-section {
    padding: 3.5rem 0 1.3rem;
  }

  .home-work-grid {
    margin-top: 1.35rem;
  }

  .work-photo-card,
  .work-photo-card-large {
    min-height: 18.5rem;
    border-radius: 24px;
  }

  .work-photo-card div {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .work-photo-card h3 {
    font-size: 1.35rem;
  }

  .hero-grid {
    gap: 1.6rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9vw, 2.85rem);
    line-height: 1.09;
  }

  .hero-lead {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .hero-actions {
    margin: 1.35rem 0 1.05rem;
    gap: 0.7rem;
  }

  .hero-highlights {
    gap: 0.65rem;
  }

  .hero-highlights li {
    min-height: auto;
    padding: 0.78rem 0.85rem;
    border-radius: 14px;
  }

  .highlight-icon {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.8rem;
  }

  .highlight-icon svg {
    width: 1.18rem;
  }

  .button,
  .button-small,
  .button-large {
    width: 100%;
  }

  .hero-actions,
  .hero-contact-bar,
  .page-hero-actions,
  .artisan-login-actions,
  .admin-form-actions,
  .admin-card-actions,
  .admin-tools {
    width: 100%;
  }

  .hero-contact-bar,
  .admin-tools,
  .artisan-login-actions,
  .admin-form-actions,
  .admin-card-actions {
    display: grid;
  }

  .hero-contact-bar {
    margin-top: 1rem;
    gap: 0.35rem;
    padding: 0.75rem 0.9rem;
  }

  .hero-visual {
    margin-top: 0.25rem;
  }

  .visual-card--photo {
    padding: 0.55rem;
    border-radius: 24px;
  }

  .visual-card--photo::after {
    inset: 0.55rem;
    border-radius: 20px;
  }

  .hero-photo {
    min-height: 18.5rem;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    background-position: center top;
  }

  .project-card-header,
  .admin-project-top,
  .photo-slot-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .visual-card--photo .visual-note {
    left: 0.75rem;
    bottom: 0.75rem;
    padding: 0.75rem 0.85rem;
    max-width: calc(100% - 1.5rem);
    border-radius: 13px;
  }

  .visual-note strong {
    font-size: 0.92rem;
  }

  .visual-note span {
    font-size: 0.82rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
