:root {
  --ink: #09110f;
  --ink-soft: #15201d;
  --forest: #10372f;
  --forest-2: #17483d;
  --forest-3: #1e5a4b;
  --amber: #f2bd4b;
  --amber-dark: #d78a22;
  --orange: #e77724;
  --cream: #fbf7ed;
  --cream-2: #f2eadb;
  --white: #ffffff;
  --text: #23302c;
  --muted: #64706b;
  --line: rgba(16, 55, 47, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --success: #1e8f5a;
  --danger: #b9463d;
  --shadow-sm: 0 10px 30px rgba(9, 17, 15, 0.08);
  --shadow-md: 0 24px 70px rgba(9, 17, 15, 0.13);
  --shadow-dark: 0 26px 80px rgba(0, 0, 0, 0.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-h: 78px;
  --section-space: clamp(76px, 8vw, 126px);
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(242, 189, 75, 0.72);
  outline-offset: 3px;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

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

ul,
ol {
  padding-left: 1.15rem;
}

section,
[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-sm {
  padding-block: clamp(52px, 6vw, 82px);
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 189, 75, 0.12), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(30, 90, 75, 0.35), transparent 34%),
    var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark .section-title,
.section-dark strong {
  color: var(--white);
}

.section-forest {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.8);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--forest-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  content: "";
}

.section-dark .eyebrow,
.section-forest .eyebrow {
  color: var(--amber);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.section-title {
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.center p {
  margin-inline: auto;
}

.section-dark .section-heading p,
.section-forest .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 4000;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.topbar {
  position: relative;
  z-index: 60;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

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

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

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.topbar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(242, 189, 75, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  width: 100%;
  border-bottom: 1px solid rgba(16, 55, 47, 0.1);
  background: rgba(251, 247, 237, 0.98);
  box-shadow: 0 7px 24px rgba(9, 17, 15, 0.06);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 12px 40px rgba(9, 17, 15, 0.11);
}

.header-inner {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 13px;
  color: #2f3b37;
  font-size: 0.91rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

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

.desktop-nav a[aria-current="page"] {
  color: var(--forest);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: var(--ink);
  box-shadow: 0 13px 30px rgba(231, 119, 36, 0.21);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(231, 119, 36, 0.29);
}

.btn-dark {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(16, 55, 47, 0.18);
}

.btn-dark:hover {
  background: var(--forest-2);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-light:hover {
  border-color: var(--amber);
  background: rgba(242, 189, 75, 0.12);
}

.btn-outline {
  border-color: rgba(16, 55, 47, 0.24);
  background: transparent;
  color: var(--forest);
}

.btn-outline:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.btn-sm {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
}

.icon-inline {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 55, 47, 0.16);
  border-radius: 14px;
  background: var(--white);
  color: var(--forest);
}

.hamburger {
  position: relative;
  width: 22px;
  height: 16px;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform var(--transition), top var(--transition), opacity var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 7px; }
.hamburger span:nth-child(3) { top: 14px; }

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-menu-shell {
  position: fixed;
  inset: 0;
  z-index: 2900;
  display: grid;
  visibility: hidden;
  grid-template-columns: minmax(0, 1fr) min(88vw, 390px);
  pointer-events: none;
}

.mobile-menu-shell.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-backdrop {
  opacity: 0;
  background: rgba(1, 7, 5, 0.66);
  transition: opacity 260ms ease;
}

.mobile-menu-shell.is-open .mobile-backdrop {
  opacity: 1;
}

.mobile-panel {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: #fdfaf2;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
  transform: translateX(105%);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu-shell.is-open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.mobile-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--forest);
  font-size: 1.4rem;
}

.mobile-nav {
  display: grid;
  gap: 6px;
  padding-block: 26px;
}

.mobile-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: 13px;
  color: var(--ink);
  font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: rgba(16, 55, 47, 0.08);
  color: var(--forest);
}

.mobile-panel-contact {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(54px, 7vw, 100px) clamp(70px, 9vw, 122px);
  background:
    linear-gradient(130deg, rgba(16, 55, 47, 0.98) 0%, rgba(9, 17, 15, 0.98) 52%, rgba(9, 17, 15, 0.92) 100%);
  color: rgba(255, 255, 255, 0.76);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(242, 189, 75, 0.16);
  box-shadow: 0 0 0 60px rgba(242, 189, 75, 0.03), 0 0 0 120px rgba(242, 189, 75, 0.02);
}

.hero::after {
  right: -200px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(30, 90, 75, 0.42), transparent 70%);
}

.route-lines {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(30deg, transparent 49.4%, rgba(255,255,255,0.08) 49.5%, rgba(255,255,255,0.08) 50.5%, transparent 50.6%),
    linear-gradient(150deg, transparent 49.4%, rgba(255,255,255,0.05) 49.5%, rgba(255,255,255,0.05) 50.5%, transparent 50.6%);
  background-size: 210px 210px;
  mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(42px, 7vw, 92px);
}

.hero-copy {
  max-width: 680px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-check::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(242, 189, 75, 0.4);
  border-radius: 50%;
  color: var(--amber);
  content: "✓";
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-dark);
}

.hero-image-frame::before {
  position: absolute;
  inset: -16px 20px 20px -16px;
  z-index: -1;
  border: 1px solid rgba(242, 189, 75, 0.3);
  border-radius: 34px;
  content: "";
}

.hero-image-frame img {
  width: 100%;
  border-radius: 20px;
  background: #15201d;
  object-fit: contain;
}

.hero-floating-card {
  position: absolute;
  right: -20px;
  bottom: -34px;
  width: min(84%, 340px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.hero-floating-card .small-label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-2);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-floating-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -26px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 14px;
  padding: 22px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon,
.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 15px;
  background: rgba(242, 189, 75, 0.16);
  color: var(--forest);
}

.trust-icon svg,
.icon-box svg {
  width: 23px;
  height: 23px;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.95rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.8rem;
}

.split-grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 7vw, 88px);
}

.copy-block h2 {
  margin-bottom: 22px;
}

.copy-block p {
  color: var(--muted);
}

.copy-block .lead {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 650;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.route-board {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(16,55,47,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,55,47,0.08) 1px, transparent 1px),
    var(--white);
  background-size: 38px 38px;
  box-shadow: var(--shadow-md);
}

.route-board::before {
  position: absolute;
  top: 80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 2px dashed rgba(231, 119, 36, 0.36);
  border-radius: 50%;
  content: "";
}

.route-board::after {
  position: absolute;
  bottom: -70px;
  left: -90px;
  width: 350px;
  height: 350px;
  border: 2px dashed rgba(16, 55, 47, 0.24);
  border-radius: 50%;
  content: "";
}

.route-board-card {
  position: absolute;
  z-index: 2;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.route-board-card.start {
  top: 50px;
  left: 32px;
  width: 230px;
}

.route-board-card.end {
  right: 32px;
  bottom: 46px;
  width: 250px;
}

.route-board-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-board-card strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.route-path {
  position: absolute;
  top: 165px;
  left: 102px;
  z-index: 1;
  width: 62%;
  height: 190px;
  border-right: 4px solid transparent;
  border-bottom: 4px dashed var(--amber-dark);
  border-radius: 0 0 100% 50%;
  transform: rotate(-7deg);
}

.route-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 5px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: rotate(-45deg);
}

.route-pin::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.route-pin.one {
  top: 142px;
  left: 84px;
}

.route-pin.two {
  right: 84px;
  bottom: 130px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(9,17,15,0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  border-color: rgba(231,119,36,0.45);
  box-shadow: 0 24px 66px rgba(9,17,15,0.13);
  transform: translateY(-7px);
}

.service-media {
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  background: #e8e5dc;
}

.service-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 500ms ease;
}

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

.service-body {
  padding: 28px;
}

.service-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--amber-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-body h3 {
  margin-bottom: 12px;
}

.service-body p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 850;
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  counter-reset: step;
}

.process-card {
  position: relative;
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  counter-increment: step;
}

.process-card::before {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(242,189,75,0.4);
  border-radius: 50%;
  color: var(--amber);
  content: "0" counter(step);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.process-card h3 {
  margin-bottom: 12px;
}

.process-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.94rem;
}

.feature-image {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.feature-image::after {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  width: 72%;
  height: 72%;
  border-radius: 28px;
  background: var(--amber);
  content: "";
}

.feature-image img {
  width: 100%;
  border-radius: 18px;
  background: #e8e5dc;
  object-fit: contain;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(242,189,75,0.22);
  color: var(--forest);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.icon-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.icon-card:hover {
  border-color: rgba(231,119,36,0.36);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.icon-card .icon-box {
  margin-bottom: 24px;
}

.icon-card h3 {
  margin-bottom: 11px;
  font-size: 1.35rem;
}

.icon-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(242,189,75,0.32);
  border-radius: 15px;
  background: rgba(242,189,75,0.1);
  color: #53615b;
  font-size: 0.9rem;
}

.note strong {
  color: var(--forest);
}

.counter-band {
  overflow: hidden;
  background: linear-gradient(115deg, var(--forest), #0b2922);
  color: var(--white);
}

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

.counter-item {
  min-height: 180px;
  padding: 38px 28px;
  text-align: center;
}

.counter-item + .counter-item {
  border-left: 1px solid rgba(255,255,255,0.13);
}

.counter-number {
  display: block;
  margin-bottom: 7px;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
}

.counter-label {
  color: rgba(255,255,255,0.72);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.area-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 30px;
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-dark);
}

.area-panel::before {
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background:
    radial-gradient(circle at 22% 20%, rgba(242,189,75,0.18), transparent 25%),
    linear-gradient(45deg, transparent 48.5%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 51.5%);
  background-size: auto, 80px 80px;
  content: "";
}

.area-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
}

.area-panel h2 {
  color: var(--white);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}

.area-tag {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 750;
}

.area-callout {
  padding: 28px;
  border: 1px solid rgba(242,189,75,0.32);
  border-radius: 22px;
  background: rgba(242,189,75,0.1);
}

.area-callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
}

.faq-plus {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
}

.contact-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 18px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row .icon-box {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.contact-row small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row strong,
.contact-row a {
  color: var(--forest);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-field label .required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(16,55,47,0.18);
  border-radius: 13px;
  background: #fffdf8;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--forest-3);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30,90,75,0.09);
  outline: none;
}

.form-control[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-hint {
  color: var(--muted);
  font-size: 0.77rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(30,143,90,0.25);
  background: rgba(30,143,90,0.09);
  color: #146940;
}

.form-status.error {
  border: 1px solid rgba(185,70,61,0.25);
  background: rgba(185,70,61,0.08);
  color: #8e302a;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

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

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.map-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--forest), #0b2b24 65%, #132019);
  color: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-dark);
}

.cta-banner::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(242,189,75,0.08);
  border-radius: 50%;
  content: "";
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.cta-banner h2 {
  max-width: 690px;
  margin-bottom: 14px;
  color: var(--white);
}

.cta-banner p {
  max-width: 660px;
}

.cta-banner-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(62px, 8vw, 112px);
  background:
    radial-gradient(circle at 85% 20%, rgba(242,189,75,0.14), transparent 28%),
    linear-gradient(125deg, var(--forest), var(--ink));
  color: rgba(255,255,255,0.72);
}

.page-hero::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,0.025), 0 0 0 110px rgba(255,255,255,0.018);
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 58px;
}

.page-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.page-hero p {
  max-width: 650px;
  font-size: 1.08rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--amber);
}

.breadcrumbs span:not(:last-child)::after {
  margin-left: 8px;
  color: rgba(255,255,255,0.35);
  content: "/";
}

.page-hero-image {
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow-dark);
}

.page-hero-image img {
  width: 100%;
  border-radius: 16px;
  background: #19231f;
  object-fit: contain;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 50px;
}

.prose {
  color: #48534f;
}

.prose h2 {
  margin-top: 1.25em;
  margin-bottom: 0.55em;
}

.prose h3 {
  margin-top: 1.5em;
  margin-bottom: 0.55em;
}

.prose p,
.prose li {
  color: #52605a;
}

.prose a {
  color: var(--forest-2);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(16,55,47,0.25);
  text-underline-offset: 3px;
}

.sidebar-card {
  position: sticky;
  top: calc(var(--header-h) + 26px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  margin-bottom: 16px;
}

.sidebar-links {
  display: grid;
  gap: 8px;
}

.sidebar-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 11px;
  background: rgba(16,55,47,0.05);
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.sidebar-links a:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateX(3px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.detail-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.detail-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.info-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: rgba(16,55,47,0.06);
  color: var(--forest);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-table tr:last-child td {
  border-bottom: 0;
}

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

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

.gallery-media {
  display: grid;
  min-height: 360px;
  place-items: center;
  background: #e7e3da;
}

.gallery-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 500ms ease;
}

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

.gallery-caption {
  padding: 22px 24px;
}

.gallery-caption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.gallery-caption span {
  color: var(--muted);
  font-size: 0.84rem;
}

.representative-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(242,189,75,0.16);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.policy-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.policy-card h2 {
  margin-top: 1.35em;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.policy-card h2:first-child {
  margin-top: 0;
}

.notice-card {
  padding: 24px;
  border-left: 4px solid var(--amber-dark);
  border-radius: 0 16px 16px 0;
  background: rgba(242,189,75,0.11);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #070d0b;
  color: rgba(255,255,255,0.65);
}

.footer-main {
  padding-block: clamp(64px, 7vw, 94px) 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.8fr 1fr;
  gap: 40px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-tagline {
  color: rgba(255,255,255,0.48);
}

.footer-brand p {
  max-width: 380px;
  margin-top: 22px;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

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

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom {
  padding-block: 20px;
  border-top: 1px solid rgba(255,255,255,0.09);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.floating-actions {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 2800;
  display: grid;
  gap: 12px;
}

.float-btn {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-btn::after {
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  opacity: 0;
  animation: softRipple 3.8s ease-out infinite;
}

.float-btn:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(-4px) scale(1.03);
}

.float-btn svg {
  width: 25px;
  height: 25px;
}

.float-whatsapp {
  background: #1ea75a;
}

.float-call {
  background: var(--forest-2);
}

.float-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  width: max-content;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity var(--transition), transform var(--transition);
}

.float-btn:hover .float-tooltip,
.float-btn:focus-visible .float-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

.back-to-top {
  position: fixed;
  right: max(88px, calc(env(safe-area-inset-right) + 88px));
  bottom: max(23px, env(safe-area-inset-bottom));
  z-index: 2700;
  display: grid;
  width: 48px;
  height: 48px;
  visibility: hidden;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal[data-reveal="left"] {
  transform: translateX(-28px);
}

.reveal[data-reveal="right"] {
  transform: translateX(28px);
}

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

.stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

@keyframes softRipple {
  0%, 58% { opacity: 0; transform: scale(0.92); }
  72% { opacity: 0.42; }
  100% { opacity: 0; transform: scale(1.28); }
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy > * {
  animation: heroIn 650ms both;
}

.hero-copy > *:nth-child(2) { animation-delay: 80ms; }
.hero-copy > *:nth-child(3) { animation-delay: 150ms; }
.hero-copy > *:nth-child(4) { animation-delay: 220ms; }
.hero-copy > *:nth-child(5) { animation-delay: 290ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal[data-reveal="left"],
  .reveal[data-reveal="right"] {
    opacity: 1;
    transform: none;
  }
}

/* Contrast safeguards for light cards placed inside dark sections. */
.section-dark .contact-card,
.section-forest .contact-card {
  color: var(--text);
}

.section-dark .contact-card h2,
.section-dark .contact-card h3,
.section-dark .contact-card h4,
.section-dark .contact-card strong,
.section-forest .contact-card h2,
.section-forest .contact-card h3,
.section-forest .contact-card h4,
.section-forest .contact-card strong {
  color: var(--ink);
}

.section-dark .contact-card p,
.section-forest .contact-card p {
  color: var(--muted);
}

.section-dark .check-list li,
.section-forest .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .note,
.section-forest .note {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark .note strong,
.section-forest .note strong {
  color: var(--amber);
}

/* Keep the open mobile navigation above the sticky header so its close control remains usable. */
.mobile-menu-shell {
  z-index: 4000;
}

/* Clip decorative overflow without turning the page root into a scroll container; this preserves sticky positioning. */
html,
body {
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-delay: 0ms !important;
    transition-delay: 0ms !important;
  }
}
