/* ==========================================================================
   Mutauro Weshona - master stylesheet
   Palette taken from the logo: green, red, yellow, black, white
   ========================================================================== */

:root {
  --green: #1fa637;
  --green-dark: #14722a;
  --green-deep: #0d4d1e;
  --red: #ee3124;
  --red-dark: #c31f15;
  --yellow: #f5c518;
  --yellow-soft: #fde9a7;
  --ink: #15150f;
  --ink-soft: #4a4a41;
  --line: #e6e2d6;
  --cream: #fffdf5;
  --cream-2: #f6f2e6;
  --white: #ffffff;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1240px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 14px 40px rgba(21, 21, 15, 0.12);
  --shadow-lg: 0 26px 70px rgba(21, 21, 15, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --topbar-h: 44px;
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--red);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

p {
  margin: 0 0 1.1em;
}

ul {
  padding-left: 1.15rem;
}

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-cream {
  background: var(--cream-2);
}

.section-ink {
  background: var(--ink);
  color: #ded9c8;
}

.section-ink h2,
.section-ink h3 {
  color: var(--white);
}

.lead {
  font-size: 1.13rem;
  max-width: 68ch;
}

.center {
  text-align: center;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    background-color 0.28s var(--ease), color 0.28s var(--ease),
    border-color 0.28s var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 166, 55, 0.32);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 166, 55, 0.4);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(238, 49, 36, 0.3);
}

.btn-red:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* ---------- top information bar ---------- */
.topbar {
  background: var(--ink);
  color: #ded9c8;
  font-size: 0.86rem;
  position: relative;
  z-index: 60;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--topbar-h);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar a {
  color: #ded9c8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.topbar-right a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.topbar-right a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}

.topbar-hours {
  opacity: 0.85;
}

/* ---------- header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: transparent;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(21, 21, 15, 0.55), rgba(21, 21, 15, 0));
  opacity: 1;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 26px rgba(21, 21, 15, 0.1);
}

.site-header.scrolled::before {
  opacity: 0;
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: var(--nav-h);
}

.logo,
.nav-brand img,
.footer-brand img,
.site-logo {
  border-radius: 16px;
  background: #fff;
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .logo {
  border-radius: 12px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
}

.nav-brand .logo {
  width: 186px;
  transition: width 0.35s var(--ease);
}

.site-header.scrolled .nav-brand .logo {
  width: 158px;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.7vw, 30px);
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 2px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

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

.main-nav a:hover {
  color: var(--yellow);
}

.site-header.scrolled .main-nav a {
  color: var(--ink);
  text-shadow: none;
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a[aria-current="page"] {
  color: var(--green-dark);
}

.site-header.scrolled .main-nav a::after {
  background: var(--green);
}

.nav-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 12px 22px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.site-header.scrolled .nav-toggle {
  background: var(--cream-2);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.25s var(--ease),
    background-color 0.3s var(--ease);
}

.site-header.scrolled .nav-toggle span {
  background: var(--ink);
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

.nav-open .nav-toggle span {
  background: var(--ink);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  padding: 22px 22px 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.42s var(--ease);
  display: none;
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mobile-nav-head .logo {
  width: 160px;
}

.mobile-close {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}

.mobile-nav ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 15px 4px;
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
}

.mobile-nav a[aria-current="page"] {
  color: var(--green-dark);
}

.mobile-nav .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.mobile-contact {
  margin-top: 8px;
  font-size: 0.95rem;
}

/* ---------- hero slider (home) ---------- */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--nav-h));
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  background: var(--green-deep);
  overflow: hidden;
  isolation: isolate;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.35s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s linear;
}

.hero-slide.is-active img {
  transform: scale(1.16);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      100deg,
      rgba(13, 77, 30, 0.62) 0%,
      rgba(21, 21, 15, 0.5) 45%,
      rgba(21, 21, 15, 0.34) 100%
    );
}

.hero-inner {
  padding: calc(var(--nav-h) + 70px) 0 96px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  margin-bottom: 0.35em;
}

.hero h2 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.1vw, 1.5rem);
  max-width: 60ch;
  margin: 0 auto 1.6em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.hero-trust div {
  text-align: center;
}

.hero-trust strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
}

.hero-trust span {
  font-size: 0.86rem;
  opacity: 0.85;
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.hero-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  padding: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), width 0.3s var(--ease);
}

.hero-dots button.is-active {
  background: var(--yellow);
  width: 52px;
}

/* ---------- inner page banner ---------- */
.banner {
  position: relative;
  margin-top: calc(-1 * var(--nav-h));
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background: var(--green-deep);
  overflow: hidden;
  isolation: isolate;
}

.banner-img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: bannerDrift 16s ease-in-out infinite alternate;
}

@keyframes bannerDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.4%, -1.2%, 0);
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(21, 21, 15, 0.5) 0%,
    rgba(13, 77, 30, 0.42) 55%,
    rgba(21, 21, 15, 0.55) 100%
  );
}

.banner-inner {
  padding: calc(var(--nav-h) + 72px) 0 52px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.banner h1 {
  color: #fff;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.3em;
  max-width: 24ch;
}

.banner p {
  color: #fff;
  max-width: 62ch;
  font-size: 1.1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.1em;
}

.crumbs {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.crumbs a {
  color: rgba(255, 255, 255, 0.9);
}

.crumbs a:hover {
  color: var(--yellow);
}

.banner-alt .banner-inner {
  text-align: center;
}

.banner-alt h1,
.banner-alt p {
  margin-left: auto;
  margin-right: auto;
}

.banner-alt .crumbs {
  justify-content: center;
}

/* ---------- generic layout helpers ---------- */
.grid {
  display: grid;
  gap: 28px;
}

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

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

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

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.05);
}

.media-frame::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34%;
  height: 6px;
  background: var(--yellow);
}

/* cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.07);
}

.card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  margin-bottom: 0.45em;
}

.card-body p {
  font-size: 0.98rem;
}

.card-link {
  margin-top: auto;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
}

.card-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s var(--ease);
}

.card-link:hover svg {
  transform: translateX(5px);
}

/* plain feature panel */
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.panel h3 {
  margin-bottom: 0.4em;
}

.panel p:last-child {
  margin-bottom: 0;
}

.panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.panel-icon svg {
  width: 26px;
  height: 26px;
}

.section-ink .panel {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ded9c8;
}

/* check list */
.ticks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4em;
  display: grid;
  gap: 12px;
}

.ticks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ticks svg {
  width: 21px;
  height: 21px;
  flex: none;
  color: var(--green);
  margin-top: 3px;
}

/* stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--yellow);
}

/* testimonials */
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.quote:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0;
  font-size: 1.02rem;
}

.quote-mark {
  width: 34px;
  height: 34px;
  color: var(--red);
}

.quote-who {
  margin-top: auto;
  font-weight: 700;
  color: var(--ink);
}

.quote-who span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--yellow);
}

.stars svg {
  width: 18px;
  height: 18px;
}

/* accordion */
.accordion {
  display: grid;
  gap: 14px;
}

.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 56px 20px 22px;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}

.acc-btn::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}

.acc-item.is-open .acc-btn::after {
  transform: translateY(-30%) rotate(-135deg);
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.acc-panel div {
  padding: 0 22px 22px;
}

/* pricing / plan blocks */
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}

.plan.is-featured {
  border-color: var(--green);
  box-shadow: 0 18px 46px rgba(31, 166, 55, 0.16);
}

.plan .price {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 0.2em;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 166, 55, 0.14);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 0.86rem;
  margin-top: 14px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 20px;
}

.info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--yellow-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.info-ico svg {
  width: 22px;
  height: 22px;
}

.info-list strong {
  display: block;
  color: var(--ink);
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* newsletter */
.newsletter {
  background: linear-gradient(120deg, var(--green-deep), var(--green-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: center;
}

.newsletter h2 {
  color: #fff;
  margin-bottom: 0.3em;
}

.newsletter p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1 1 220px;
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 999px;
  border: 0;
}

.newsletter input:focus {
  outline: 3px solid var(--yellow);
}

/* cta strip */
.cta-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 92px 0;
  background: var(--green-deep);
}

.cta-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(13, 77, 30, 0.78), rgba(21, 21, 15, 0.6));
}

.cta-strip h2 {
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cta-strip p {
  color: #fff;
  max-width: 60ch;
  margin: 0 auto 1.6em;
}

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

.gallery a {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  display: block;
  box-shadow: var(--shadow-sm);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery a:hover img {
  transform: scale(1.07);
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 14px;
  color: #fff;
  font-size: 0.92rem;
  background: linear-gradient(to top, rgba(21, 21, 15, 0.8), transparent);
}

.gallery .tall img {
  aspect-ratio: 3 / 4;
}

/* article typography */
.article {
  max-width: 78ch;
  margin: 0 auto;
}

.article h2 {
  margin-top: 1.7em;
}

.article h3 {
  margin-top: 1.4em;
}

.article blockquote {
  margin: 1.8em 0;
  padding: 22px 26px;
  border-left: 5px solid var(--yellow);
  background: var(--cream-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.08rem;
  color: var(--ink);
}

.meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.6em;
}

.legal {
  max-width: 82ch;
}

.legal h2 {
  margin-top: 1.8em;
}

/* floating buttons */
.wa-float,
.top-float {
  position: fixed;
  right: 20px;
  z-index: 150;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.wa-float {
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:hover,
.top-float:hover {
  transform: translateY(-4px) scale(1.05);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.6s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.top-float {
  bottom: 92px;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  pointer-events: none;
}

.top-float.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.top-float svg {
  width: 22px;
  height: 22px;
}

/* cookie banner */
.cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 180;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: none;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.cookie.is-visible {
  display: flex;
}

.cookie p {
  margin: 0;
  font-size: 0.94rem;
}

.cookie .btn {
  padding: 11px 20px;
  flex: none;
}

/* footer */
.site-footer {
  background: var(--ink);
  color: #b9b4a4;
  padding: 72px 0 0;
  font-size: 0.96rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 1em;
}

.site-footer a {
  color: #b9b4a4;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}

.footer-social a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 4px;
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-34px, 0, 0);
}

.reveal-right {
  transform: translate3d(34px, 0, 0);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.page-loading .hero-inner > *,
.page-loading .banner-inner > * {
  opacity: 0;
}

.intro-up {
  animation: introUp 0.9s var(--ease) both;
}

@keyframes introUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  :root {
    --nav-h: 76px;
  }

  .main-nav,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .nav-inner {
    grid-template-columns: auto 1fr;
  }

  .nav-cta {
    justify-self: end;
  }

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

@media (max-width: 900px) {
  .reveal-left,
  .reveal-right {
    transform: translate3d(0, 22px, 0);
  }

  body {
    font-size: 16.5px;
  }

  .section {
    padding: 64px 0;
  }

  .split,
  .contact-grid,
  .newsletter,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 34px;
  }

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

  .banner {
    min-height: 400px;
  }

  .newsletter {
    padding: 32px 24px;
  }

  .topbar-hours,
  .topbar-address {
    display: none;
  }

  .topbar .wrap {
    justify-content: space-between;
  }

  .topbar-left {
    gap: 14px;
  }

  .topbar-left span.label {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 88vh;
  }

  .hero-inner {
    padding: calc(var(--nav-h) + 46px) 0 78px;
  }

  .hero-trust {
    gap: 12px 26px;
    margin-top: 36px;
  }

  .hero-actions .btn,
  .banner .btn {
    width: 100%;
    justify-content: center;
  }

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

  .cookie {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .cookie .btn {
    justify-content: center;
  }

  .nav-brand .logo {
    width: 148px;
  }

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

  .form-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
