:root {
  --bg: #f0ebe4;
  --surface: #ffffff;
  --surface-alt: #edf4e7;
  --text: #2a2219;
  --muted: #4f4335;
  --primary: #73b955;
  --primary-dark: #5f9b46;
  --accent: #664a31;
  --accent-soft: #8a6b4d;
  --warm-cream: #f5eee6;
  --warm-sand: #e8ddd0;
  --green-band-top: #d4e6c4;
  --green-band-bottom: #c0d9ad;
  --border: #d8d2cb;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(44, 35, 25, 0.12);
  --section-divider: rgba(102, 74, 49, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -8%, rgba(255, 255, 255, 0.9) 0, transparent 42%),
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(102, 74, 49, 0.06), transparent 50%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(1400px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-top: 0;
  background: rgba(252, 250, 247, 0.9);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(102, 74, 49, 0.12);
  box-shadow: 0 2px 20px rgba(14, 20, 14, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0.6rem 0;
}

.brand-logo img {
  display: block;
  max-height: 80px;
  width: auto;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

@media (min-width: 861px) {
  .site-header .header-inner {
    margin-inline: auto;
  }
}

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

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  background: rgba(102, 74, 49, 0.06);
}

.site-nav a.is-active:not(.nav-cta) {
  color: var(--text);
  background: rgba(115, 185, 85, 0.12);
}

.site-nav a.is-active:not(.nav-cta)::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary), #9dd483);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.site-nav .nav-cta {
  background: linear-gradient(160deg, #73b955, #5ea645);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  margin-left: 0.5rem;
  box-shadow: 0 8px 20px rgba(76, 141, 51, 0.3);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: linear-gradient(160deg, #6ab14d, #4f9737);
  color: #fff;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.header-phone:hover {
  background: rgba(102, 74, 49, 0.07);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  width: 44px;
  height: 40px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.hero {
  padding: 7.3rem 0 5rem;
  position: relative;
  overflow: clip;
  min-height: 680px;
  display: grid;
  align-items: center;
  box-shadow: 0 8px 32px rgba(14, 20, 14, 0.18);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.hero .container.hero-content {
  margin-inline: auto;
}

.hero-rge-badge {
  position: relative;
  flex-shrink: 0;
  align-self: flex-start;
  order: 2;
  width: 160px;
  border-radius: 14px;
  padding: 0.55rem 0.55rem 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 20px 40px rgba(18, 16, 12, 0.28),
    0 0 0 1px rgba(115, 185, 85, 0.22);
  backdrop-filter: blur(8px);
  animation: rge-float 3.8s ease-in-out infinite;
}

.hero-rge-badge img {
  display: block;
  width: 100%;
  border-radius: 9px;
}

.hero-rge-badge p {
  margin: 0.45rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #355826;
  letter-spacing: 0.04em;
}

@keyframes rge-float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-6px) translateX(-2px);
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 16, 10, 0.72) 0%, rgba(14, 20, 14, 0.38) 55%, rgba(14, 20, 14, 0.08) 100%),
    url("../media/hero/heromaguet.png") center/cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}

.hero-main {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  flex: 1 1 0;
  max-width: 680px;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 18ch;
  letter-spacing: -0.015em;
}

.lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48ch;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.company-highlight {
  color: #9be178;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.intro-rge {
  background: #ffffff;
  border: 1px solid rgba(216, 210, 203, 0.7);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.rge-logo-large {
  width: min(280px, 100%);
  display: block;
  margin: 0 auto 0.8rem;
}

.compact-cards .card p {
  margin: 0;
}

.section {
  padding: 5.25rem 0;
}

.section:not(.section-light):not(.section-alt):not(.section-warm) {
  background: linear-gradient(180deg, #faf8f4 0%, #f2ebe3 100%);
  border-top: 1px solid rgba(102, 74, 49, 0.08);
  border-bottom: 1px solid rgba(102, 74, 49, 0.06);
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf3 72%, #eef6e8 100%);
  border-top: none;
  border-bottom: 1px solid rgba(115, 185, 85, 0.14);
  box-shadow: inset 0 4px 18px rgba(255, 255, 255, 0.9);
}

.section-alt {
  background:
    radial-gradient(ellipse 115% 70% at 50% -25%, rgba(115, 185, 85, 0.2), transparent 52%),
    linear-gradient(180deg, var(--green-band-top) 0%, var(--green-band-bottom) 100%);
  border-top: 1px solid rgba(76, 120, 58, 0.28);
  border-bottom: 1px solid rgba(76, 120, 58, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.section-warm {
  background:
    radial-gradient(ellipse 100% 55% at 50% 0%, rgba(102, 74, 49, 0.09), transparent 58%),
    linear-gradient(180deg, var(--warm-cream) 0%, var(--warm-sand) 55%, #dfd2c3 100%);
  border-top: 1px solid rgba(102, 74, 49, 0.22);
  border-bottom: 1px solid rgba(102, 74, 49, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

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

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

.card {
  background: linear-gradient(160deg, #ffffff, #fdfefb);
  border: 1px solid rgba(216, 210, 203, 0.72);
  border-radius: var(--radius);
  padding: 1.15rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(44, 35, 25, 0.14);
  border-color: #d4c8bc;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(141, 191, 115, 0.32);
  background:
    radial-gradient(circle at 100% 0, rgba(115, 185, 85, 0.1), transparent 42%),
    linear-gradient(160deg, #ffffff, #f7fbf4 78%);
  box-shadow:
    0 12px 24px rgba(76, 141, 51, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -65% auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(115, 185, 85, 0.2), rgba(115, 185, 85, 0));
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(115, 185, 85, 0.6);
  box-shadow:
    0 18px 34px rgba(76, 141, 51, 0.18),
    0 0 0 3px rgba(115, 185, 85, 0.12);
}

.section-intro {
  margin: 0 0 1rem;
  max-width: 70ch;
  color: var(--muted);
}

.section-alt .section-intro {
  color: #3a4530;
}

.section-warm .section-intro {
  color: #524638;
}

.section h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  color: #231a12;
  letter-spacing: -0.02em;
}

.section h2::after {
  content: "";
  display: block;
  width: 2.85rem;
  height: 3px;
  margin-top: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.section-alt h2::after {
  background: linear-gradient(90deg, #4a6b38 0%, var(--primary) 55%, var(--accent) 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  border: 1px solid transparent;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(160deg, #73b955, #5ca343);
  color: #fff;
  box-shadow: 0 10px 24px rgba(76, 141, 51, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(160deg, #68b04b, #4f9737);
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 14px 30px rgba(76, 141, 51, 0.34),
    0 0 0 4px rgba(115, 185, 85, 0.16);
}

.btn-ghost {
  border-color: #6ab14d;
  background: rgba(255, 255, 255, 0.9);
  color: #4c8d33;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #eef8e8;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0)
  );
  transition: left 0.55s ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  left: 120%;
}

.cta-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.audiences span {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

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

.realisation-card {
  min-height: 118px;
  padding: 1.25rem;
}

.realisation-card h3 {
  margin-bottom: 0.65rem;
}

.realisation-card p {
  margin: 0;
}

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

.project-realisation-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 1.25rem 1.25rem 1.1rem;
  border: 1px solid rgba(141, 191, 115, 0.32);
  background:
    radial-gradient(circle at 100% 0, rgba(115, 185, 85, 0.12), transparent 42%),
    linear-gradient(160deg, #ffffff, #f7fbf4 78%);
  box-shadow:
    0 12px 24px rgba(76, 141, 51, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.project-realisation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(115, 185, 85, 0.6);
  box-shadow:
    0 18px 34px rgba(76, 141, 51, 0.18),
    0 0 0 3px rgba(115, 185, 85, 0.12);
}

.project-realisation-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #355826;
  letter-spacing: -0.02em;
}

.project-carousel {
  position: relative;
  margin: 0 -0.15rem 0.65rem;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(141, 191, 115, 0.35);
  background: #0d1a0a;
  outline: none;
}

.carousel-viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(115, 185, 85, 0.45);
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

.carousel-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #355826;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.carousel-btn:hover {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.carousel-prev {
  left: 0.45rem;
}

.carousel-next {
  right: 0.45rem;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(53, 88, 38, 0.22);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.carousel-dot:hover {
  background: rgba(53, 88, 38, 0.45);
}

.carousel-dot.is-active {
  background: var(--primary);
  transform: scale(1.25);
}

.project-realisation-caption {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 500;
}

#services .realisations-grid {
  gap: 1.15rem;
}

#services .realisation-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(141, 191, 115, 0.32);
  background:
    radial-gradient(circle at 100% 0, rgba(115, 185, 85, 0.12), transparent 42%),
    linear-gradient(160deg, #ffffff, #f7fbf4 78%);
  box-shadow:
    0 12px 24px rgba(76, 141, 51, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

#services .realisation-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -65% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(115, 185, 85, 0.22), rgba(115, 185, 85, 0));
  pointer-events: none;
}

#services .realisation-card:hover {
  transform: translateY(-6px);
  border-color: rgba(115, 185, 85, 0.6);
  box-shadow:
    0 18px 34px rgba(76, 141, 51, 0.18),
    0 0 0 3px rgba(115, 185, 85, 0.12);
}

#services .feature-card::after {
  width: 180px;
  height: 180px;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  color: #4c8d33;
}

.service-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #73b955;
  box-shadow: 0 0 0 5px rgba(115, 185, 85, 0.2);
}

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

.supplier-card {
  text-align: center;
  padding: 1.1rem 0.85rem 1rem;
  background: linear-gradient(160deg, #ffffff, #faf7f2);
  border: 1px solid rgba(102, 74, 49, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(44, 35, 25, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.supplier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 74, 49, 0.28);
  box-shadow: 0 14px 28px rgba(44, 35, 25, 0.1);
}

.supplier-logo-slot {
  display: grid;
  place-items: center;
  min-height: 80px;
  margin-bottom: 0.65rem;
  padding: 0.5rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(216, 210, 203, 0.8);
}

.supplier-logo-slot img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.supplier-name {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.supplier-role {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

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

.contact-info-card {
  padding: 1.35rem;
}

.contact-info-card p {
  margin-top: 0;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.contact-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #73b955;
  flex: 0 0 auto;
  box-shadow: 0 0 0 5px rgba(115, 185, 85, 0.16);
  transform: translateY(-1px);
}

.testimonial-card p {
  margin: 0 0 0.8rem;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.55rem;
}

.testimonial-meta {
  margin: 0;
  font-weight: 700;
  color: #4c8d33;
  font-size: 0.92rem;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: #1877f2;
  border: 1.5px solid #1877f2;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.facebook-link:hover {
  background: #1877f2;
  color: #fff;
}

.process-card {
  min-height: 175px;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  max-width: 640px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #d6ecc9;
  border-color: var(--primary);
}

.form-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.form-reassurance span {
  border: 1px solid rgba(141, 191, 115, 0.45);
  background: #f3f9ee;
  color: #3f6e2f;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-feedback {
  min-height: 1.5rem;
  color: var(--muted);
}

.legal-section {
  background: #f8faf6;
}

.legal-grid {
  display: grid;
  gap: 1rem;
}

.legal-card p {
  margin: 0 0 0.55rem;
}

.site-footer {
  border-top: 1px solid rgba(102, 74, 49, 0.28);
  padding: 1.65rem 0;
  background: linear-gradient(180deg, #e8dfd4 0%, #d9cdc0 55%, #cfc2b3 100%);
  color: #2a2118;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--accent);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mobile-sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  min-width: 220px;
  display: inline-flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .intro-grid,
  .cards-grid,
  .cards-grid-3,
  .projects-gallery,
  .contact-layout,
  .suppliers-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 4%;
    top: 70px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: min(280px, 90%);
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
  }

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

  .hero {
    padding-top: 6rem;
  }

  .hero .container.hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-rge-badge {
    order: 0;
    animation: none;
    width: 90px;
    align-self: flex-end;
  }

  .lead {
    font-size: 1.05rem;
  }

  .site-header {
    top: 0;
    padding-top: 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo img {
    max-height: 56px;
  }

  body {
    padding-bottom: 4.7rem;
  }

  .mobile-sticky-cta {
    right: 50%;
    transform: translateX(50%) translateY(12px);
    min-width: min(92vw, 360px);
  }

  .mobile-sticky-cta.is-visible {
    transform: translateX(50%) translateY(0);
  }

}
