/* ==========================================================================
   TROVE PROPERTY — Global stylesheet
   1. Tokens        2. Base        3. Layout        4. Header / Nav
   5. Hero          6. Sections    7. Cards         8. Forms
   9. Sliders       10. Modals     11. Footer       12. Utilities / Motion
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --green: #12a150;
  --green-dark: #0b7a3b;
  --green-soft: #eaf7ef;
  --gem: #2ee07f;
  --ink: #26303d;
  --ink-900: #151b23;
  --ink-800: #1e2732;
  --body: #4a5563;
  --cream: #f7f6f2;
  --sand: #efeee8;
  --white: #ffffff;
  --line: #e3e5e0;
  --line-dark: rgba(255, 255, 255, 0.14);

  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --shell: 1240px;
  --gutter: 24px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(21, 27, 35, 0.06);
  --shadow-md: 0 18px 40px -22px rgba(21, 27, 35, 0.35);
  --shadow-lg: 0 40px 80px -40px rgba(21, 27, 35, 0.5);
  --header-h: 88px;
  --topbar-h: 42px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2. Base ------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.95rem, 3.9vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.14rem; }
p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--green); color: #fff; }

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

/* 3. Layout ---------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { max-width: 1440px; }

.section { padding: clamp(64px, 8vw, 116px) 0; position: relative; }
.section--tight { padding: clamp(48px, 5vw, 76px) 0; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--ink-900); color: rgba(255, 255, 255, 0.74); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  transform: rotate(45deg);
  background: var(--green);
}
.section--dark .eyebrow { color: var(--gem); }

.sec-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 54px); }
.sec-head p { font-size: 1.03rem; }
.sec-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

.lead { font-size: 1.1rem; color: var(--body); }
.section--dark .lead { color: rgba(255, 255, 255, 0.78); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.28s var(--ease), background 0.28s, color 0.28s, border-color 0.28s, box-shadow 0.28s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 12px 26px -14px rgba(18, 161, 80, 0.9); }
.btn--primary:hover { background: var(--green-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-900); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--outline-light { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--sm { padding: 11px 22px; font-size: 0.84rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.section--dark .link-arrow { color: var(--gem); }

/* 4. Header / Nav ---------------------------------------------------------- */
.topbar {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 201;
  transition: transform 0.4s var(--ease);
}
body.is-scrolled .topbar { transform: translateY(-100%); }
body.is-scrolled .site-header { top: 0; }
.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 22px; align-items: center; }
.topbar-social { display: flex; gap: 14px; align-items: center; }

.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 200;
  transition: top 0.4s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.4s var(--ease);
}
.site-header .shell {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}
.site-header.is-hidden { transform: translateY(-102%); }
.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -26px rgba(0, 0, 0, 0.5);
}

.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; transition: opacity 0.3s; }
.brand .logo-light { display: block; }
.brand .logo-dark { display: none; }
.site-header.is-solid .brand .logo-light,
.site-header--solid .brand .logo-light { display: none; }
.site-header.is-solid .brand .logo-dark,
.site-header--solid .brand .logo-dark { display: block; }

.nav { justify-self: end; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > li { position: relative; }
.nav-list > li > a,
.nav-toggle-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 15px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  background: none;
  border: 0;
  position: relative;
  transition: color 0.25s;
}
.nav-list > li > a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 6px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-list > li > a:hover::after,
.nav-list > li.is-current > a::after { transform: scaleX(1); transform-origin: left; }
.site-header.is-solid .nav-list > li > a,
.site-header.is-solid .nav-toggle-sub,
.site-header--solid .nav-list > li > a,
.site-header--solid .nav-toggle-sub { color: var(--ink); }
.nav-list > li > a:hover { color: var(--green); }

.has-sub > .caret { transition: transform 0.3s; }
.subnav {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 236px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.26s var(--ease), transform 0.26s var(--ease), visibility 0.26s;
}
.has-sub:hover > .subnav,
.has-sub.is-open > .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink);
}
.subnav a:hover { background: var(--green-soft); color: var(--green-dark); }

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

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  position: relative;
}
.site-header.is-solid .burger,
.site-header--solid .burger { border-color: var(--line); }
.burger span {
  position: absolute;
  left: 13px;
  width: 20px; height: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.site-header.is-solid .burger span,
.site-header--solid .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.mobile-nav__scrim {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 21, 0.55);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.mobile-nav.is-open .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 88vw);
  background: #fff;
  padding: 22px 22px 40px;
  overflow-y: auto;
  transform: translateX(102%);
  transition: transform 0.42s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mobile-nav__top img { height: 38px; }
.mobile-close {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--ink);
}
.m-item { border-bottom: 1px solid var(--line); }
.m-item > a,
.m-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 2px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  background: none;
  border: 0;
  text-align: left;
}
.m-sub { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.m-item.is-open .m-sub { max-height: 460px; }
.m-item.is-open > button .caret { transform: rotate(180deg); }
.m-sub a {
  display: block;
  padding: 10px 2px 10px 16px;
  font-size: 0.94rem;
  color: var(--body);
  border-left: 2px solid var(--line);
  margin-left: 2px;
}
.m-sub a:hover { color: var(--green-dark); border-color: var(--green); }
.mobile-nav__foot { margin-top: 22px; display: grid; gap: 10px; }
.mobile-nav__foot .btn { width: 100%; }

/* 5. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: min(100vh, 940px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink-900);
  padding-top: calc(var(--header-h) + var(--topbar-h));
}
.hero__media { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.25s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7.5s linear;
}
.hero__slide.is-active img { transform: scale(1); }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 21, 0.72) 0%, rgba(12, 16, 21, 0.22) 34%, rgba(12, 16, 21, 0.86) 100%);
}
.hero__inner { position: relative; z-index: 3; width: 100%; padding-bottom: clamp(34px, 5vw, 60px); }
.hero__copy { max-width: 780px; padding-top: clamp(70px, 14vh, 170px); }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero__badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--gem); }
.hero h1 { color: #fff; margin: 22px 0 18px; }
.hero__copy p { color: rgba(255, 255, 255, 0.82); font-size: 1.08rem; max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero__dots {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(200px, 26vh, 300px);
  display: grid;
  gap: 10px;
  z-index: 4;
}
.hero__dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero__dots button.is-active { background: var(--gem); border-color: var(--gem); transform: scale(1.3); }

/* Search panel */
.searchbar {
  margin-top: clamp(30px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.searchbar__tabs { display: flex; gap: 6px; margin-bottom: 16px; }
.searchbar__tabs button {
  padding: 9px 24px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  transition: background 0.25s, color 0.25s;
}
.searchbar__tabs button.is-active { background: var(--green); color: #fff; }
.searchbar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 7px;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.94rem;
  appearance: none;
}
.field input::placeholder { color: rgba(255, 255, 255, 0.6); }
.field select option { color: var(--ink); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* 6. Page banner ----------------------------------------------------------- */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + var(--topbar-h) + clamp(56px, 9vw, 120px)) 0 clamp(56px, 8vw, 110px);
  background: var(--ink-900);
  overflow: hidden;
}
.page-banner img.page-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 16, 21, 0.86), rgba(12, 16, 21, 0.55));
}
.page-banner .shell { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner p { color: rgba(255, 255, 255, 0.78); max-width: 620px; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 16px;
}
.crumbs a:hover { color: #fff; }
.crumbs span.sep { opacity: 0.5; }

/* 7. Cards, grids ---------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.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)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand); }
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.card:hover .card__media img { transform: scale(1.07); }
.card__tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.card__tag--green { background: var(--green); color: #fff; }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { margin: 0; font-size: 1.24rem; }
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 0.85rem;
  color: var(--body);
}
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1.1rem;
}
.card__foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Feature / service tiles */
.tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s, background 0.4s;
}
.tile::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tile:hover::after { transform: scaleX(1); }
.tile__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--green);
  letter-spacing: 0.1em;
}
.tile h3 { font-size: 1.22rem; margin: 0; }
.tile p { font-size: 0.96rem; }

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
}
.section--dark .icon-badge { background: rgba(46, 224, 127, 0.13); color: var(--gem); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section--dark .stats,
.stats--dark { background: var(--line-dark); border-color: var(--line-dark); }
.stat { background: #fff; padding: 32px 26px; }
.section--dark .stat,
.stats--dark .stat { background: var(--ink-900); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.section--dark .stat__num { color: #fff; }
.stat__label { font-size: 0.9rem; margin-top: 8px; }

/* Split media block */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); width: 100%; }
.split__badge {
  position: absolute;
  right: -18px; bottom: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  max-width: 210px;
}
.split__badge strong { font-family: var(--font-display); font-size: 1.9rem; display: block; line-height: 1; }
.split__badge span { font-size: 0.84rem; opacity: 0.9; }

.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; }
.check-list li::before {
  content: "";
  flex: 0 0 20px;
  height: 20px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.4l2.6 2.6L10 3.6' stroke='%230b7a3b' stroke-width='1.9' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--dark .check-list li::before { background-color: rgba(46, 224, 127, 0.16); }

/* Filter bar */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.chip:hover { border-color: var(--green); color: var(--green-dark); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.control {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
}
.control select,
.control input {
  padding: 10px 14px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
}
.result-count { font-size: 0.9rem; }
.empty-state {
  padding: 60px 20px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

/* Gallery grid */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  background: var(--sand);
  border: 0;
  padding: 0;
}
.gallery__item:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 16, 21, 0.55));
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover::after { opacity: 1; }

/* Video cards */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 0;
  padding: 0;
  background: var(--ink-900);
  cursor: pointer;
  display: block;
  width: 100%;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; transition: transform 0.9s var(--ease), opacity 0.4s; }
.video-card:hover img { transform: scale(1.06); opacity: 0.62; }
.video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.play-btn {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  place-items: center;
  color: var(--green-dark);
  box-shadow: 0 0 0 0 rgba(46, 224, 127, 0.55);
  animation: pulse-ring 2.6s infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(46, 224, 127, 0.5); }
  70% { box-shadow: 0 0 0 22px rgba(46, 224, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 224, 127, 0); }
}
.video-card__title {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Parallax band */
.parallax {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  color: #fff;
}
.parallax__bg {
  position: absolute;
  inset: -14% 0;
  width: 100%;
  height: 128%;
  object-fit: cover;
  will-change: transform;
}
.parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 21, 0.88) 0%, rgba(12, 16, 21, 0.52) 70%);
}
.parallax .shell { position: relative; z-index: 2; }
.parallax h2 { color: #fff; }

/* Accordion */
.accordion { border-top: 1px solid var(--line); }
.section--dark .accordion { border-color: var(--line-dark); }
.acc-item { border-bottom: 1px solid var(--line); }
.section--dark .acc-item { border-color: var(--line-dark); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.25s;
}
.section--dark .acc-head { color: #fff; }
.acc-head:hover { color: var(--green-dark); }
.acc-icon {
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.acc-item.is-open .acc-icon {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.acc-panel > div { padding: 0 44px 24px 4px; font-size: 0.99rem; }

/* Packages */
.pkg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg.is-featured { border-color: var(--green); box-shadow: var(--shadow-md); }
.pkg__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--green-dark);
}
.pkg__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin: 12px 0 4px;
  letter-spacing: -0.03em;
}
.pkg__unit { font-size: 0.86rem; }
.pkg__list { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 11px; font-size: 0.92rem; }
.pkg__list li { display: flex; gap: 10px; }
.pkg__list li strong { color: var(--ink); font-weight: 600; }
.pkg__list li::before { content: "—"; color: var(--green); }
.pkg .btn { margin-top: auto; }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.spec-table th,
.spec-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { font-family: var(--font-display); color: var(--ink); width: 34%; font-weight: 700; }
.spec-table tr:hover td { background: var(--cream); }

/* 8. Forms ----------------------------------------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 161, 80, 0.13);
}
.form-field .error {
  font-size: 0.78rem;
  color: #c0392b;
  display: none;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #c0392b; }
.form-field.has-error .error { display: block; }
.form-note { font-size: 0.84rem; margin-top: 14px; }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.93rem;
  font-weight: 600;
}
.form-status.is-visible { display: block; }

/* 9. Sliders --------------------------------------------------------------- */
.slider { position: relative; }
.slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track > * { scroll-snap-align: start; flex: 0 0 calc((100% - 48px) / 3); }
.slider__nav { display: flex; gap: 10px; }
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.slider-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.slider-btn[disabled] { opacity: 0.35; cursor: not-allowed; }
.section--dark .slider-btn { background: transparent; border-color: var(--line-dark); color: #fff; }

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section--dark .quote-card { background: var(--ink-800); border-color: var(--line-dark); }
.quote-card__mark { color: var(--green); font-size: 2.4rem; line-height: 0.6; font-family: var(--font-display); }
.stars { display: flex; gap: 3px; color: #f0a500; }

/* 10. Modals / lightbox ---------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 13, 17, 0.9);
}
.modal.is-open { display: flex; animation: fade-in 0.3s var(--ease); }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal__content {
  position: relative;
  width: min(1040px, 100%);
  max-height: 88vh;
}
.modal__content iframe,
.modal__content img {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: #000;
  max-height: 88vh;
  object-fit: contain;
}
.modal__content iframe { aspect-ratio: 16 / 9; height: auto; }
.modal__close {
  position: absolute;
  top: -52px; right: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
}
.modal__close:hover { background: #fff; color: var(--ink); }
.modal__caption { color: rgba(255, 255, 255, 0.8); text-align: center; margin-top: 14px; font-size: 0.9rem; }
.modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}
.modal__arrow:hover { background: #fff; color: var(--ink); }
.modal__arrow--prev { left: -66px; }
.modal__arrow--next { right: -66px; }

/* 11. Footer --------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: rgba(255, 255, 255, 0.66); padding-top: clamp(56px, 7vw, 92px); }
.site-footer h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 54px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--gem); }
.site-footer .brand img { height: 46px; margin-bottom: 18px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { flex: 0 0 18px; margin-top: 4px; color: var(--gem); }
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.social-row a:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Floating actions */
.float-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 250;
  display: grid;
  gap: 10px;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  border: 0;
  transition: transform 0.28s var(--ease), background 0.28s;
}
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab--call { background: var(--ink); }
.fab--wa { background: #25d366; }
.fab--top { background: var(--green); opacity: 0; pointer-events: none; }
.fab--top.is-visible { opacity: 1; pointer-events: auto; }

/* 12. Motion / utilities --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

.img-reveal { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.img-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s var(--ease);
}
.img-reveal img { transform: scale(1.12); transition: transform 1.4s var(--ease); }
.img-reveal.is-in::after { transform: scaleX(0); }
.img-reveal.is-in img { transform: scale(1); }

.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 34s linear infinite; }
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--body);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee__track span::after { content: "◆"; color: var(--green); font-size: 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--body); font-size: 0.94rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 500;
  background: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  transition: top 0.25s;
}
.skip-link:focus { top: 12px; }

/* Responsive --------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
  .slider__track > * { flex-basis: calc((100% - 24px) / 2); }
  .searchbar__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .searchbar__grid .btn { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --header-h: 74px; }
  .nav, .header-cta .btn { display: none; }
  .burger { display: block; }
  .header-cta { gap: 8px; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: minmax(0, 1fr); }
  .split--reverse .split__media { order: 0; }
  .split__badge { right: 14px; bottom: 14px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery__item:nth-child(6n + 1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 10; }
  .sec-head--split { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .modal__arrow--prev { left: 4px; }
  .modal__arrow--next { right: 4px; }
  .topbar-links { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .slider__track > * { flex-basis: 86%; }
  .searchbar__grid { grid-template-columns: minmax(0, 1fr); }
  .hero { min-height: 640px; }
  .hero__dots { display: none; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .toolbar { flex-direction: column; align-items: stretch; }
  .parallax { min-height: 440px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .img-reveal img { opacity: 1; transform: none; }
  .img-reveal::after { display: none; }
}
