/* Émondage TR — mobile-first design system */
:root {
  --green-primary: #2d8f47;
  --green-dark: #1a4d2e;
  --green-light: #e8f5eb;
  --gold: #c9a227;
  --gold-light: #f5ecd4;
  --brown: #6b4423;
  --orange: #c45a08;
  --text: #1a1a1a;
  --text-muted: #4a5568;
  --bg: #fafaf8;
  --surface: #ffffff;
  --border: #d4ddd6;
  --shadow: 0 4px 24px rgba(26, 77, 46, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --max-width: 72rem;
  --header-h: 4.5rem;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 10000;
  padding: var(--space-xs) var(--space-sm);
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: var(--header-h);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo-link img {
  height: 56px;
  width: auto;
  border-radius: var(--radius-sm);
}

.logo-text {
  display: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
  line-height: 1.2;
}

.header-contact {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  font-size: 0.9rem;
}

.header-contact a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.header-contact a:hover {
  color: var(--brown);
}

.header-phone {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--green-dark);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  color: var(--green-dark);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="false"] .icon-close {
  display: none;
}

/* Navigation */
.site-nav {
  display: none;
  background: var(--green-dark);
}

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

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md) var(--space-md);
}

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

.nav-list > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-list a {
  display: block;
  padding: 0.75rem 0;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--gold-light);
}

.nav-cta a {
  color: #ffb380;
  font-weight: 700;
}

.nav-services summary {
  cursor: pointer;
  padding: 0.75rem 0;
  color: #fff;
  font-weight: 500;
  list-style: none;
}

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

.nav-services[open] summary {
  color: var(--gold-light);
}

.nav-sub {
  list-style: none;
  margin: 0 0 var(--space-xs);
  padding: 0 0 0 var(--space-sm);
}

.nav-sub a {
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.5rem 0;
}

/* Main layout */
main {
  min-height: 50vh;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-lg) 0;
}

.section--tight {
  padding: var(--space-md) 0;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 55%, #3da85c 100%);
  color: #fff;
  padding: var(--space-xl) 0;
}

.hero-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
}

.hero-lead {
  font-size: 1.125rem;
  opacity: 0.95;
  margin: 0 0 var(--space-md);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: #ddb83a;
  color: var(--green-dark);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-primary);
}

.btn--outline:hover {
  background: var(--green-light);
}

.btn:disabled {
  background: #d4d4d4;
  border-color: #b8b8b8;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
}

.btn:disabled:hover {
  background: #d4d4d4;
  border-color: #b8b8b8;
  color: #666;
}

/* Carousel */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--space-sm);
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--gold);
}

/* Cards */
.card-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 77, 46, 0.12);
}

.card h2,
.card h3 {
  margin: 0 0 var(--space-xs);
  color: var(--green-dark);
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Page header */
.page-header {
  background: var(--green-light);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.page-header h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--green-dark);
}

.page-header .breadcrumb {
  margin: var(--space-xs) 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.page-header .breadcrumb a {
  color: var(--green-primary);
}

/* Content */
.content-prose {
  max-width: 65ch;
}

.content-prose h2 {
  font-size: 1.35rem;
  color: var(--orange);
  margin: var(--space-lg) 0 var(--space-sm);
}

.content-prose h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: var(--space-md) 0 var(--space-xs);
}

.content-prose p,
.content-prose li {
  margin: 0 0 var(--space-sm);
}

.content-prose ul {
  padding-left: 1.25rem;
}

.content-prose .source {
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.content-media {
  margin: var(--space-md) 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-media--float {
  max-width: 100%;
}

.media-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  margin: var(--space-md) 0;
}

/* Gallery */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.gallery-tabs button {
  min-height: 44px;
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
}

.gallery-tabs button[aria-selected="true"] {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

.photo-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.photo-grid button {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.photo-grid button:hover img {
  transform: scale(1.03);
}

.video-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.video-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-card video {
  width: 100%;
  background: #000;
}

.video-card figcaption {
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 90vh;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.25rem;
}

.lightbox-prev {
  left: var(--space-sm);
}

.lightbox-next {
  right: var(--space-sm);
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.map-note {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  max-width: 40rem;
}

.form-card fieldset {
  border: 0;
  margin: 0;
  min-inline-size: 0;
  padding: 0;
}

.form-grid {
  display: grid;
  gap: var(--space-md);
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--green-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-primary);
}

.radio-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  cursor: pointer;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.form-status {
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.form-status--info {
  background: var(--gold-light);
  color: var(--brown);
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-md);
}

.footer-grid a {
  color: var(--gold-light);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Utilities */
.text-center {
  text-align: center;
}

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

/* Tablet+ */
@media (min-width: 640px) {
  .logo-text {
    display: block;
  }

  .header-contact {
    display: flex;
  }

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

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

  .content-media--float-right {
    float: right;
    max-width: 45%;
    margin: 0 0 var(--space-md) var(--space-md);
  }

  .content-media--float-left {
    float: left;
    max-width: 45%;
    margin: 0 var(--space-md) var(--space-md) 0;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: block !important;
    background: var(--green-dark);
  }

  .nav-inner {
    padding: 0 var(--space-md);
  }

  .nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1.25rem;
  }

  .nav-list > li + li {
    border-top: none;
  }

  .nav-list a {
    padding: 0.85rem 0;
  }

  .nav-services {
    position: relative;
  }

  .nav-services summary {
    padding: 0.85rem 0;
  }

  .nav-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 16rem;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: var(--space-xs);
    z-index: 100;
  }

  .nav-sub a {
    color: var(--green-dark);
    padding: 0.45rem 0.65rem;
    border-radius: 4px;
  }

  .nav-sub a:hover {
    background: var(--green-light);
    color: var(--green-dark);
  }

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

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

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

@media (min-width: 1024px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

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

/* NewSite visual upgrade */
:root {
  --green-primary: #23763d;
  --green-dark: #0f3d25;
  --green-deep: #092719;
  --green-light: #eef7f0;
  --gold: #d2a720;
  --gold-light: #fbf0c7;
  --copper: #a85f22;
  --text: #17211b;
  --text-muted: #53635a;
  --bg: #fbfbf6;
  --surface: #ffffff;
  --border: #d7e2d9;
  --shadow: 0 18px 50px rgba(15, 61, 37, 0.12);
  --shadow-strong: 0 24px 70px rgba(9, 39, 25, 0.22);
  --radius: 8px;
  --radius-sm: 6px;
  --max-width: 73rem;
}

body {
  background:
    linear-gradient(180deg, rgba(238, 247, 240, 0.72), rgba(251, 251, 246, 0) 26rem),
    var(--bg);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(251, 251, 246, 0.92), rgba(238, 247, 240, 0.78)),
    url("https://in8vowk2nnlu17j8.public.blob.vercel-storage.com/assets/logo/Logo_EmondTR.jpg") right 6vw top 11rem / min(34vw, 24rem) auto no-repeat,
    url("https://in8vowk2nnlu17j8.public.blob.vercel-storage.com/assets/photos/20200827_113457_05.jpg") center / cover no-repeat;
  opacity: 0.24;
}

body > * {
  position: relative;
  z-index: 1;
}

.site-header {
  border-bottom: 0;
  box-shadow: 0 10px 30px rgba(9, 39, 25, 0.1);
}

.header-inner {
  min-height: 5.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.logo-link {
  gap: 0.75rem;
  min-width: 0;
}

.logo-link img {
  height: 70px;
  border-radius: 0;
  filter: drop-shadow(0 8px 12px rgba(15, 61, 37, 0.18));
}

.logo-mark {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.logo-text {
  display: block;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--green-dark);
}

.brand-kicker {
  display: block;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-contact {
  padding: 0.45rem 0 0.45rem 1rem;
  border-left: 1px solid var(--border);
}

.header-contact a {
  color: #9c760b;
}

.header-phone {
  color: var(--green-dark) !important;
  font-size: 1rem;
}

.urgent-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #e3342f 0%, #b91c1c 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(185, 28, 28, 0.28);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.urgent-call:hover {
  color: #fff;
  background: linear-gradient(180deg, #f04438 0%, #c81e1e 100%);
  box-shadow: 0 18px 38px rgba(185, 28, 28, 0.34);
  transform: translateY(-1px);
}

.urgent-call__icon,
.urgent-call__icon svg {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
}

.urgent-call__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  background: var(--green-deep);
}

.nav-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.nav-list {
  gap: 0.25rem;
}

.nav-list a,
.nav-services summary {
  border-radius: var(--radius-sm);
  font-weight: 750;
}

.nav-list a:hover,
.nav-list a[aria-current="page"],
.nav-services[open] summary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta a {
  color: var(--gold-light);
}

.nav-cta a:hover,
.nav-cta a[aria-current="page"] {
  background: var(--gold);
  color: var(--green-deep);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section .eyebrow,
.page-header .eyebrow {
  color: var(--copper);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(115deg, rgba(9, 39, 25, 0.98) 0%, rgba(20, 79, 45, 0.96) 48%, rgba(38, 126, 65, 0.88) 100%),
    url("https://in8vowk2nnlu17j8.public.blob.vercel-storage.com/assets/photos/20200903_132201.jpg") center / cover;
  background-attachment: fixed, fixed;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -5rem -9rem auto;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(251, 240, 199, 0.25);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.03;
  text-wrap: balance;
}

.hero-lead {
  max-width: 44ch;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  margin-bottom: 1.4rem;
}

.btn {
  min-height: 48px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(9, 39, 25, 0.14);
}

.btn--primary {
  background: linear-gradient(180deg, #e4bc34 0%, var(--gold) 100%);
  border-color: #e4bc34;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 1.6rem 0 0;
}

.trust-strip div {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip dt {
  color: #fff;
  font-weight: 850;
  line-height: 1.1;
}

.trust-strip dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-media {
  position: relative;
}

.hero-media .carousel {
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.hero-media .carousel-slide img {
  aspect-ratio: 5 / 3.5;
}

.hero-badge {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
}

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

.hero-badge span {
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading p {
  margin: 0.85rem auto 0;
  color: var(--text-muted);
  max-width: 42rem;
}

.service-showcase {
  background: linear-gradient(180deg, #fff 0%, #f5f8f2 100%);
}

.featured-services,
.services-grid,
.proof-grid {
  display: grid;
  gap: var(--space-md);
}

.feature-card,
.service-card {
  display: grid;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 167, 32, 0.75);
  box-shadow: 0 26px 60px rgba(15, 61, 37, 0.18);
}

.feature-card img,
.service-card__media img {
  width: 100%;
  height: 100%;
  min-height: 13rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--transition);
}

.feature-card:hover img,
.service-card:hover img {
  transform: scale(1.035);
}

.feature-card__body,
.service-card__body {
  display: block;
  padding: 1.25rem;
}

.feature-card__body strong,
.service-card h2 {
  display: block;
  margin: 0;
  color: var(--green-dark);
  font-size: 1.22rem;
  line-height: 1.2;
}

.feature-card__body span,
.service-card p {
  display: block;
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.proof-section {
  background:
    linear-gradient(135deg, rgba(15, 61, 37, 0.95), rgba(35, 118, 61, 0.88)),
    url("https://in8vowk2nnlu17j8.public.blob.vercel-storage.com/assets/photos/20200827_113457_05.jpg") center / cover;
  background-attachment: fixed, fixed;
}

.proof-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-strong);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--gold);
  background:
    radial-gradient(circle at 12% 10%, rgba(210, 167, 32, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.proof-card:hover {
  border-color: rgba(210, 167, 32, 0.45);
  box-shadow: 0 28px 80px rgba(9, 39, 25, 0.28);
  transform: translateY(-5px);
}

.proof-card > * {
  position: relative;
  z-index: 1;
}

.proof-card--dark {
  background: rgba(9, 39, 25, 0.86);
  color: #fff;
}

.proof-card h3 {
  margin: 0 0 0.45rem;
  color: var(--green-dark);
  font-size: 1.35rem;
}

.proof-card--dark h3 {
  color: #fff;
}

.proof-card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.proof-card--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-card--dark a {
  color: var(--gold-light);
}

.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    linear-gradient(135deg, rgba(238, 247, 240, 0.98), rgba(255, 255, 255, 0.92)),
    url("https://in8vowk2nnlu17j8.public.blob.vercel-storage.com/assets/photos/taille%20d'un%20tilleul.jpg") center / cover;
  background-attachment: fixed, fixed;
}

.page-header h1 {
  font-size: clamp(2.2rem, 6vw, 4.25rem);
  line-height: 1;
}

.page-header p {
  max-width: 44rem;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.page-header-grid {
  display: grid;
  gap: var(--space-md);
  align-items: end;
}

.page-header-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(15, 61, 37, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.page-header-panel strong {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.page-header-panel span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.service-card__media {
  display: block;
  overflow: hidden;
  background: var(--green-light);
}

.service-card__label {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card__cta {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--green-dark);
  font-weight: 800;
}

.service-card__cta::after {
  content: " \2192";
  color: var(--copper);
}

.section--cta {
  padding-top: 0;
}

.cta-band {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cta-band h2,
.cta-band p {
  margin: 0;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1;
}

.cta-band p:not(.eyebrow) {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 44rem;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(251, 251, 246, 0.98), rgba(238, 247, 240, 0.9)),
    url("https://in8vowk2nnlu17j8.public.blob.vercel-storage.com/assets/logo/Logo_EmondTR.jpg") right 8vw center / 18rem auto no-repeat;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://in8vowk2nnlu17j8.public.blob.vercel-storage.com/assets/photos/20200903_105450.jpg") center / cover fixed;
  opacity: 0.08;
  pointer-events: none;
}

.reviews-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.3rem;
}

.reviews-summary {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(15, 61, 37, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.reviews-logo {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 61, 37, 0.14);
}

.reviews-logo img {
  width: 3.7rem;
  height: 3.7rem;
  object-fit: contain;
}

.reviews-summary h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.reviews-score {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin: 0.65rem 0 0;
  color: var(--text-muted);
}

.reviews-score strong {
  color: var(--green-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.stars,
.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.btn--google {
  color: #fff;
  background: linear-gradient(180deg, var(--green-dark), var(--green-deep));
  border-color: var(--green-deep);
}

.btn--google:hover {
  color: #fff;
  background: linear-gradient(180deg, #1e5838, var(--green-dark));
}

.reviews-list {
  display: grid;
  gap: var(--space-md);
}

.review-card {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid rgba(15, 61, 37, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(15, 61, 37, 0.1);
}

.review-card blockquote {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.review-author {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9, 39, 25, 0.98), rgba(15, 61, 37, 0.98)),
    url("https://in8vowk2nnlu17j8.public.blob.vercel-storage.com/assets/photos/20200827_100330.jpg") center / cover;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("https://in8vowk2nnlu17j8.public.blob.vercel-storage.com/assets/logo/Logo_EmondTR.jpg") right 8vw center / 13rem auto no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid--enhanced,
.footer-grid {
  align-items: start;
}

.footer-grid strong {
  color: #fff;
  font-size: 1.05rem;
}

.footer-grid p {
  margin: 0.55rem 0 0;
}

.footer-grid a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-icon,
.footer-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.footer-icon {
  display: inline-grid;
  place-items: center;
  color: var(--gold-light);
}

.footer-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 4.9rem;
    justify-content: flex-start;
    gap: 0.55rem;
    padding-left: 0.25rem;
    padding-right: calc(0.75rem + env(safe-area-inset-right, 0px));
  }

  .logo-link {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-link img {
    height: 58px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .brand-kicker {
    font-size: 0.66rem;
  }

  .urgent-call {
    margin-left: auto;
    flex-shrink: 1;
    min-width: 0;
    max-width: 58%;
    padding: 0.55rem 0.65rem;
    font-size: 0.8rem;
  }

  .urgent-call__icon {
    display: none;
  }

  .menu-toggle {
    flex: 0 0 auto;
    margin-inline-end: 0.1rem;
  }

  .site-nav.is-open {
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
  }

  .nav-list a,
  .nav-services summary {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

@media (max-width: 520px) {
  .header-inner {
    gap: 0.45rem;
    padding-left: 0.15rem;
    padding-right: calc(0.65rem + env(safe-area-inset-right, 0px));
  }

  .logo-link {
    gap: 0.45rem;
  }

  .logo-link img {
    height: 48px;
  }

  .logo-text {
    font-size: 0.92rem;
  }

  .brand-kicker {
    font-size: 0.56rem;
    line-height: 1.1;
  }

  .urgent-call {
    padding: 0.5rem 0.55rem;
    font-size: 0.76rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    margin-inline-end: 0.1rem;
  }
}

@media (min-width: 640px) {
  .brand-kicker {
    display: block;
  }

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

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

@media (min-width: 768px) {
  .hero-copy {
    padding-left: 5rem;
    padding-right: 0;
  }

  .nav-list a,
  .nav-services summary {
    padding: 0.6rem 0.75rem;
  }

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

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

  .page-header-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.7fr);
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .reviews-summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

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

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce), (max-width: 767px) {
  .hero,
  .proof-section,
  .page-header {
    background-attachment: scroll, scroll;
  }

  .reviews-section::before {
    background-attachment: scroll;
  }
}
