:root {
  --green: #155930;
  --green-hover: #1a6e3c;
  --green-rgb: 21, 89, 48;
  --leaf: var(--green);
  --soft: #2e6b4f;
  --forest: #0c291c;
  --forest-rgb: 12, 41, 28;
  --frame: #155930;
  --cream: #f3f2ee;
  --white: #fffcf7;
  --gold: #155930;
  --gold-hover: #1a6e3c;
  --gold-rgb: 21, 89, 48;
  --gold-line: color-mix(in srgb, var(--gold) 82%, white);
  --holly: #155930;
  --green-light: #c5ddca;
  --text: #1a1a1a;
  --text-soft: #4a4a4a;
  --muted: #6b6b6b;
  --charcoal: var(--text);
  --line: rgba(15, 61, 46, 0.1);
  --max: 76rem;
  --nav-h: 5.75rem;
  --radius: 14px;
  --photo-radius: 0.35rem;
  --font: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --script: "Playfair Display", Georgia, serif;
  --shadow: 0 10px 30px rgba(15, 61, 46, 0.06);
  --shadow-lg: 0 22px 50px rgba(15, 61, 46, 0.1);
  --btn-h: 3.1rem;
  --btn-w: 12.75rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--cream);
  overflow-x: hidden;
  scroll-padding-top: 6rem;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--text);
  background:
    radial-gradient(1100px 640px at 8% 6%, rgba(197, 221, 202, 0.42), transparent 58%),
    radial-gradient(900px 520px at 92% 28%, rgba(21, 89, 48, 0.07), transparent 52%),
    radial-gradient(800px 480px at 70% 88%, rgba(197, 221, 202, 0.28), transparent 55%),
    var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--holly);
  text-shadow: 0 0 18px rgba(21, 89, 48, 0.18);
}

.section-lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 36rem;
  line-height: 1.75;
}

.section { padding: 6.5rem 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

.script {
  font-family: var(--script);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  height: var(--btn-h);
  min-width: var(--btn-w);
  padding: 0 1.35rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  line-height: 1;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.38) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover::after { transform: translateX(130%); }

.btn-primary {
  background: var(--green);
  color: #f3f2ee;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 8px 22px rgba(21, 89, 48, 0.32),
    0 0 0 4px rgba(21, 89, 48, 0.14);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--green-hover);
  color: #f3f2ee;
  box-shadow:
    0 16px 32px -10px rgba(21, 89, 48, 0.5),
    0 0 0 5px rgba(21, 89, 48, 0.18);
}

.btn-primary:active {
  transform: translateY(0);
  background: #0e3d24;
  box-shadow:
    0 6px 16px rgba(21, 89, 48, 0.28),
    0 0 0 3px rgba(21, 89, 48, 0.12);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  pointer-events: none;
}

.btn-contact::before,
.btn-quote::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 0.92em;
  height: 0.92em;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: var(--btn-icon) center / contain no-repeat;
  mask: var(--btn-icon) center / contain no-repeat;
}

.btn-contact {
  --btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.btn-quote {
  --btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19 3h-4.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8 9h8v2H8V9zm0 4h8v2H8v-2zm0 4h5v2H8v-2z'/%3E%3C/svg%3E");
}

.btn-outline {
  background: #fff;
  color: var(--holly);
  border-color: var(--holly);
  box-shadow:
    0 8px 20px rgba(21, 89, 48, 0.12),
    0 0 0 4px rgba(21, 89, 48, 0.08);
}

.btn-outline:hover {
  background: var(--holly);
  color: #f3f2ee;
  border-color: var(--holly);
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px -10px rgba(21, 89, 48, 0.45),
    0 0 0 5px rgba(21, 89, 48, 0.14);
}

.btn-text {
  background: none;
  border: 0;
  color: var(--green);
  min-width: 0;
  height: auto;
  padding-left: 0.2rem;
  box-shadow: none;
  overflow: visible;
  font-weight: 700;
}
.btn-text::after { display: none; }

.btn-text:hover {
  background: none;
  color: var(--green-hover);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-sm {
  height: var(--btn-h);
  min-width: var(--btn-w);
  padding: 0 1.35rem;
  font-size: 0.82rem;
}

/* ——— Header ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), color-mix(in srgb, var(--cream) 86%, white)),
    radial-gradient(520px 120px at 8% 0%, rgba(197, 221, 202, 0.28), transparent 70%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--cream) 82%, var(--line));
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  padding-block: 0.7rem;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 4.05rem;
  width: auto;
  max-width: min(19rem, 58vw);
  display: block;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.has-sub { position: relative; padding-bottom: 1.1rem; margin-bottom: -1.1rem; }
.has-sub > button {
  background: none;
  border: 0;
  font: inherit;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0;
}

.has-sub > button::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}

.has-sub.is-on > button,
.has-sub:hover > button { color: var(--green); }

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(15, 61, 46, 0.12);
  z-index: 90;
}

.submenu-mega {
  display: none;
  grid-template-columns: repeat(5, minmax(9.5rem, 1fr));
  align-items: start;
  gap: 0;
  width: min(58rem, calc(100vw - 3rem));
  padding: 1.35rem 0.5rem 1.4rem;
}

.has-sub:hover .submenu,
.has-sub.open .submenu { display: grid; }

.submenu-mega > div {
  padding: 0 1.15rem;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
}

.submenu-mega > div:first-child { border-left: 0; }

.submenu a {
  padding: 0.36rem 0.45rem;
  border-radius: 0.45rem;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, padding 0.22s ease;
}

.submenu-head {
  display: block;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
  padding: 0 0.2rem 0.55rem !important;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.submenu a:hover {
  background: var(--holly);
  color: #f3f2ee;
  padding-left: 0.65rem;
}
.submenu-head:hover {
  background: none !important;
  color: var(--holly) !important;
  padding-left: 0.2rem !important;
}

.nav-actions { display: none; align-items: center; gap: 1.15rem; }
.nav-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}
.nav-phone span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
}

.menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.icon-svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.55rem 0 1.15rem;
  border-top: 1px solid var(--line);
}

.mobile-menu.open { display: flex; }

.mobile-menu > a:not(.btn),
.mobile-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  list-style: none;
  border-radius: 0.45rem;
  border: 0;
  background: none;
  width: 100%;
  text-align: left;
  transition: background 0.22s ease, color 0.22s ease, padding 0.22s ease;
}

.mobile-menu > a.btn {
  justify-content: center;
  margin-top: 0.85rem;
  width: 100%;
}

.mobile-menu summary {
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary::marker { content: ""; }

.mobile-menu summary::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
  transition: transform 0.22s ease;
}

.mobile-menu details[open] summary::after {
  transform: rotate(225deg);
  opacity: 1;
}

.mobile-menu > a:not(.btn):hover,
.mobile-menu > a:not(.btn).active,
.mobile-menu summary:hover,
.mobile-menu details[open] summary {
  background: var(--holly);
  color: #f3f2ee;
  padding-left: 0.85rem;
}

.mobile-services-panel {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  margin: 0.25rem 0 0.45rem;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 14px 32px rgba(15, 61, 46, 0.08);
}

.mobile-services-panel a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0.62rem 0.7rem;
  border-radius: 0.45rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
  background: none;
  transition: background 0.22s ease, color 0.22s ease, padding 0.22s ease;
}

.mobile-services-panel a::after {
  content: "";
  margin-left: auto;
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.4;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-services-panel a:hover,
.mobile-services-panel a:active {
  background: var(--holly);
  color: #f3f2ee;
  padding-left: 0.9rem;
}

.mobile-services-panel a:hover::after,
.mobile-services-panel a:active::after {
  opacity: 1;
  transform: rotate(-45deg) translateX(2px);
}

@media (min-width: 1180px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .menu-btn, .mobile-menu { display: none !important; }
}

/* ——— Home hero: one photograph ——— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(86vh, 780px);
  background: #1a2a18;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 72%, rgba(21, 89, 48, 0.32), transparent 46%),
    linear-gradient(
      180deg,
      rgba(22, 23, 25, 0.42) 0%,
      rgba(22, 23, 25, 0.28) 46%,
      rgba(243, 242, 238, 0.22) 100%
    ),
    linear-gradient(
      90deg,
      rgba(22, 23, 25, 0.82) 0%,
      rgba(22, 23, 25, 0.58) 28%,
      rgba(22, 23, 25, 0.28) 52%,
      rgba(22, 23, 25, 0.08) 72%,
      transparent 86%
    );
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 2.5rem, 34rem);
  margin-left: max(1.6rem, calc((100vw - var(--max)) / 2));
  min-height: min(86vh, 780px);
  padding: 3.5rem 1rem 6.5rem 0;
}

.hero-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 12px rgba(12, 41, 28, 0.45);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #f6f1e8;
}

.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--green-light);
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 18px rgba(12, 41, 28, 0.4),
    0 0 28px rgba(197, 221, 202, 0.45);
}

.hero-lead {
  margin-top: 1.15rem;
  max-width: 26rem;
  color: rgba(246, 241, 232, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1.6rem;
  margin-top: 1.85rem;
}



.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #f6f1e8;
  border-bottom: 1.5px solid var(--green-light);
  padding-bottom: 0.12rem;
  line-height: 1.2;
}

.hero-link:hover { color: var(--green-light); border-color: var(--green-light); }

.hero-script-img {
  position: absolute;
  right: 4.5%;
  top: 24%;
  width: min(16rem, 21vw);
  height: auto;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  transform: rotate(-12deg);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.55));
}

.hero-badge {
  position: absolute;
  right: 7.5%;
  bottom: 17%;
  width: 8.35rem;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(80px, 12vw, 160px);
  color: var(--cream);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 699px) {
  .hero { min-height: 92vh; }
  .hero-copy {
    width: min(100% - 2rem, 36rem);
    margin-left: 1.15rem;
    min-height: 92vh;
    padding: 3rem 0 8rem;
  }
  .hero-badge { width: 6.2rem; right: 4%; bottom: 12%; }
  .hero-script-img { width: 9rem; right: 3.5%; top: 20%; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(22, 23, 25, 0.58) 0%, rgba(22, 23, 25, 0.34) 44%, rgba(243, 242, 238, 0.24) 100%),
      linear-gradient(180deg, rgba(22, 23, 25, 0.42) 0%, rgba(22, 23, 25, 0.18) 56%, transparent 78%);
  }
}

/* ——— Trust line under the hero wave ——— */
.trust-bar {
  --wave-h: clamp(80px, 12vw, 160px);
  margin-top: calc(-1 * var(--wave-h));
  height: var(--wave-h);
  position: relative;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 96C220 20 420 150 720 86C1020 22 1240 130 1440 48V160H0Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 96C220 20 420 150 720 86C1020 22 1240 130 1440 48V160H0Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: repeat;
}

.trust-path-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.trust-pack {
  position: absolute;
  inset: 0;
}

.trust-glyph {
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(0.92rem, 0.7rem + 0.65vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1;
  white-space: pre;
  transform-origin: center center;
  will-change: transform;
}

.trust-glyph.is-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.trust-glyph.is-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 700px) {
  .trust-glyph {
    letter-spacing: 0.22em;
    font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  }
  .trust-glyph.is-icon {
    width: 1.05rem;
    height: 1.05rem;
  }
}

/* ——— Service tiles ——— */
.service-layout {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .service-layout { grid-template-columns: 0.82fr 1.18fr; gap: 3.2rem; }
  .service-layout > div:first-child { margin-top: -2cm; }
  .tile-grid { margin-top: -1.6cm; }
}

.service-layout .btn-outline { border-radius: 999px; }

.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  position: relative;
  z-index: 3;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--photo-radius);
  min-height: 8.5rem;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.tile:hover {
  transform: translateY(-3px);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(197, 221, 202, 0.45),
    0 0 28px rgba(21, 89, 48, 0.22);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.tile:hover img { transform: scale(1.05); }

.tile span {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(15, 20, 16, 0.55) 100%);
}

.tile-wide { grid-column: 1 / -1; min-height: 12rem; }

@media (min-width: 700px) {
  .tile-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 15.5rem 15.5rem;
    gap: 0.95rem;
  }
  .tile-wide,
  .tile-grid > .tile:not(.tile-wide) {
    grid-column: span 1;
    min-height: 0;
    height: 100%;
  }
}

.about-band { padding-top: 2rem; padding-bottom: 1rem; }
.about-inner { max-width: 40rem; }

.home { position: relative; }
.home-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.home-wash .contact-leaf-a { top: 18%; }
.home-wash .contact-leaf-b { top: 32%; left: 8%; }
.home-wash .contact-leaf-c { display: none; }
.home-wash .contact-leaf-d { display: none; }
.home .hero,
.home .trust-bar,
.home .about-story,
.home .why-band,
.home .section,
.home .cta-ready,
.home .process-strip,
.home .finale,
.home .reviews-band,
.home .site-footer {
  position: relative;
  z-index: 1;
}
.home .trust-bar { z-index: 3; }

.about-story {
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
}
.about-story-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
  overflow: visible;
}
@media (min-width: 900px) {
  .about-story-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}
.about-story-grid .section-lead { margin-bottom: 1rem; }
.about-story-grid p + p {
  color: var(--text-soft);
  max-width: 36rem;
  line-height: 1.75;
}
.about-story-photo {
  --shadow: clamp(0.55rem, 2.6vw, 1.25rem);
  position: relative;
  border-radius: var(--photo-radius);
  overflow: visible;
  padding: 0 var(--shadow) var(--shadow) 0;
}
.about-story-photo::before {
  content: "";
  position: absolute;
  top: var(--shadow);
  left: var(--shadow);
  right: 0;
  bottom: 0;
  border-radius: var(--photo-radius);
  background-color: var(--holly);
  background-image: url("../image/leaf-vein.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  z-index: 0;
}
.about-story-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--photo-radius);
  display: block;
}

.why-band {
  position: relative;
  overflow: hidden;
  padding: 4.6rem 0 5.4rem;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(197, 221, 202, 0.28), transparent 52%),
    radial-gradient(ellipse at 92% 100%, rgba(12, 41, 28, 0.45), transparent 48%),
    linear-gradient(165deg, #1a6e3c 0%, var(--holly) 42%, var(--forest) 100%);
}
.why-band::before {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at 28% 36%, rgba(197, 221, 202, 0.2), transparent 44%);
  animation: premium-breathe 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.why-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 36%, rgba(197, 221, 202, 0.22) 50%, transparent 64%);
  background-size: 220% 100%;
  animation: premium-sheen 11s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.why-band .contact-leaf {
  background: var(--green-light);
  opacity: 0.12;
}
.why-band .container { position: relative; z-index: 1; }
.why-band .eyebrow { color: var(--green-light); }
.why-band .section-title { color: #f6f1e8; }
.why-band .section-title em {
  color: var(--green-light);
  text-shadow: 0 0 22px rgba(197, 221, 202, 0.5);
}
.why-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}
.why-card {
  background: linear-gradient(180deg, #fffcf7 0%, #f3f2ee 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 1.1rem;
  padding: 1.55rem 1.45rem 1.7rem;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(197, 221, 202, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 44px -16px rgba(12, 41, 28, 0.38),
    0 0 0 1px rgba(197, 221, 202, 0.7),
    0 0 28px rgba(21, 89, 48, 0.18);
}
.why-leaf {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 1.05rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #2a8a4c, var(--holly) 58%);
  box-shadow:
    0 0 0 6px rgba(243, 242, 238, 0.72),
    0 8px 18px rgba(21, 89, 48, 0.28),
    0 0 16px rgba(21, 89, 48, 0.28);
  transition: transform 0.4s ease, background 0.35s ease, box-shadow 0.4s ease;
}
.why-leaf::before {
  content: "";
  width: 52%;
  height: 52%;
  background: #f3f2ee;
  -webkit-mask: url("../image/logo-leaf.png") center / contain no-repeat;
  mask: url("../image/logo-leaf.png") center / contain no-repeat;
  transition: transform 0.45s ease;
}
.why-card:hover .why-leaf {
  transform: translateY(-2px) scale(1.08);
  background:
    radial-gradient(circle at 32% 28%, #1a6e3c, var(--forest) 62%);
  box-shadow:
    0 0 0 7px rgba(243, 242, 238, 0.8),
    0 12px 22px -8px rgba(12, 41, 28, 0.38),
    0 0 22px rgba(197, 221, 202, 0.45);
}
.why-card:hover .why-leaf::before {
  transform: rotate(-22deg);
}
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}
.why-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-band { padding-top: 5rem; padding-bottom: 5.5rem; background: transparent; }
.faq-band .section-title { margin-bottom: 1.6rem; }
.faq-band .faq-list { max-width: 46rem; }

#services { padding-bottom: 4.2rem; }
.service-layout > div:first-child { position: relative; z-index: 3; }
.tile-grid { z-index: 3; }

/* ——— Dark green wave band ——— */
.finale {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(197, 221, 202, 0.2), transparent 48%),
    radial-gradient(ellipse at 8% 88%, rgba(21, 89, 48, 0.45), transparent 42%),
    linear-gradient(165deg, #163d28 0%, var(--forest) 48%, #081910 100%);
  color: #fff;
  padding: 7.4rem 0 5.6rem;
  margin-top: -7.2rem;
}
.finale::before {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at 78% 32%, rgba(197, 221, 202, 0.16), transparent 42%);
  animation: premium-breathe 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.finale::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 36%, rgba(197, 221, 202, 0.16) 50%, transparent 64%);
  background-size: 220% 100%;
  animation: premium-sheen 13s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.finale .contact-leaf {
  background: var(--green-light);
  opacity: 0.12;
  z-index: 0;
}

.finale-grid {
  display: grid;
  gap: 2.2rem;
  position: relative;
  z-index: 2;
  align-items: center;
}

@media (min-width: 900px) {
  .finale-grid { grid-template-columns: 0.95fr 1.2fr; gap: 2.5rem; }
  .finale-copy { padding-left: 0; }
}

.finale-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.finale-copy h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--green-light);
  text-shadow: 0 0 24px rgba(197, 221, 202, 0.5);
}

.finale-copy p {
  color: rgba(255,255,255,0.78);
  max-width: 26rem;
  margin-top: 0.85rem;
  line-height: 1.75;
  font-size: 0.98rem;
}

.wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(90px, 13vw, 160px);
  color: var(--cream);
  display: block;
  pointer-events: none;
  z-index: 1;
}

.cta-ready {
  display: grid;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.cta-ready-photo {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-radius: var(--photo-radius);
}

.cta-ready-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  min-height: 18rem;
}

.service-layout .btn { margin-top: 1.5rem; }

.cta-ready-copy {
  position: relative;
  padding: 3rem 1.6rem 3.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse at 88% 18%, rgba(197, 221, 202, 0.28), transparent 58%);
}

.cta-ready-copy h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 14ch;
}

.cta-ready-copy h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--holly);
}

.cta-ready-copy p {
  color: var(--text-soft);
  max-width: 28rem;
  margin: 0.9rem 0 1.25rem;
  line-height: 1.7;
}

.cta-ready-copy .btn { align-self: flex-start; }

@media (min-width: 800px) {
  .cta-ready {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 26rem;
  }
  .cta-ready-copy { padding: 4.2rem 3.4rem 4.2rem 2.4rem; }
  .cta-ready-photo {
    min-height: 26rem;
    border-radius: var(--photo-radius);
  }
  .cta-ready-photo img { min-height: 26rem; }
}

.reviews-band {
  padding: 4.5rem 0 5.5rem;
  background: transparent;
}

.reviews-band .section-title { margin-bottom: 2rem; }

.reviews-grid {
  display: grid;
  gap: 1.1rem;
}

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

.review-card {
  margin: 0;
  background: linear-gradient(180deg, #fffcf7 0%, #f3f2ee 100%);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.6rem 1.45rem 1.55rem;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(197, 221, 202, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 44px -16px rgba(12, 41, 28, 0.28),
    0 0 0 1px rgba(197, 221, 202, 0.55),
    0 0 24px rgba(21, 89, 48, 0.14);
}

.review-stars {
  color: var(--holly);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 12px rgba(21, 89, 48, 0.28);
}

.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.review-card footer {
  margin-top: auto;
  font-family: var(--font);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.review-card footer span {
  display: block;
  margin-top: 0.15rem;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.process-strip {
  position: relative;
  padding: 3.2rem 0 clamp(9.2rem, 15vw, 11.5rem);
  background: transparent;
}
.process-strip .section-title { margin-bottom: 0; }
.process-steps {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  margin: 2.1rem 0 0;
  padding: 0;
  position: relative;
}
.process-steps li {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.process-mark {
  display: grid;
  place-items: center;
  width: 3.05rem;
  height: 3.05rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #2a8a4c, var(--holly) 58%);
  box-shadow:
    0 0 0 7px var(--cream),
    0 8px 22px rgba(21, 89, 48, 0.32),
    0 0 18px rgba(21, 89, 48, 0.28);
  position: relative;
  z-index: 1;
  animation: premium-glow 4.8s ease-in-out infinite;
}
.process-steps li:nth-child(2) .process-mark { animation-delay: 0.7s; }
.process-steps li:nth-child(3) .process-mark { animation-delay: 1.4s; }
.process-mark::before {
  content: "";
  width: 52%;
  height: 52%;
  background: #f3f2ee;
  -webkit-mask: url("../image/logo-leaf.png") center / contain no-repeat;
  mask: url("../image/logo-leaf.png") center / contain no-repeat;
}
.process-num {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--holly);
}
.process-steps h3 {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.process-steps p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 22rem;
}
@media (min-width: 800px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.6rem;
  }
  .process-steps::before {
    content: "";
    position: absolute;
    top: 1.52rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--holly) 55%, var(--line)), transparent);
    box-shadow: 0 0 12px rgba(21, 89, 48, 0.22);
    z-index: 0;
  }
}
@media (max-width: 799px) {
  .process-steps li { padding-left: 4.1rem; }
  .process-mark {
    position: absolute;
    left: 0;
    top: 0;
  }
  .process-steps::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--holly) 55%, var(--line)), transparent);
    box-shadow: 0 0 12px rgba(21, 89, 48, 0.22);
    z-index: 0;
  }
}

.story-band {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: #fff;
  padding: 7.5rem 0 5.5rem;
}

.wave-top {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  width: 100%;
  height: clamp(170px, 26vw, 320px);
  color: var(--cream);
  display: block;
  pointer-events: none;
  z-index: 1;
}

.story-band .container {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .story-band .container { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}

.story-band h2 {
  font-family: var(--display);
  font-size: clamp(2.05rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.story-band p { color: rgba(255,255,255,0.78); max-width: 28rem; margin-top: 1rem; line-height: 1.8; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.stats > div {
  padding: 0.35rem 1.65rem;
  border-left: 1px solid rgba(255,255,255,0.28);
}

.stats > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.stats strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f6f1e8;
  text-shadow: 0 0 26px rgba(197, 221, 202, 0.42);
}

.stats span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.78);
}

.leaf-art {
  position: absolute;
  width: min(22vw, 11.5rem);
  height: auto;
  opacity: 0.82;
  pointer-events: none;
  z-index: 1;
}

.leaf-art-left {
  left: -0.15rem;
  top: 22%;
  transform: rotate(10deg);
  transform-origin: bottom center;
}

.leaf-art-right {
  right: -0.35rem;
  top: 16%;
  width: min(24vw, 12.5rem);
  transform: scaleX(-1) rotate(-6deg);
  transform-origin: bottom center;
}

@media (max-width: 699px) {
  .leaf-art-left { width: 5.8rem; top: 28%; }
  .leaf-art-right { width: 6.4rem; top: 22%; }
}

/* ——— Bottom CTA split ——— */
.cta-split {
  display: grid;
  background: var(--cream);
  position: relative;
}

.cta-split-photo {
  min-height: 16rem;
  position: relative;
  overflow: hidden;
}

.cta-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.cta-edge {
  display: none;
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: clamp(4rem, 14vw, 9rem);
  height: 100%;
  color: var(--cream);
  pointer-events: none;
}

.cta-split-copy {
  position: relative;
  padding: 3rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-leaves {
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  width: 8rem;
  opacity: 0.18;
  color: var(--green);
  pointer-events: none;
}

@media (min-width: 800px) {
  .cta-split { grid-template-columns: 1.15fr 0.85fr; min-height: 26rem; }
  .cta-split-copy { padding: 4.25rem 3.5rem; }
  .cta-edge { display: block; }
}

/* ——— Service / inner page hero ——— */
.page-hero {
  position: relative;
  z-index: 1;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--forest);
}

.page-hero img.page-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-service="drives-patios"] .page-hero img.page-bg {
  object-position: center 80%;
}

body[data-service="garden-clearance"] .page-hero img.page-bg {
  object-position: center 62%;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 72%, rgba(21, 89, 48, 0.32), transparent 46%),
    linear-gradient(
      180deg,
      rgba(22, 23, 25, 0.42) 0%,
      rgba(22, 23, 25, 0.28) 46%,
      rgba(243, 242, 238, 0.22) 100%
    ),
    linear-gradient(
      90deg,
      rgba(22, 23, 25, 0.82) 0%,
      rgba(22, 23, 25, 0.58) 28%,
      rgba(22, 23, 25, 0.28) 52%,
      rgba(22, 23, 25, 0.08) 72%,
      transparent 86%
    );
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 6.5rem;
  padding-top: 5rem;
}

.page-hero .hero-wave {
  z-index: 3;
  height: clamp(150px, 24vw, 300px);
}

.page-hero .eyebrow {
  color: var(--green-light);
  text-shadow: 0 1px 12px rgba(12, 41, 28, 0.45);
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 14ch;
  color: #f6f1e8;
}

.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--green-light);
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 18px rgba(12, 41, 28, 0.4),
    0 0 28px rgba(197, 221, 202, 0.45);
}

.page-hero .section-lead {
  color: rgba(246, 241, 232, 0.82);
  margin-top: 1.15rem;
  max-width: 26rem;
}

@media (max-width: 699px) {
  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(22, 23, 25, 0.58) 0%, rgba(22, 23, 25, 0.34) 44%, rgba(243, 242, 238, 0.24) 100%),
      linear-gradient(180deg, rgba(22, 23, 25, 0.42) 0%, rgba(22, 23, 25, 0.18) 56%, transparent 78%);
  }
}

.service-panel {
  --strip-h: var(--btn-h);
  position: relative;
  background: transparent;
  padding: 5.8rem 0 5.5rem;
  margin-top: -5.8rem;
  z-index: 2;
  overflow: visible;
}

body[data-service] {
  background: var(--cream);
}

body[data-service] .page-hero .hero-wave,
body[data-service] .site-footer .wave-top {
  color: var(--cream);
}

body[data-service] .service-panel > .contact-leaf {
  z-index: 0;
}
body[data-service] .service-panel .contact-leaf-a {
  top: -8rem;
  left: -3.5rem;
}
body[data-service] .service-panel .contact-leaf-b {
  top: -9rem;
}

@media (max-width: 859px) {
  body[data-service] .service-panel .contact-leaf-a {
    width: 12.5rem;
    height: 12.5rem;
    top: -2.8rem;
    left: -4.2rem;
  }
  body[data-service] .service-panel .contact-leaf-b,
  body[data-service] .service-panel .contact-leaf-d {
    display: none;
  }
  body[data-service] .service-panel .contact-leaf-c {
    width: 11.5rem;
    height: 11.5rem;
    top: auto;
    bottom: 8%;
    right: -3.8rem;
    left: auto;
  }
}

.panel-leaf {
  display: none;
}

.service-panel .wave-top {
  color: var(--cream);
  height: clamp(110px, 16vw, 180px);
}

.service-panel .container {
  display: grid;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.service-panel-head {
  grid-column: 1 / -1;
  margin-bottom: 0.15rem;
}
.service-panel-head .section-title {
  max-width: 18ch;
}
.service-panel .container > div:not(.service-visual) {
  position: relative;
  z-index: 5;
  min-width: 0;
}

@media (min-width: 860px) {
  .service-panel .container {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(1.2rem, 3vw, 2.4rem);
  }
}

.arrow-list {
  list-style: none;
  margin: 1.1rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
}

.arrow-list__item {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.arrow-list__btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem 0 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.arrow-list__icon {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  margin-right: 0;
  border-radius: 50%;
  background: var(--holly);
  overflow: hidden;
}

.arrow-list__icon img {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.arrow-list__icon::before {
  content: "";
  position: absolute;
  inset: 18%;
  background: #f3f2ee;
  -webkit-mask: url("../image/logo-leaf.png") center / contain no-repeat;
  mask: url("../image/logo-leaf.png") center / contain no-repeat;
}

.arrow-list__bar {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.35rem 0.7rem;
  padding: 0.15rem 0 0.7rem;
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.arrow-list__bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--line);
  transform: none;
  opacity: 1;
  pointer-events: none;
  transition: background 0.28s ease, box-shadow 0.28s ease, height 0.28s ease;
}

.arrow-list__num {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.28s ease, text-shadow 0.28s ease;
}

.arrow-list__text {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.arrow-list__text strong {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.28s ease, text-shadow 0.28s ease;
}

.arrow-list__text span {
  display: none;
}

.arrow-list__btn:hover .arrow-list__text strong,
.arrow-list__btn:hover .arrow-list__num {
  color: var(--holly);
  text-shadow: 0 0 16px rgba(21, 89, 48, 0.45);
}

.arrow-list__btn:hover .arrow-list__bar::after {
  height: 1.5px;
  background: var(--holly);
  box-shadow: 0 0 12px rgba(21, 89, 48, 0.45);
}

.arrow-list__icon,
.arrow-list__bar {
  transition: opacity 0.45s ease;
}

.arrow-list.reveal:not(.is-visible) .arrow-list__icon {
  opacity: 0;
  transform: scale(0.7);
}

.arrow-list.reveal:not(.is-visible) .arrow-list__bar {
  opacity: 0;
}

.arrow-list.reveal.is-visible .arrow-list__item:nth-child(1) .arrow-list__icon { transition-delay: 0.06s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(2) .arrow-list__icon { transition-delay: 0.12s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(3) .arrow-list__icon { transition-delay: 0.18s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(4) .arrow-list__icon { transition-delay: 0.24s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(5) .arrow-list__icon { transition-delay: 0.3s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(6) .arrow-list__icon { transition-delay: 0.36s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(n + 7) .arrow-list__icon { transition-delay: 0.42s; }

.arrow-list.reveal.is-visible .arrow-list__item:nth-child(1) .arrow-list__bar { transition-delay: 0.16s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(2) .arrow-list__bar { transition-delay: 0.24s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(3) .arrow-list__bar { transition-delay: 0.32s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(4) .arrow-list__bar { transition-delay: 0.4s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(5) .arrow-list__bar { transition-delay: 0.48s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(6) .arrow-list__bar { transition-delay: 0.56s; }
.arrow-list.reveal.is-visible .arrow-list__item:nth-child(n + 7) .arrow-list__bar { transition-delay: 0.64s; }

.service-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 0.35rem;
}

.service-trust p {
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}

.service-trust .btn {
  flex: 0 0 auto;
}

.service-trust-actions,
.svc-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.svc-card-actions {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.service-trust-actions .btn,
.svc-card-actions .btn {
  flex: 1 1 var(--btn-w);
}

@media (max-width: 1100px) {
  .arrow-list__bar { grid-template-columns: 1.6rem minmax(0, 1fr); }
}
@media (max-width: 859px) {
  .arrow-list__item,
  .arrow-list__item:nth-child(n) { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .arrow-list.reveal:not(.is-visible) .arrow-list__icon,
  .arrow-list.reveal:not(.is-visible) .arrow-list__bar {
    opacity: 1;
    transform: none;
  }
}

.service-visual {
  position: relative;
  z-index: 3;
  overflow: visible;
  display: grid;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.service-visual .visual-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.service-visual .script-svg {
  position: relative;
  z-index: 4;
  height: auto;
  pointer-events: none;
  transform: rotate(-12deg);
  transform-origin: center center;
  justify-self: start;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}

/* Circle photos — tree surgery, garden clearance */
.service-visual.is-circle {
  grid-template-columns: 16rem minmax(13.5rem, 1fr);
  column-gap: 1.35rem;
  margin-top: 2.4rem;
  max-width: 34rem;
  padding-right: 1.25rem;
}

.service-visual.is-circle .visual-photo {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  border: 2px solid var(--line);
  box-shadow: 0 28px 60px rgba(15, 61, 46, 0.16);
  background: #fff;
}

.service-visual.is-circle .script-svg {
  width: 10.5rem;
  margin-left: 0;
  margin-top: 1.2rem;
}

.service-visual.is-blob {
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(0.5rem, 1.8vw, 1.4rem);
  margin-top: 0;
  padding-right: 0;
  width: 100%;
  max-width: min(100%, 34rem);
  justify-self: center;
  align-self: center;
}

.service-visual.is-blob .visual-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 0.86;
  max-height: clamp(15rem, 42vw, 32rem);
  object-fit: cover;
  border-radius: 82% 18% 72% 28% / 36% 64% 36% 64%;
  border: 2px solid var(--line);
  box-shadow: 0 28px 60px rgba(15, 61, 46, 0.14);
}

.service-visual.is-blob .script-svg {
  width: clamp(7.2rem, 16vw, 13.2rem);
  margin-left: 0;
  margin-top: clamp(0.6rem, 2vw, 2.2rem);
  padding: 0.2rem 0.4rem 0.2rem 0;
}

body[data-service="hedge-cutting"] .service-visual.is-blob .visual-photo {
  object-position: 68% 42%;
}
body[data-service="tree-surgery"] .service-visual.is-blob .visual-photo {
  object-position: 50% 55%;
}
body[data-service="garden-clearance"] .service-visual.is-blob .visual-photo {
  object-position: 50% 60%;
}
body[data-service="fencing"] .service-visual.is-blob .visual-photo {
  object-position: 18% 50%;
}
body[data-service="drives-patios"] .service-visual.is-blob .visual-photo {
  object-position: 50% 70%;
}

/* Fence: script in cream on the left of the photo */
.service-visual.is-bleed {
  grid-template-columns: minmax(14rem, 16rem) minmax(12rem, 22rem);
  column-gap: 1.2rem;
  margin-top: 1.8rem;
  padding-left: 0.5rem;
}

.service-visual.is-bleed .visual-photo {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 0.86;
  max-height: 24rem;
  border-radius: 48% 4% 0 42%;
  object-position: 18% 50%;
  border: 2px solid var(--line);
  box-shadow: 0 28px 60px rgba(15, 61, 46, 0.12);
  margin-left: 0;
}

.service-visual.is-bleed .script-svg {
  grid-column: 1;
  grid-row: 1;
  width: 13.2rem;
  margin-top: 4.5rem;
  margin-right: 0;
  padding-right: 0.6rem;
  transform: rotate(-10deg);
  z-index: 5;
}

@media (max-width: 859px) {
  .service-visual.is-circle,
  .service-visual.is-blob,
  .service-visual.is-bleed {
    grid-template-columns: 1fr;
    width: min(100%, 22rem);
    max-width: 22rem;
    margin: 1.4rem auto 3.6rem;
    justify-self: center;
    padding-bottom: 3.2rem;
  }
  .service-visual.is-blob .visual-photo {
    max-height: min(22rem, 70vw);
  }
  .service-visual.is-circle .visual-photo {
    width: min(100%, 16rem);
    height: min(100%, 16rem);
    margin-inline: auto;
  }
  .service-visual .script-svg,
  body[data-service="drives-patios"] .service-visual.is-blob .script-svg,
  .service-visual.is-bleed .script-svg {
    position: absolute;
    left: 52%;
    top: auto;
    bottom: 0;
    width: 10.5rem;
    margin: 0;
    grid-column: auto;
    grid-row: auto;
  }
  .service-visual.is-bleed .visual-photo {
    grid-column: auto;
    margin-left: 0;
  }
}

.include-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.include-list li {
  display: flex;
  gap: 0.65rem;
  color: var(--text-soft);
}

.include-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--frame);
  flex-shrink: 0;
}

.split {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}

.rounded-photo {
  overflow: hidden;
  border-radius: 1.15rem;
  min-height: 16rem;
  box-shadow: var(--shadow-lg);
}

.rounded-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 16rem; }

.cards { display: grid; gap: 1.15rem; }
@media (min-width: 760px) { .cards.three { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .cards.two { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img { width: 100%; height: 13rem; object-fit: cover; }
.card-body { padding: 1.5rem 1.5rem 1.65rem; }
.card h3 { font-family: var(--display); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.45rem; }
.card p { color: var(--text-soft); font-size: 0.95rem; }

.reason {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.5rem 1.55rem;
  box-shadow: var(--shadow);
}

.reason h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.35rem; }
.reason p { color: var(--text-soft); }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.folio {
  padding: 4.2rem 0 6.2rem;
}
.folio .container { width: min(100% - 1.5rem, 84rem); }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.45rem;
  margin-bottom: 1.7rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.filter-btn {
  border: 0;
  background: none;
  border-radius: 0;
  padding: 0.35rem 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 1.5px solid transparent;
}

.filter-btn:hover { color: var(--frame); }
.filter-btn.is-on {
  background: none;
  color: var(--forest);
  border-bottom-color: var(--gold);
}
.filter-btn.is-on:hover { color: var(--forest); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: #111;
  cursor: zoom-in;
}

.gallery-item.is-hidden { display: none !important; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(22, 23, 25, 0.72);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: min(6.4rem, 44%);
  height: 2.15rem;
  background: url("../image/logo-header-light.png") right center / contain no-repeat;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover::before,
.gallery-item:focus-within::before {
  opacity: 0;
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
  background-image: url("../image/logo-header.png");
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.55));
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 0.8rem 0.8rem 0.75rem;
  background: none;
  color: #fff;
  font-family: var(--font);
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
  opacity: 0;
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
  }
}

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

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(8, 18, 14, 0.94);
  place-items: center;
  padding: 4.6rem 4.4rem 3.4rem;
}

.lightbox.open { display: grid; }

.lightbox-stage {
  margin: 0;
  max-width: min(1180px, 100%);
  text-align: center;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: min(78vh, 860px);
  object-fit: contain;
  display: block;
  margin-inline: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-stage figcaption {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.85rem;
  margin-top: 0.95rem;
  color: rgba(246, 241, 232, 0.88);
  font-size: 0.92rem;
}

#lightbox-count {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
}

.lightbox-back,
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  cursor: pointer;
  background: rgba(255, 252, 247, 0.94);
  color: var(--forest);
  box-shadow: var(--shadow);
}

.lightbox-back {
  top: 1.05rem;
  left: 1.05rem;
  border-radius: 999px;
  padding: 0.62rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-close {
  top: 1.05rem;
  right: 1.05rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  font-size: 1.55rem;
  line-height: 1;
}

.lightbox-prev { left: 0.85rem; }
.lightbox-next { right: 0.85rem; }

@media (max-width: 699px) {
  .lightbox { padding: 4.4rem 0.7rem 1.4rem; }
  .lightbox-prev,
  .lightbox-next { top: auto; bottom: 1.05rem; transform: none; }
  .lightbox-prev { left: 0.85rem; }
  .lightbox-next { right: 0.85rem; }
  .lightbox-stage img { max-height: 68vh; }
}

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.35rem 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.faq-item button::after {
  content: "+";
  font-weight: 500;
  color: var(--soft);
  font-size: 1.35rem;
  line-height: 1;
}
.faq-item p { display: none; padding: 0 0 1.2rem; color: var(--text-soft); line-height: 1.7; }
.faq-item.open p { display: block; }
.faq-item.open button { color: var(--green); }
.faq-item.open button::after { content: "–"; }

.faq-band.faq-page { padding-top: 5rem; padding-bottom: 5.5rem; }
.faq-page { padding-top: 3.4rem; padding-bottom: 5.5rem; }
.faq-page .container { position: relative; z-index: 1; }
.faq-page .contact-title { margin-bottom: 0.85rem; }
.faq-page .contact-lead { margin-bottom: 2rem; }
.faq-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 2.6rem;
}
.faq-jump a {
  display: inline-block;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.faq-jump a:hover {
  background: var(--holly);
  border-color: var(--holly);
  color: #fff;
  transform: translateY(-1px);
}
.faq-group { margin-bottom: 2.8rem; }
.faq-group .section-title { margin-bottom: 1.1rem; }
.faq-group .faq-list { max-width: 46rem; }
.faq-page .faq-list {
  border-top: 0;
}
.faq-page .faq-item {
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: linear-gradient(180deg, #fffcf7 0%, #fff 100%);
  margin-bottom: 0.65rem;
  padding: 0 1.15rem;
  box-shadow: 0 0 0 1px rgba(197, 221, 202, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.faq-page .faq-item:hover {
  border-color: var(--holly);
  box-shadow:
    0 10px 24px -12px rgba(12, 41, 28, 0.22),
    0 0 18px rgba(21, 89, 48, 0.14);
  transform: translateY(-2px);
  background: #fff;
}
.faq-page .faq-item button {
  padding: 1.15rem 0;
  transition: color 0.22s ease;
}
.faq-page .faq-item button::after {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cream);
  color: var(--holly);
  font-size: 1.15rem;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.faq-page .faq-item:hover button { color: var(--holly); }
.faq-page .faq-item:hover button::after {
  background: var(--holly);
  color: #fff;
  transform: rotate(90deg);
}
.faq-page .faq-item.open {
  border-color: var(--holly);
  box-shadow:
    0 12px 28px -14px rgba(12, 41, 28, 0.24),
    0 0 18px rgba(21, 89, 48, 0.12);
}
.faq-page .faq-item.open button::after {
  content: "–";
  background: var(--holly);
  color: #fff;
  transform: none;
}
.faq-group { margin-bottom: 2.8rem; }
.faq-group .section-title { margin-bottom: 1.1rem; }
.faq-group .faq-list { max-width: 46rem; }
.faq-page-cta { margin-top: 1.2rem; }
.faq-more {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.faq-more a { color: var(--holly); }

.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}

.form-card {
  background: linear-gradient(180deg, #fffcf7 0%, var(--white) 100%);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: 2rem;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(197, 221, 202, 0.12);
}

.form-card h2 { font-family: var(--display); font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.form-card .hint { color: var(--muted); margin: 0.45rem 0 1.4rem; }
.field { margin-bottom: 0.95rem; }
.field label { display: block; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.4rem; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.95rem 1.05rem;
  background: #f4f1eb;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(21, 89, 48, 0.12),
    0 0 18px rgba(21, 89, 48, 0.14);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; }
.form-status { display: none; margin-top: 0.8rem; text-align: center; font-size: 0.9rem; }
.form-status.ok { display: block; color: var(--green); }
.form-status.err { display: block; color: #9b1c1c; }

.aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.5rem 1.55rem;
  box-shadow: var(--shadow);
}

.aside-card h3 { font-family: var(--display); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.65rem; }
.aside-card p, .aside-card a { color: var(--text-soft); }
.aside-card a { color: var(--frame); font-weight: 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;
}

.contact-page-main {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 3.4rem 0 5.5rem;
}

.contact-leaf {
  position: absolute;
  background: var(--holly);
  -webkit-mask: url("../image/logo-leaf.png") center / contain no-repeat;
  mask: url("../image/logo-leaf.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.contact-leaf-a { width: 22rem; height: 22rem; left: -6rem; top: 4rem; transform: rotate(-18deg); }
.contact-leaf-b { width: 14rem; height: 14rem; left: 28%; top: -3rem; transform: rotate(22deg); opacity: 0.06; }
.contact-leaf-c { width: 18rem; height: 18rem; right: -4rem; top: 18rem; transform: rotate(12deg); }
.contact-leaf-d { width: 11rem; height: 11rem; right: 22%; bottom: 3rem; transform: rotate(-28deg); opacity: 0.07; }

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.4rem;
}
@media (min-width: 980px) {
  .contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.8rem;
    align-items: start;
  }
}

.contact-title {
  font-family: var(--display);
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 14ch;
  margin-bottom: 1rem;
}
.contact-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--holly);
  text-shadow: 0 0 18px rgba(21, 89, 48, 0.18);
}
.contact-lead {
  color: var(--text-soft);
  max-width: 34rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.contact-methods {
  display: grid;
  gap: 0.7rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #fffcf7 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(197, 221, 202, 0.1);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
a.contact-method:hover {
  transform: translateY(-2px);
  border-color: var(--holly);
  box-shadow:
    0 14px 28px -12px rgba(12, 41, 28, 0.18),
    0 0 18px rgba(21, 89, 48, 0.14);
}
.contact-method-icon {
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background-color: var(--holly);
  background-image: url("../image/leaf-vein.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 5px rgba(243, 242, 238, 0.9),
    0 0 16px rgba(21, 89, 48, 0.28);
}
.contact-method-icon::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  background: #f3f2ee;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
.contact-method-icon.is-phone {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}
.contact-method-icon.is-mail {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
.contact-method-icon.is-pin {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
}
.contact-method-icon.is-leaf {
  --icon: url("../image/logo-leaf.png");
}
.contact-method small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.contact-method strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.contact-side { display: grid; gap: 1.1rem; }
.contact-page .form-card {
  border-radius: 1.45rem;
  padding: 1.6rem 1.55rem 1.7rem;
  box-shadow: 0 22px 50px rgba(15, 61, 46, 0.1);
}
.form-card-kicker {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
  line-height: 1.55;
}
.field-row {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.95rem 1.05rem;
  background: #f4f1eb;
  font: inherit;
  color: var(--text);
}
.field select:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 61, 46, 0.1);
}
.file-field { margin-bottom: 1.15rem; }
.file-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  color: var(--text);
}
.file-label span {
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
  font-size: 0.82rem;
}
.file-limits {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.8rem 0.9rem;
  background: color-mix(in srgb, var(--cream) 70%, white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
}
@media (min-width: 520px) {
  .file-limits { grid-template-columns: 1fr 1fr; }
}
.file-limits li {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.4;
}
.file-limits strong {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--holly);
  margin-bottom: 0.08rem;
}
.file-drop {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  padding: 1.15rem 1rem;
  border: 1.5px dashed color-mix(in srgb, var(--holly) 38%, var(--line));
  border-radius: 0.9rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(197, 221, 202, 0.28), transparent 64%),
    #f4f1eb;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.file-drop:hover,
.file-drop.is-over {
  border-color: var(--holly);
  box-shadow: 0 0 0 4px rgba(21, 89, 48, 0.1), 0 0 18px rgba(21, 89, 48, 0.12);
  background: #fff;
}
.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.file-drop-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--holly);
}
.file-drop-hint {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 22rem;
  line-height: 1.45;
}
.file-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 0.7rem 0 0;
  padding: 0;
}
.file-item {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}
.file-item img,
.file-item-ph {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: cover;
  border-radius: 0.5rem;
  background: var(--cream);
}
.file-item-copy strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-item-copy span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.72rem;
  color: var(--muted);
}
.file-remove {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--holly);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.file-remove:hover { background: var(--holly); color: #fff; }
.file-meta {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}
.file-error {
  display: none;
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: #9b1c1c;
}
.file-error.is-on { display: block; }

.form-privacy {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0.2rem 0 1rem;
}
.form-actions { display: flex; justify-content: flex-end; }
.hours-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: 1.4rem 1.45rem 1.3rem;
  box-shadow: var(--shadow);
}
.hours-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.hours-card dl { display: grid; gap: 0.65rem; }
.hours-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.hours-card dl > div:last-child { padding-bottom: 0; border-bottom: 0; }
.hours-card dt { color: var(--text-soft); }
.hours-card dd { font-weight: 600; text-align: right; color: var(--text); }
.hours-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--holly);
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(21, 89, 48, 0.55);
}

.site-footer {
  background:
    radial-gradient(ellipse at 12% 82%, rgba(197, 221, 202, 0.12), transparent 46%),
    radial-gradient(ellipse at 88% 40%, rgba(21, 89, 48, 0.35), transparent 48%),
    linear-gradient(165deg, #163d28 0%, var(--forest) 48%, #081910 100%);
  color: #fff;
  padding: 10.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: -16%;
  background: radial-gradient(circle at 70% 28%, rgba(197, 221, 202, 0.12), transparent 42%);
  animation: premium-breathe 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 36%, rgba(197, 221, 202, 0.1) 50%, transparent 64%);
  background-size: 220% 100%;
  animation: premium-sheen 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.site-footer .wave-top {
  color: var(--cream);
  height: clamp(70px, 11vw, 140px);
  z-index: 1;
}

.site-footer .logo img {
  height: 3.15rem;
  max-width: 16rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 860px) {
  .footer-grid { grid-template-columns: 1.4fr 0.9fr 1fr 1fr; }
}

.site-footer h3 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.site-footer p, .site-footer a, .site-footer li {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.site-footer ul { list-style: none; display: grid; gap: 0.4rem; }
.site-footer a:hover { color: #fff; }
.footer-brand p { margin-top: 0.9rem; max-width: 20rem; }

.footer-script {
  position: absolute;
  top: clamp(4.8rem, 9vw, 7.2rem);
  right: 3.5%;
  width: min(10.2rem, 20vw);
  height: auto;
  padding: 0.4rem;
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.28));
}

@media (max-width: 859px) {
  .footer-script {
    width: 6.8rem;
    top: 4.6rem;
    right: 3.5%;
    padding: 0.25rem;
  }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 2;
}

@keyframes premium-sheen {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0 0; }
}

@keyframes premium-breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes premium-glow {
  0%, 100% {
    box-shadow:
      0 0 0 7px var(--cream),
      0 8px 22px rgba(21, 89, 48, 0.32),
      0 0 18px rgba(21, 89, 48, 0.28);
  }
  50% {
    box-shadow:
      0 0 0 7px var(--cream),
      0 10px 26px rgba(21, 89, 48, 0.46),
      0 0 28px rgba(21, 89, 48, 0.5);
  }
}

.reveal { opacity: 0; transform: translateY(0.9rem); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: 0.7s opacity ease, 0.7s transform ease;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .why-band::before,
  .why-band::after,
  .finale::before,
  .finale::after,
  .site-footer::before,
  .site-footer::after,
  .process-mark {
    animation: none;
  }
}

/* ——— Subcategory swipe stack ——— */
.svc-stack {
  --strip-h: var(--btn-h);
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--forest);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  box-sizing: border-box;
  border: 0;
}
.svc-stack.is-open {
  opacity: 1;
  pointer-events: auto;
}
.svc-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0.7rem;
  background-color: var(--holly);
  background-image: url("../image/leaf-vein.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.svc-stack-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
}

.svc-card {
  position: absolute;
  inset: 0;
  display: grid;
  background: var(--cream);
  color: var(--text);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.32, 1);
  will-change: transform;
}
.svc-card.is-under,
.svc-card.is-current { transform: translate3d(0, 0, 0); }
.svc-card.is-dragging { transition: none; }

@media (min-width: 900px) {
  .svc-card { grid-template-columns: 1.2fr 0.8fr; }
}

.svc-card-photos {
  position: relative;
  min-height: 46vh;
  background: #111;
  overflow: hidden;
}
.svc-card-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.svc-card-thumbs {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  z-index: 1;
}
.svc-card-thumbs img {
  position: relative;
  inset: auto;
  height: 4.4rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.85);
}

.svc-card-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.7rem 2.3rem;
}
@media (min-width: 900px) {
  .svc-card-photos { min-height: 100%; }
  .svc-card-copy { padding: 3.7rem 3.2rem; }
  .svc-card-thumbs img { height: 5.6rem; }
}

.svc-card-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.svc-card-copy p {
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 36rem;
}
.svc-card-copy .btn { align-self: flex-start; }

.svc-stack-close,
.svc-photo-prev,
.svc-photo-next {
  --glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M18.3 5.7 12 12l6.3 6.3-1.4 1.4L10.6 13.4 4.3 19.7 2.9 18.3 9.2 12 2.9 5.7 4.3 4.3 10.6 10.6 16.9 4.3z'/%3E%3C/svg%3E");
  position: absolute;
  z-index: 10;
  border: 0;
  cursor: pointer;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  font-size: 0;
  color: transparent;
  background: none;
  box-shadow: none;
  border-radius: 0;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 2px 6px rgba(12, 41, 28, 0.45));
  transition: transform 0.22s ease, filter 0.22s ease;
}
.svc-stack-close::before,
.svc-photo-prev::before,
.svc-photo-next::before {
  content: "";
  width: 1.45rem;
  height: 1.45rem;
  background-color: var(--holly);
  background-image: url("../image/leaf-vein.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  -webkit-mask: var(--glyph) center / contain no-repeat;
  mask: var(--glyph) center / contain no-repeat;
}
.svc-photo-prev {
  --glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 4.2 7.7 12l7.8 7.8-1.6 1.6L4.5 12l9.4-9.4z'/%3E%3C/svg%3E");
}
.svc-photo-next {
  --glyph: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.5 4.2 16.3 12 8.5 19.8l1.6 1.6L19.5 12 10.1 2.6z'/%3E%3C/svg%3E");
}
.svc-stack-close:hover,
.svc-photo-prev:hover,
.svc-photo-next:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 10px rgba(12, 41, 28, 0.55));
}
.svc-stack-close { top: 1.45rem; right: 1.45rem; }
.svc-photo-prev,
.svc-photo-next {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  z-index: 3;
}
.svc-photo-prev { left: 0.7rem; }
.svc-photo-next { right: 0.7rem; }
.svc-photo-prev::before,
.svc-photo-next::before {
  width: 1.7rem;
  height: 1.7rem;
}
.svc-photo-prev:hover,
.svc-photo-next:hover { transform: translateY(-50%) scale(1.1); }
.svc-card-thumbs img {
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.svc-card-thumbs img.is-on,
.svc-card-thumbs img:hover {
  opacity: 1;
  border-color: #fff;
}
.svc-stack-count {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(255,252,247,0.9);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

@media (max-width: 899px) {
  .svc-stack-close { top: 0.85rem; right: 0.85rem; }
}

@media (max-width: 699px) {
  .svc-stack::after { padding: 0.48rem; }
}
