:root {
  --bg: #f4f0e5;
  --surface: rgba(255, 251, 243, 0.82);
  --surface-strong: #fffdf7;
  --surface-ink: #173f2e;
  --ink: #102419;
  --muted: #506258;
  --line: rgba(16, 36, 25, 0.12);
  --green: #143c2c;
  --green-soft: #1f5b42;
  --gold: #d9a441;
  --gold-soft: rgba(217, 164, 65, 0.14);
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(9, 24, 17, 0.12);
  --max: 1200px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Public Sans", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 164, 65, 0.14), transparent 20%),
    radial-gradient(circle at 80% 0%, rgba(20, 60, 44, 0.18), transparent 22%),
    linear-gradient(180deg, #f8f4eb 0%, #f0eadf 100%);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--green);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 6px;
}

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

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

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

.page-frame {
  min-height: 100vh;
}

.breadcrumb {
  padding: 16px 0;
  font-size: 0.9rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
}

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 14px;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(20, 60, 44, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(9, 24, 17, 0.2);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-mark img {
  width: 52px;
  height: 52px;
}

.brand-mark span {
  display: grid;
  gap: 4px;
}

.brand-mark strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.brand-mark small {
  color: rgba(255, 253, 248, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #efbb5a, var(--gold));
  color: #1b170d;
}

.search-form {
  margin-left: 20px;
}

.search-form input {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 200px;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-slab {
  position: relative;
  min-height: calc(100svh - 18px);
  margin-top: -84px;
  overflow: clip;
  background: var(--green);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.94) brightness(0.68);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 18, 0.82) 0%, rgba(8, 24, 18, 0.54) 48%, rgba(8, 24, 18, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 24, 18, 0.15) 0%, rgba(8, 24, 18, 0.66) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 360px);
  gap: 28px;
  align-items: end;
  min-height: 100svh;
  padding: 140px 0 72px;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.eyebrow,
.card-eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-band h2,
.site-footer h2,
.pricing-panel strong,
.guarantee-panel h3,
.info-card h3,
.visual-card h3,
.region-card h3,
.text-panel h3 {
  font-family: "Sora", sans-serif;
}

.hero-copy h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.3rem);
  line-height: 0.95;
}

.lead {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions,
.cta-actions,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #18160f;
  background: linear-gradient(135deg, #f3c46f, var(--gold));
  box-shadow: 0 16px 34px rgba(217, 164, 65, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 248, 0.88);
  font-weight: 700;
}

.hero-aside {
  align-self: center;
}

.hero-panel,
.text-panel,
.feature-panel,
.metric,
.info-card,
.visual-card,
.region-card,
.cta-band,
.pricing-panel,
.guarantee-panel,
.contact-form {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel,
.feature-panel,
.cta-band,
.guarantee-panel {
  background: rgba(255, 250, 241, 0.9);
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.hero-points {
  display: grid;
  gap: 16px;
}

.hero-points div {
  display: grid;
  gap: 5px;
}

.hero-points strong {
  font-size: 1.1rem;
}

.hero-points span,
.hero-panel p,
.feature-panel p,
.text-panel p,
.info-card p,
.visual-card p,
.region-card p,
.cta-band p,
.site-footer p,
.footer-base span {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 88px 0 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-band h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

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

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

.metric,
.info-card,
.visual-card,
.region-card,
.text-panel,
.feature-panel,
.pricing-panel,
.contact-form {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.metric {
  min-height: 180px;
  display: grid;
  align-content: end;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.86));
}

.metric strong {
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--green);
}

.detail-list,
.mini-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.visual-card,
.region-card {
  padding: 0;
  overflow: hidden;
}

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

.image-strip-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.image-strip-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.image-strip-card figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.visual-card img,
.region-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.visual-card div,
.region-card div {
  padding: 24px;
}

.text-link,
.inline-links a,
.footer-links a,
.footer-contact a {
  color: var(--green-soft);
  font-weight: 700;
}

.inline-links {
  margin-top: 20px;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-cloud span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 60, 44, 0.08);
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 700;
}

.pill-cloud-inline {
  margin: 16px 0 18px;
}

.pill-cloud-compact span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 248, 0.86);
}

.feature-panel {
  padding: 26px;
}

.guarantee-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.guarantee-badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c46f, var(--gold));
  color: #1c180e;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(20, 60, 44, 0.92), rgba(21, 74, 54, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
  color: var(--white);
}

.pricing-panel {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, rgba(20, 60, 44, 0.06), rgba(255, 255, 255, 0.76));
}

.pricing-panel strong {
  color: var(--green);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(16, 36, 25, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.site-footer {
  margin-top: 88px;
  padding: 40px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(217, 164, 65, 0.18), transparent 24%),
    linear-gradient(180deg, #0f2b20 0%, #0a1d16 100%);
  color: var(--white);
}

.footer-grid {
  grid-template-columns: 1.6fr 0.8fr 0.7fr 1fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-territory {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-title {
  margin: 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.footer-links a,
.footer-contact a,
.footer-contact p,
.footer-territory p,
.footer-brand p {
  color: rgba(255, 253, 248, 0.78);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.assist-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
}

.assist-button {
  min-height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c46f, var(--gold));
  color: #1a170e;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(16, 36, 25, 0.24);
  cursor: pointer;
}

.assist-panel {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 61;
  width: min(380px, calc(100% - 24px));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(13, 34, 25, 0.96);
  color: var(--white);
  box-shadow: 0 26px 60px rgba(9, 24, 17, 0.34);
  overflow: hidden;
}

.assist-header,
.assist-body {
  padding: 18px;
}

.assist-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.assist-kicker {
  margin: 0 0 8px;
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.assist-header h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
}

.assist-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.assist-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 18px 0;
}

.assist-tab {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 253, 248, 0.72);
  font-weight: 700;
  cursor: pointer;
}

.assist-tab.is-active {
  background: rgba(243, 196, 111, 0.16);
  color: var(--white);
  border-color: rgba(243, 196, 111, 0.32);
}

.assist-pane {
  display: none;
}

.assist-pane.is-active {
  display: block;
}

.assist-link {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 248, 0.88);
}

.assist-link:last-child {
  border-bottom: 0;
}

.assist-link span {
  color: rgba(255, 253, 248, 0.62);
}

.assist-messages {
  display: grid;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 14px;
}

.assist-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.5;
}

.assist-message-bot {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 248, 0.9);
}

.assist-message-user {
  justify-self: end;
  background: rgba(243, 196, 111, 0.18);
  color: var(--white);
}

.assist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.assist-input {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.assist-input::placeholder {
  color: rgba(255, 253, 248, 0.44);
}

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

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

@media (max-width: 1120px) {
  .site-nav {
    gap: 16px;
    font-size: 0.9rem;
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(20, 60, 44, 0.96);
    box-shadow: 0 16px 34px rgba(9, 24, 17, 0.24);
  }

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

  .hero-content,
  .split-layout,
  .contact-grid,
  .footer-grid,
  .guarantee-panel,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
    padding: 136px 0 54px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .header-shell {
    padding: 12px 14px;
  }

  .brand-mark small {
    display: none;
  }

  .metric-row,
  .card-grid,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    padding: 22px;
  }

  .section {
    padding-top: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .trust-row span {
    width: 100%;
  }

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }

  .assist-panel {
    right: 12px;
    bottom: 84px;
    width: calc(100% - 24px);
  }

  .assist-launcher {
    right: 12px;
    bottom: 12px;
  }

  .assist-form {
    grid-template-columns: 1fr;
  }
}