:root {
  --bg: #f8f5ed;
  --bg-alt: #f2ede1;
  --surface: #ffffff;
  --surface-2: #fcfaf4;
  --green-950: #0b2a1d;
  --green-900: #113822;
  --green-800: #184d2b;
  --green-700: #1f6234;
  --green-600: #2b7a3f;
  --gold-700: #7c5a10;
  --gold-600: #a67919;
  --gold-500: #c79b27;
  --gold-300: #f0d79a;
  --text: #18231d;
  --muted: #66756b;
  --line: rgba(17, 56, 34, 0.12);
  --shadow: 0 18px 50px rgba(11, 42, 29, 0.12);
  --shadow-soft: 0 10px 28px rgba(11, 42, 29, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", "Noto Sans Devanagari", "Noto Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(199, 155, 39, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(31, 98, 52, 0.09), transparent 30%),
    linear-gradient(180deg, #fefcf7 0%, #f5f0e6 100%);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  transition: top 0.2s ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 241, 0.9);
  border-bottom: 1px solid rgba(17, 56, 34, 0.08);
}

.site-header__inner {
  width: min(100% - 20px, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

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

.brand__mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
  flex: 0 0 auto;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  min-width: 0;
}

.brand__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--green-700);
  text-transform: uppercase;
}

.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-950);
  line-height: 1.1;
}

.brand__sub {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-search {
  position: relative;
  flex: 1 1 360px;
  min-width: 0;
}

.header-search input {
  width: 100%;
  border: 1px solid rgba(17, 56, 34, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-radius: 999px;
  padding: 13px 48px 13px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-search input:focus {
  outline: 3px solid rgba(199, 155, 39, 0.24);
  border-color: rgba(199, 155, 39, 0.55);
}

.header-search__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-700);
  width: 20px;
  height: 20px;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
  max-height: 380px;
  overflow-y: auto;
}

.search-results.is-open {
  display: block;
}

.search-result {
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(17, 56, 34, 0.08);
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result:hover,
.search-result:focus-within {
  background: rgba(31, 98, 52, 0.05);
}

.search-result__title {
  font-weight: 700;
  color: var(--green-900);
}

.search-result__meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.94rem;
  transition: all 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(31, 98, 52, 0.08);
  color: var(--green-950);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 56, 34, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--green-900);
  box-shadow: var(--shadow-soft);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta:focus-visible {
  outline: 3px solid rgba(199, 155, 39, 0.28);
  outline-offset: 2px;
}

.cta--detail {
  background:
    linear-gradient(135deg, rgba(255, 239, 187, 0.95), rgba(199, 155, 39, 0.98)),
    linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #132216;
  border-color: rgba(124, 90, 16, 0.35);
  box-shadow: 0 18px 36px rgba(124, 90, 16, 0.22);
}

.cta--detail:hover {
  box-shadow: 0 20px 40px rgba(124, 90, 16, 0.3);
}

.cta--primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
}

.cta--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  border-color: rgba(17, 56, 34, 0.12);
}

.cta--ghost {
  background: transparent;
  color: var(--green-900);
  border-color: rgba(17, 56, 34, 0.14);
  box-shadow: none;
}

.cta__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.page {
  padding: 28px 0 58px;
}

.hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at top right, rgba(199, 155, 39, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(19, 56, 34, 0.98), rgba(31, 98, 52, 0.96));
  color: #fff;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 280px;
  height: 280px;
  top: -100px;
  right: -80px;
  background: rgba(199, 155, 39, 0.16);
  filter: blur(20px);
}

.hero::after {
  width: 240px;
  height: 240px;
  bottom: -120px;
  left: -100px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(10px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 36px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-300);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero__title {
  margin: 14px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 0.95;
}

.hero__lead {
  margin: 0 0 18px;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero__note {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__media {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.hero-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-card__product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.hero-card__product img {
  border-radius: 20px;
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.stat {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17, 56, 34, 0.08);
}

.stat__value {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
  color: var(--green-900);
}

.stat__label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section {
  margin-top: 28px;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--green-950);
}

.section__sub {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.card--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,243,232,0.92));
}

.card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.card__title {
  margin: 10px 0 8px;
  font-size: 1.06rem;
  color: var(--green-950);
}

.card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.metric {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.metric__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 98, 52, 0.14), rgba(199, 155, 39, 0.14));
  color: var(--green-900);
  flex: 0 0 auto;
}

.metric__value {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-950);
}

.metric__label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 98, 52, 0.08);
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f7f1e5);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

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

.image-card__body {
  padding: 20px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

.list li + li {
  margin-top: 8px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

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

.table th,
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(17, 56, 34, 0.08);
  text-align: left;
  vertical-align: top;
}

.table th {
  background: rgba(31, 98, 52, 0.05);
  color: var(--green-950);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.table tr:hover td {
  background: rgba(31, 98, 52, 0.03);
}

.form {
  display: grid;
  gap: 14px;
}

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

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

.field label {
  font-weight: 700;
  color: var(--green-950);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(17, 56, 34, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(199, 155, 39, 0.2);
  border-color: rgba(199, 155, 39, 0.5);
}

.field__hint {
  font-size: 0.84rem;
  color: var(--muted);
}

.error {
  color: #9a2e18;
  font-size: 0.86rem;
  min-height: 1.2em;
}

.success-box {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31, 98, 52, 0.1), rgba(199, 155, 39, 0.12));
  border: 1px solid rgba(31, 98, 52, 0.16);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 98, 52, 0.06);
  color: var(--muted);
}

.step.is-active {
  background: var(--green-900);
  color: #fff;
}

.step.is-done {
  background: rgba(199, 155, 39, 0.16);
  color: var(--green-950);
}

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

.tab {
  border: 1px solid rgba(17, 56, 34, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-900);
  border-radius: 999px;
  padding: 10px 14px;
}

.tab.is-active {
  background: var(--green-900);
  color: #fff;
}

.sidebar-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 18px;
}

.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--green-950);
  margin-bottom: 8px;
}

.sidebar__link:hover,
.sidebar__link.is-active {
  background: rgba(31, 98, 52, 0.08);
}

.sidebar__link--detail {
  background: linear-gradient(135deg, rgba(255, 239, 187, 0.95), rgba(199, 155, 39, 0.9));
  color: #132216;
  font-weight: 800;
}

.divider {
  height: 1px;
  background: rgba(17, 56, 34, 0.1);
  margin: 18px 0;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.accordion__button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--green-950);
  font-weight: 800;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.accordion__panel {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.72;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.accordion__item.is-open .accordion__button svg {
  transform: rotate(180deg);
}

.grid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toast-stack {
  position: fixed;
  right: 16px;
  bottom: 92px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: 260px;
  max-width: 320px;
  background: rgba(17, 56, 34, 0.96);
  color: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.toast--gold {
  background: rgba(124, 90, 16, 0.96);
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  gap: 10px;
  align-items: center;
}

.floating-contact__detail {
  min-width: 168px;
}

.floating-contact__mini {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 18px;
}

.footer {
  margin-top: 36px;
  padding: 34px 0 120px;
  background: linear-gradient(180deg, rgba(17, 56, 34, 0.98), rgba(11, 42, 29, 0.98));
  color: rgba(255, 255, 255, 0.93);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.footer a,
.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li + li {
  margin-top: 8px;
}

.footer__detail {
  display: inline-flex;
  margin-top: 10px;
}

.copyright {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.page-banner {
  padding: 24px 0 0;
}

.page-banner__box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(17, 56, 34, 0.98), rgba(31, 98, 52, 0.92));
  color: #fff;
  box-shadow: var(--shadow);
}

.page-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.page-banner__lead {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 72ch;
  line-height: 1.7;
}

.muted {
  color: var(--muted);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.mini-kpi {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.mini-kpi strong {
  display: block;
  font-size: 1.15rem;
  color: var(--green-950);
}

.mini-kpi span {
  color: var(--muted);
  font-size: 0.92rem;
}

.responsive-hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .footer__grid,
  .card-grid--4,
  .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__inner,
  .split,
  .sidebar-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 960px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .header-search {
    order: 4;
    flex-basis: 100%;
  }

  .nav-panel {
    width: 100%;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    display: none;
    width: 100%;
    padding-top: 8px;
  }

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

  .hero__inner {
    padding: 24px;
  }

  .card-grid--3,
  .card-grid--4,
  .hero-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
  }
}

@media (max-width: 700px) {
  .page {
    padding-top: 18px;
  }

  .site-shell {
    width: min(100% - 16px, var(--container));
  }

  .site-header__inner {
    width: min(100% - 12px, var(--container));
    padding: 10px 0 12px;
  }

  .brand__sub {
    display: none;
  }

  .nav-panel {
    gap: 10px;
  }

  .cta {
    padding: 11px 14px;
  }

  .hero {
    border-radius: 24px;
  }

  .hero__inner {
    padding: 18px;
    gap: 18px;
  }

  .hero-card__product {
    grid-template-columns: 1fr;
  }

  .page-banner__box {
    padding: 18px;
    border-radius: 22px;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .floating-contact__detail {
    min-width: 0;
    flex: 1 1 auto;
  }

  .floating-contact__mini {
    width: 48px;
    height: 48px;
  }

  .toast-stack {
    left: 12px;
    right: 12px;
    bottom: 82px;
  }

  .toast {
    min-width: 0;
    max-width: none;
  }

  .footer {
    padding-bottom: 140px;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}

body.nav-open,
body.sidebar-open {
  overflow: hidden;
}

body {
  background:
    radial-gradient(circle at top left, rgba(199, 155, 39, 0.12), transparent 20%),
    radial-gradient(circle at top right, rgba(27, 79, 49, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f5efe3 42%, #f3ecde 100%);
}

.site-header {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.88), rgba(248, 243, 233, 0.76)),
    rgba(248, 243, 233, 0.78);
  border-bottom: 1px solid rgba(194, 155, 61, 0.24);
  box-shadow: 0 10px 30px rgba(11, 42, 29, 0.08);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 155, 39, 0.5), transparent);
}

.site-header__inner {
  padding: 12px 0;
}

.brand__mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(243, 235, 215, 0.92));
  border: 1px solid rgba(199, 155, 39, 0.18);
}

.brand__name {
  font-size: 1.22rem;
}

.brand--footer .brand__mark {
  width: 62px;
  height: 62px;
}

.header-search input {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 56, 35, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 12px 24px rgba(11, 42, 29, 0.04);
}

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

.nav a {
  position: relative;
  padding: 11px 13px;
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(19, 56, 34, 0.96), rgba(31, 98, 52, 0.88));
  color: #fff;
  box-shadow: 0 12px 26px rgba(11, 42, 29, 0.16);
}

.nav a:hover {
  background: rgba(31, 98, 52, 0.08);
}

.nav-backdrop,
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 62;
  background: rgba(8, 24, 16, 0.46);
  backdrop-filter: blur(6px);
}

.nav--drawer {
  z-index: 63;
}

.nav__header {
  display: none;
}

.nav__close {
  display: none;
}

.dashboard-menu-btn {
  display: none;
}

.hero {
  border: 1px solid rgba(199, 155, 39, 0.16);
  box-shadow: 0 28px 70px rgba(11, 42, 29, 0.18);
}

.hero__inner {
  padding: 42px;
}

.hero__eyebrow {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__title {
  line-height: 0.92;
  text-wrap: balance;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 233, 0.97));
  border: 1px solid rgba(199, 155, 39, 0.16);
  box-shadow: 0 24px 60px rgba(11, 42, 29, 0.14);
}

.hero-card__product {
  align-items: center;
}

.hero-card__product img {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(11, 42, 29, 0.12);
}

.hero-stats .stat {
  border: 1px solid rgba(199, 155, 39, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 246, 236, 0.95));
}

.card,
.stat,
.image-card,
.page-banner__box {
  backdrop-filter: blur(16px);
}

.card {
  border: 1px solid rgba(17, 56, 34, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 236, 0.94));
  box-shadow: 0 20px 48px rgba(11, 42, 29, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 62px rgba(11, 42, 29, 0.12);
  border-color: rgba(199, 155, 39, 0.18);
}

.card--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 226, 0.92));
}

.card__eyebrow {
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.section__title {
  letter-spacing: -0.02em;
}

.page-banner__box {
  border: 1px solid rgba(199, 155, 39, 0.16);
  background:
    radial-gradient(circle at top right, rgba(199, 155, 39, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(13, 45, 31, 0.98), rgba(25, 76, 46, 0.94));
}

.page-banner__title {
  text-wrap: balance;
}

.cta {
  min-height: 46px;
  border: 1px solid rgba(17, 56, 34, 0.12);
  box-shadow: 0 12px 26px rgba(11, 42, 29, 0.08);
}

.cta--detail {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 247, 214, 1), rgba(238, 205, 113, 0.98));
  border-color: rgba(143, 106, 18, 0.28);
}

.cta--detail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.cta--detail:hover::after {
  transform: translateX(120%);
}

.cta--primary {
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
}

.cta--secondary {
  background: rgba(255, 255, 255, 0.82);
}

.floating-contact {
  right: 16px;
  bottom: 16px;
  z-index: 82;
}

.floating-contact__detail {
  min-width: 210px;
}

.floating-contact__detail .cta {
  width: 100%;
  justify-content: center;
}

.footer {
  padding: 32px 0 132px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(8, 28, 18, 0.98), rgba(6, 31, 21, 0.98));
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at top right, rgba(199, 155, 39, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 231, 0.92));
}

.footer__grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
}

.footer__grid > div {
  min-width: 0;
}

.footer .brand__name,
.footer .brand__eyebrow,
.footer .brand__sub,
.footer h4 {
  color: #fff;
}

.footer .brand--footer .brand__name,
.footer .brand--footer .brand__sub {
  color: rgba(255, 255, 255, 0.92);
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.82);
}

.footer .cta--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.footer .cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sidebar {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(199, 155, 39, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 243, 233, 0.82));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 54px rgba(11, 42, 29, 0.1);
  transition: width 0.22s ease, transform 0.22s ease;
}

.sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 2px 2px 10px;
  border-bottom: 1px solid rgba(17, 56, 34, 0.08);
}

.sidebar__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 4px;
}

.sidebar__collapse {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(17, 56, 34, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-900);
}

.sidebar__link {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 56, 34, 0.08);
  box-shadow: 0 8px 22px rgba(11, 42, 29, 0.04);
}

.sidebar__link:hover,
.sidebar__link.is-active {
  background: linear-gradient(135deg, rgba(19, 56, 34, 0.96), rgba(31, 98, 52, 0.9));
  color: #fff;
  transform: translateY(-2px);
}

.sidebar__link--detail {
  background: linear-gradient(135deg, rgba(255, 247, 214, 1), rgba(238, 205, 113, 0.98));
  color: #17301f;
  border-color: rgba(143, 106, 18, 0.2);
}

.sidebar-layout {
  grid-template-columns: 300px minmax(0, 1fr);
}

body.sidebar-collapsed .sidebar-layout {
  grid-template-columns: 92px minmax(0, 1fr);
}

body.sidebar-collapsed .sidebar {
  padding: 14px 12px;
}

body.sidebar-collapsed .sidebar__link span,
body.sidebar-collapsed .sidebar__top strong,
body.sidebar-collapsed .sidebar__eyebrow {
  display: none;
}

body.sidebar-collapsed .sidebar__link {
  justify-content: center;
}

body.sidebar-collapsed .sidebar__link svg {
  margin: 0;
}

.sidebar-backdrop {
  display: none;
}

.nav--drawer {
  gap: 8px;
}

.nav--drawer .nav__header {
  display: none;
}

@media (max-width: 1180px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .dashboard-menu-btn {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav--drawer {
    position: fixed;
    top: 12px;
    bottom: 12px;
    left: 12px;
    width: min(88vw, 380px);
    max-height: calc(100vh - 24px);
    padding: 16px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 233, 0.96));
    box-shadow: 0 28px 72px rgba(8, 24, 16, 0.28);
    border: 1px solid rgba(199, 155, 39, 0.2);
    transform: translateX(-120%);
    transition: transform 0.24s ease;
    overflow: auto;
  }

  .nav--drawer.is-open {
    transform: translateX(0);
  }

  .nav--drawer .nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(17, 56, 34, 0.08);
  }

  .nav__eyebrow {
    display: block;
    font-size: 0.72rem;
    color: var(--gold-700);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  .nav__close {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(17, 56, 34, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: var(--green-900);
  }

  .nav {
    display: grid;
    gap: 8px;
  }

  .nav a {
    justify-content: flex-start;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 56, 34, 0.08);
  }

  .nav a[aria-current="page"] {
    background: linear-gradient(135deg, rgba(19, 56, 34, 0.96), rgba(31, 98, 52, 0.9));
  }

  .sidebar-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    top: 12px;
    bottom: 12px;
    left: 12px;
    width: min(84vw, 320px);
    z-index: 64;
    transform: translateX(-120%);
    overflow: auto;
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    display: block;
    z-index: 63;
  }

  .sidebar:not(.is-open) {
    visibility: visible;
  }

  .sidebar__link span {
    display: inline;
  }

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

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

  .footer {
    padding-bottom: 142px;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .floating-contact__detail {
    min-width: 0;
    width: 100%;
  }

  .floating-contact__detail .cta {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .header-search {
    flex-basis: 100%;
  }

  .nav-panel {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .hero__inner {
    padding: 20px;
  }

  .hero__title {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero__actions .cta {
    width: 100%;
    justify-content: center;
  }

  .hero-card__product {
    grid-template-columns: 1fr;
  }

  .page-banner__box {
    padding: 18px;
  }

  .page-banner__box .grid-actions .cta {
    width: 100%;
    justify-content: center;
  }

  .sidebar {
    width: min(90vw, 320px);
  }

  .floating-contact {
    bottom: 10px;
  }
}

.guide-coverage-grid .card {
  min-height: 100%;
}

/* Final shell overrides */
body.nav-open,
body.sidebar-open {
  overflow: hidden;
}

.floating-contact,
.floating-contact__mini {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(246, 239, 226, 0.86));
  border-bottom: 1px solid rgba(199, 155, 39, 0.18);
  box-shadow: 0 12px 34px rgba(11, 42, 29, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.brand--compact {
  min-width: 0;
}

.brand--center {
  justify-self: center;
  text-align: center;
  min-width: 0;
}

.brand--icon {
  justify-self: start;
}

.brand--center .brand__name {
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.brand--center .brand__sub {
  display: block;
  font-size: 0.74rem;
  color: var(--green-700);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 248, 223, 0.96), rgba(235, 201, 109, 0.86));
  border: 1px solid rgba(143, 106, 18, 0.22);
  box-shadow: 0 14px 28px rgba(11, 42, 29, 0.08);
}

.nav-backdrop,
.sidebar-backdrop {
  background: rgba(7, 22, 15, 0.5);
  backdrop-filter: blur(8px);
}

.nav--drawer {
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: auto;
  width: min(92vw, 390px);
  padding: 16px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(247, 240, 228, 0.96));
  border: 1px solid rgba(199, 155, 39, 0.2);
  box-shadow: 0 30px 80px rgba(8, 24, 16, 0.28);
  transform: translateX(120%);
  transition: transform 0.25s ease;
  overflow: auto;
  z-index: 121;
  display: grid;
  gap: 10px;
}

.nav--drawer.is-open {
  transform: translateX(0);
}

.nav--drawer .nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(17, 56, 34, 0.08);
}

.nav__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 4px;
}

.nav__close {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(17, 56, 34, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-900);
  font-size: 1.35rem;
  line-height: 1;
}

.header-search--drawer {
  position: relative;
  width: 100%;
  margin-bottom: 6px;
}

.header-search--drawer .search-results {
  position: relative;
  top: auto;
  margin-top: 10px;
  max-height: 36vh;
}

.nav-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 56, 34, 0.08);
  color: var(--green-950);
  box-shadow: 0 10px 22px rgba(11, 42, 29, 0.05);
}

.nav-item:hover,
.nav-item.is-active {
  background: linear-gradient(135deg, rgba(19, 56, 34, 0.96), rgba(31, 98, 52, 0.92));
  color: #fff;
}

.nav-item--detail {
  background: linear-gradient(135deg, rgba(255, 247, 214, 1), rgba(238, 205, 113, 0.98));
  color: #17301f;
  border-color: rgba(143, 106, 18, 0.22);
}

.nav-item__icon,
.nav-item__arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.nav-item__arrow svg {
  width: 16px;
  height: 16px;
}

.nav__footer {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 56, 34, 0.08);
}

.nav__footer .cta {
  width: 100%;
  justify-content: center;
}

.nav-toggle svg,
.nav__close svg {
  width: 20px;
  height: 20px;
}

.sidebar {
  position: fixed;
  top: 10px;
  right: 10px;
  left: auto;
  bottom: 10px;
  width: min(88vw, 360px);
  z-index: 121;
  transform: translateX(120%);
  transition: transform 0.25s ease;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(247, 240, 228, 0.96));
  border: 1px solid rgba(199, 155, 39, 0.2);
  box-shadow: 0 30px 80px rgba(8, 24, 16, 0.28);
  backdrop-filter: blur(18px);
  overflow: auto;
}

body.sidebar-open .sidebar {
  transform: translateX(0);
}

.sidebar__top {
  position: sticky;
  top: 0;
  z-index: 1;
  background: inherit;
}

.sidebar__link {
  min-height: 50px;
}

body.sidebar-collapsed .sidebar {
  width: 92px;
  padding-inline: 10px;
}

body.sidebar-collapsed .sidebar__link {
  justify-content: center;
}

body.sidebar-collapsed .sidebar__link span,
body.sidebar-collapsed .sidebar__top strong,
body.sidebar-collapsed .sidebar__eyebrow {
  display: none;
}

.dashboard-menu-btn {
  display: inline-flex;
}

.footer {
  padding: 28px 0 110px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(8, 28, 18, 0.98), rgba(6, 31, 21, 0.98));
}

.footer__cta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer__grid {
  grid-template-columns: 1.25fr 0.95fr 0.95fr 0.95fr 1fr;
}

.footer .cta--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.footer .cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 960px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .brand--center .brand__sub {
    display: none;
  }

  .brand__name {
    font-size: 1.02rem;
  }

  .nav--drawer {
    width: min(92vw, 360px);
  }

  .sidebar {
    width: min(88vw, 340px);
  }
}

@media (max-width: 700px) {
  .site-header__inner {
    gap: 8px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand--center .brand__name {
    font-size: 0.98rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .nav--drawer,
  .sidebar {
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: min(94vw, 340px);
    border-radius: 24px;
  }

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

/* Final shell lock: keep the menu pinned to the right and remove page blur */
body.nav-open,
body.sidebar-open {
  overflow: hidden;
}

.nav-backdrop,
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(7, 22, 15, 0.42);
  backdrop-filter: none !important;
}

.nav-backdrop[hidden],
.sidebar-backdrop[hidden] {
  display: none;
}

.nav-backdrop.is-open,
.sidebar-backdrop.is-open {
  display: block;
}

.site-header,
.footer,
.card,
.stat,
.image-card,
.page-banner__box,
.hero-card,
.sidebar,
.nav--drawer {
  backdrop-filter: none !important;
}

.nav--drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: min(88vw, 380px) !important;
  max-width: 380px !important;
  padding: 18px !important;
  border-radius: 0 0 0 28px !important;
  transform: translateX(100%) !important;
  transition: transform 0.34s ease, box-shadow 0.34s ease !important;
  overflow: auto;
  z-index: 121 !important;
}

.nav--drawer.is-open {
  transform: translateX(0) !important;
}

.nav--drawer .nav__header {
  display: flex !important;
}

.nav__close {
  display: inline-grid !important;
}

.nav-toggle {
  width: 46px;
  height: 46px;
}

.footer {
  padding-bottom: 108px;
}

.footer__cta {
  border: 1px solid rgba(199, 155, 39, 0.16);
  background:
    radial-gradient(circle at top right, rgba(199, 155, 39, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 231, 0.92));
}

.footer__grid {
  grid-template-columns: 1.15fr 0.9fr 1fr 0.95fr !important;
}

.footer h4 {
  color: #fff;
}

.floating-contact,
.floating-contact__mini {
  display: none !important;
}

@media (max-width: 960px) {
  .nav--drawer {
    width: min(92vw, 360px) !important;
  }

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

@media (max-width: 700px) {
  .nav--drawer {
    width: min(92vw, 340px) !important;
    border-radius: 0 0 0 24px !important;
    padding: 16px !important;
  }

  .site-header__inner {
    gap: 8px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand--center .brand__name {
    font-size: 0.98rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

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

/* Premium home ticker and PDF visuals */
.brand-ticker {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(199, 155, 39, 0.32);
  background:
    linear-gradient(135deg, rgba(19, 56, 34, 0.98), rgba(31, 98, 52, 0.96));
  box-shadow: 0 18px 36px rgba(11, 42, 29, 0.14);
}

.brand-ticker__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 0;
  padding: 11px 0;
  color: #fff7df;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}

.brand-ticker__track span {
  display: inline-flex;
  align-items: center;
  padding-inline: 22px;
}

.brand-ticker:hover .brand-ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.pdf-visual {
  padding: 0;
  overflow: hidden;
}

.pdf-visual__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(19, 56, 34, 0.08), rgba(255, 255, 255, 0.96));
}

.pdf-visual__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdf-visual__body {
  padding: 18px 18px 20px;
}

.pdf-visual .card__title {
  margin-top: 0;
}

.nav__header {
  align-items: center;
}

.nav__brandblock {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.nav__brandmark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(199, 155, 39, 0.28);
  background: linear-gradient(135deg, rgba(255, 248, 223, 0.96), rgba(235, 201, 109, 0.72));
  box-shadow: 0 10px 22px rgba(11, 42, 29, 0.1);
}

.nav__brandmark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav__titleblock {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.nav__subtitle {
  font-size: 0.76rem;
  color: var(--gold-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__contact {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding: 14px 16px 0;
  border-top: 1px solid rgba(199, 155, 39, 0.18);
  color: var(--green-950);
  font-size: 0.88rem;
}

.nav__contact span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(199, 155, 39, 0.12), transparent 20%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 24%);
  pointer-events: none;
}

.footer .site-shell {
  position: relative;
  z-index: 1;
}

.footer__cta,
.footer__grid > div,
.copyright {
  border: 1px solid rgba(199, 155, 39, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.footer__cta {
  backdrop-filter: blur(8px);
  padding: 22px;
  border-radius: 24px;
  margin-bottom: 18px;
}

.footer__cta .section__title,
.footer__cta .section__sub {
  color: #fff;
}

.footer .cta {
  box-shadow: none;
}

.footer .cta--primary {
  color: #fff;
}

.footer .cta--secondary,
.footer .cta--ghost {
  color: var(--green-950);
  background: rgba(255, 251, 241, 0.94);
  border-color: rgba(255, 255, 255, 0.36);
}

.footer .cta--secondary:hover,
.footer .cta--ghost:hover {
  background: rgba(255, 246, 218, 1);
}

.footer__grid {
  gap: 16px;
}

.footer__grid > div {
  padding: 18px;
  border-radius: 22px;
  backdrop-filter: blur(8px);
}

.footer .brand--footer .brand__mark {
  border-color: rgba(199, 155, 39, 0.28);
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 252, 241, 0.88);
}

.footer h4 {
  color: #fff7df;
  margin-top: 0;
}

.copyright {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 252, 241, 0.84);
}

.nav--drawer {
  background:
    linear-gradient(180deg, rgba(11, 36, 24, 0.98), rgba(16, 50, 32, 0.94));
  border: 1px solid rgba(199, 155, 39, 0.28);
  box-shadow: 0 30px 80px rgba(8, 24, 16, 0.34);
}

.nav-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff7df;
}

.nav-item:hover,
.nav-item.is-active {
  background: linear-gradient(135deg, rgba(199, 155, 39, 0.22), rgba(255, 248, 223, 0.14));
  color: #fff;
}

.nav-item--detail {
  background: linear-gradient(135deg, rgba(255, 247, 214, 1), rgba(238, 205, 113, 0.98));
  color: #17301f;
  border-color: rgba(143, 106, 18, 0.28);
}

.nav__close {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #fff7df !important;
}

@media (prefers-reduced-motion: reduce) {
  .brand-ticker__track {
    animation: none;
  }
}

@media (max-width: 700px) {
  .brand-ticker__track {
    padding: 10px 0;
    font-size: 0.86rem;
  }

  .nav__brandmark {
    width: 46px;
    height: 46px;
  }

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

  .footer__cta {
    padding: 18px;
  }
}
