@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --forest-950: #0a1d18;
  --forest-900: #112e26;
  --forest-800: #1d4037;
  --forest-700: #2c5d4d;
  --forest-600: #3d7665;
  --sage: #9caf9f;
  --olive: #70876f;
  --gold: #b88745;
  --gold-soft: #e2c486;
  --sand: #e8eee9;
  --cream: #f5f7f5;
  --charcoal: #171d1a;
  --muted: #4e5c55;
  --line: rgba(17, 46, 38, 0.12);
  --white: #ffffff;
  --shadow: 0 26px 64px rgba(9, 24, 17, 0.18);
  --max-width: 1220px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top, rgba(213, 168, 109, 0.18), transparent 30%),
    linear-gradient(180deg, #f6f2eb 0%, #f3efe8 100%);
  color: var(--charcoal);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

#root {
  min-height: 100vh;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(213, 168, 109, 0.18), rgba(10, 29, 24, 0.95) 42%, rgba(10, 29, 24, 1));
}

.loader-core {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1.3rem 0.8rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.loader-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--forest-950);
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(213, 168, 109, 0.35);
  animation: loaderPulse 1.1s ease-in-out infinite alternate;
}

.loader-text {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.28rem;
  font-size: 0.78rem;
  font-weight: 800;
}

@keyframes loaderPulse {
  from {
    transform: scale(0.96);
    opacity: 0.82;
  }
  to {
    transform: scale(1.06);
    opacity: 1;
  }
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.topline {
  background: rgba(7, 41, 33, 0.94);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topline .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  align-items: center;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 235, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 46, 38, 0.08);
}

header .nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex-shrink: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
}

nav#site-navigation {
  flex: 1;
}

.menu-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

nav a {
  color: var(--forest-900);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

nav a:hover {
  transform: translateY(-1px);
}

nav a.active,
nav a:hover {
  opacity: 1;
  color: var(--forest-700);
}

.btn,
.btn-gold,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--forest-950);
  box-shadow: 0 14px 26px rgba(213, 168, 109, 0.28);
}

.btn-outline {
  border: 1px solid rgba(17, 46, 38, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--forest-900);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 46, 38, 0.14);
  background: rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--forest-900);
  cursor: pointer;
}

.mobile-toggle .menu-icon {
  display: block;
  line-height: 1;
}

.mobile-toggle .menu-icon::before {
  content: "☰";
  display: block;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 29, 24, 0.78), rgba(10, 29, 24, 0.45));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .kicker,
.eyebrow {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero .kicker {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 1rem;
  max-width: 700px;
  font-size: clamp(2.8rem, 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--white);
}

.hero h1 span,
.hero h1 em {
  display: inline-block;
  font-style: normal;
}

.hero p,
.lead {
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section {
  padding: 90px 0;
}

.section h2 {
  margin: 0.7rem 0 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--forest-950);
}

.section.dark {
  background: linear-gradient(180deg, rgba(15, 43, 35, 0.98), rgba(8, 25, 21, 1));
  color: var(--white);
}

.section.dark h2,
.section.dark .lead,
.section.dark .eyebrow {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.cards,
.products,
.info-grid,
.stats,
.process,
.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.card,
.product,
.info-box,
.stat,
.step,
.image-card,
.contact-card,
.form-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 46, 38, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(9, 24, 17, 0.05);
}

.card-img,
.image-card {
  height: 220px;
  overflow: hidden;
}

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

.card-body,
.product .body {
  padding: 1.25rem 1.2rem 1.4rem;
}

.card h3,
.product h3,
.info-box h3,
.stat strong {
  margin: 0.5rem 0 0.7rem;
  color: var(--forest-950);
}

.card p,
.product p,
.info-box p,
.stat span,
.footer-copy {
  color: var(--muted);
}

.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.product .body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.arrow-link {
  color: var(--forest-700);
  font-weight: 800;
}

.stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.stat {
  padding: 1.2rem 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2.6rem);
  color: var(--gold-soft);
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.info-box {
  padding: 1.4rem;
}

.process {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.step b {
  font-size: 1.4rem;
  color: var(--gold);
}

.step span {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 46, 38, 0.08);
  border-radius: 28px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  padding: 3rem 0 2rem;
}

.footer-title {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

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

.footer-links a,
.footer-copy a {
  color: rgba(255, 255, 255, 0.75);
}

footer {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(213, 168, 109, 0.18), transparent 30%),
    linear-gradient(180deg, #0f2d26, #081d18 55%, #061512 100%);
  color: var(--white);
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(213,168,109,0.04), rgba(255,255,255,0.02));
  pointer-events: none;
}

.footer-grid > div {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 1.2rem 1rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.site-shell {
  background: var(--cream);
}

@media (max-width: 1100px) {
  .cards,
  .products,
  .info-grid,
  .stats,
  .process,
  .footer-grid,
  .split {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 900px) {
  #navWrap {
    position: relative;
  }

  nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 1.1rem;
    background: rgba(15, 43, 35, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 26px 60px rgba(9, 24, 17, 0.18);
  }

  #navWrap:has(.menu-toggle-input:checked) nav {
    display: flex;
  }

  #navWrap:has(.menu-toggle-input:checked) .menu-icon {
    font-size: 0;
  }

  #navWrap:has(.menu-toggle-input:checked) .menu-icon::before {
    content: "×";
    display: block;
    font-size: 1.8rem;
    line-height: 1;
  }

  nav a {
    width: 100%;
    padding: 0.45rem 0;
    color: rgba(255, 255, 255, 0.9);
  }

  nav .menu-quote {
    display: flex;
    width: 100%;
    min-height: 48px;
    margin-top: 0.45rem;
    padding: 0.75rem 1rem;
    background: var(--gold);
    color: var(--forest-950);
    border-radius: 12px;
    justify-content: center;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .btn-gold,
  .btn-outline {
    width: auto;
  }

  .cards,
  .products,
  .info-grid,
  .stats,
  .process,
  .split,
  .form-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

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

@media (max-width: 560px) {
  .topline {
    display: none;
  }

  .container {
    width: min(var(--max-width), calc(100% - 1.1rem));
  }

  header .nav {
    min-height: 76px;
    gap: 0.65rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    letter-spacing: 0.13em;
    font-size: 0.9rem;
  }

  .brand small {
    letter-spacing: 0.16em;
  }

  .hero {
    min-height: 500px;
    padding: 56px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
    line-height: 0.92;
  }

  .hero p,
  .lead {
    font-size: 1rem;
  }

  .hero-meta {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.2rem;
  }

  .hero-actions {
    display: grid;
    gap: 0.75rem;
    width: 100%;
  }

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

  .section {
    padding: 64px 0;
  }

  .cta {
    padding: 1.5rem;
  }

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

@media (max-width: 420px) {
  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand span {
    min-width: 0;
  }

  .brand small {
    white-space: nowrap;
  }

  .hero {
    min-height: 470px;
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 14vw, 3.2rem);
    letter-spacing: -0.05em;
  }

  .hero .kicker,
  .eyebrow {
    letter-spacing: 0.08em;
  }

  .card-body,
  .product .body,
  .info-box,
  .cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 1.1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.topbar.is-scrolled {
  background: rgba(246, 243, 238, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 26px rgba(11, 26, 21, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

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

.topbar.is-scrolled .brand-mark {
  color: var(--charcoal);
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  letter-spacing: 0.16rem;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.9rem;
  letter-spacing: 0.18rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}

.topbar.is-scrolled .nav-link {
  color: rgba(24, 27, 29, 0.85);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--forest-950);
  box-shadow: 0 18px 34px rgba(213, 168, 109, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.topbar.is-scrolled .btn-secondary {
  background: rgba(12, 34, 28, 0.06);
  border-color: rgba(12, 34, 28, 0.18);
  color: var(--forest-900);
}

.btn-small {
  padding: 0.7rem 1.2rem;
  font-size: 0.74rem;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  padding: 0.62rem 0.7rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.topbar.is-scrolled .menu-toggle {
  border-color: rgba(12, 34, 28, 0.18);
}

.topbar.is-scrolled .menu-toggle span {
  background: var(--forest-900);
}

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

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

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

.hero-section,
.page-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-backdrop,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 29, 24, 0.82) 0%, rgba(10, 29, 24, 0.6) 42%, rgba(10, 29, 24, 0.35) 100%);
}

.hero-backdrop {
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.08);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding-top: 8rem;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--forest-700);
  font-weight: 800;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy h1,
.page-hero h1,
.section-intro h2,
.text-panel h3,
.feature-card h3,
.value-card h3,
.product-body h3,
.detail-content h2,
.contact-card h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: var(--forest-950);
}

.hero-copy h1,
.page-hero h1 {
  margin-top: 1rem;
  font-size: clamp(3rem, 5vw, 6rem);
  color: var(--white);
}

.hero-copy p,
.page-hero p {
  margin-top: 1.1rem;
  font-size: 1.08rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section-block {
  padding: 6.5rem 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-intro h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin-top: 0.8rem;
}

.section-intro p {
  margin-top: 1rem;
  font-size: 1.04rem;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 2.2rem;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 520px;
}

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

.service-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.large-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 242, 235, 0.96));
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.panel-visual {
  height: 260px;
  overflow: hidden;
}

.panel-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.large-panel:hover .panel-visual img {
  transform: scale(1.05);
}

.tile-body {
  padding: 1.5rem 1.5rem 1.8rem;
}

.small-index {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16rem;
  color: var(--forest-700);
}

.tile-body h3,
.value-card h3,
.feature-card h3,
.product-body h3,
.detail-content h2,
.text-panel h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-top: 0.6rem;
}

.tile-body p,
.product-body p,
.feature-card p,
.text-panel p,
.value-card p,
.detail-content p,
.contact-card p,
.contact-card li {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 242, 235, 1));
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(12, 25, 22, 0.05);
}

.product-image-wrap {
  height: 260px;
  overflow: hidden;
}

.product-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-body {
  padding: 1.25rem 1.2rem 1.5rem;
}

.inline-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--forest-700);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.supply-chain-section {
  background: linear-gradient(180deg, rgba(15, 43, 35, 0.96), rgba(9, 27, 22, 1));
}

.supply-chain-section .section-intro h2,
.supply-chain-section .section-intro p,
.supply-chain-section .eyebrow {
  color: var(--white);
}

.supply-journey {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.journey-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1rem 1.4rem;
  color: var(--white);
  font-weight: 600;
}

.journey-arrow {
  opacity: 0.75;
}

.feature-grid,
.value-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card,
.value-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(9, 24, 17, 0.04);
}

.feature-mark {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 173, 111, 0.18);
  color: var(--forest-700);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.vision-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.vision-box {
  background: linear-gradient(180deg, rgba(15, 43, 35, 0.96), rgba(9, 27, 22, 1));
  color: var(--white);
  border-radius: 24px;
  padding: 2rem 2rem 2.4rem;
  min-height: 240px;
}

.vision-box p {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.mission-box {
  background: linear-gradient(180deg, rgba(24, 45, 37, 0.95), rgba(18, 30, 25, 1));
}

.industry-item {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--forest-900);
}

.cta-band {
  background: linear-gradient(135deg, var(--forest-900), var(--forest-800));
  padding: 2.5rem;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.premium-cta h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--white);
}

.premium-cta p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 720px;
}

.split-cta {
  margin-top: 0;
}

.brand-statement-wrap {
  text-align: center;
  padding: 4rem 0 2rem;
}

.statement-line {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--forest-900);
}

.statement-tag {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.site-footer {
  background: #0d1d18;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

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

.footer-name {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.tagline-sm {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
}

.footer-links,
.footer-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-meta li {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 0 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero {
  min-height: 540px;
  background-position: center;
}

.page-hero .page-hero-content {
  padding-top: 10rem;
}

.page-hero .page-hero-content h1 {
  max-width: 780px;
}

.broad-copy {
  max-width: 900px;
}

.text-panel {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  min-height: 236px;
}

.text-panel.accent {
  background: linear-gradient(160deg, rgba(21, 61, 52, 0.96), rgba(6, 18, 16, 0.96));
  color: var(--white);
}

.text-panel.accent h3,
.text-panel.accent p,
.text-panel.accent .eyebrow {
  color: var(--white);
}

.value-grid {
  margin-top: 1rem;
}

.services-detail,
.products-catalogue {
  display: grid;
  gap: 2rem;
}

.detail-service,
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1rem;
}

.detail-image,
.product-detail-image {
  overflow: hidden;
  border-radius: 22px;
  min-height: 420px;
}

.detail-image img,
.product-detail-image img {
  height: 100%;
  object-fit: cover;
}

.detail-content {
  padding: 0.8rem 0.6rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.4rem;
  margin-bottom: 1.8rem;
}

.mini-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--forest-900);
}

.mini-grid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.product-meta-box {
  background: rgba(11, 31, 24, 0.04);
  border: 1px solid var(--line);
  padding: 1.2rem 1.1rem;
  border-radius: 18px;
  margin: 1rem 0 1.5rem;
}

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

.log-card {
  min-height: 220px;
}

.route-layout {
  display: flex;
  justify-content: center;
}

.route-map {
  display: grid;
  gap: 1rem;
  justify-items: center;
  width: min(760px, 100%);
}

.route-node {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
}

.route-line {
  width: 2px;
  height: 34px;
  background: linear-gradient(180deg, rgba(216, 183, 123, 0.7), rgba(255, 255, 255, 0.15));
}

.contact-layout,
.form-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  align-items: start;
}

.form-card,
.contact-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 46, 38, 0.08);
  border-radius: 28px;
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(9, 24, 17, 0.05);
}

.form-card h2 {
  margin: 0.6rem 0 1.2rem;
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--forest-950);
}

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

.field {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.field label {
  color: var(--forest-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(12, 27, 22, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-900);
  padding: 0.95rem 1rem;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(213, 168, 109, 0.7);
  box-shadow: 0 0 0 4px rgba(213, 168, 109, 0.14);
}

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

.contact-card {
  background: linear-gradient(180deg, rgba(246, 242, 235, 0.96), rgba(230, 236, 232, 0.92));
}

.contact-card h3 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  letter-spacing: -0.05em;
  color: var(--forest-950);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.contact-list li {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-list li strong {
  color: var(--forest-900);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-card a {
  color: var(--forest-700);
  font-weight: 700;
}

.btn-dark {
  background: linear-gradient(135deg, #0b2a23, #12372f);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(11, 42, 35, 0.2);
}

.team-role {
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.5rem !important;
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--forest-950);
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(213, 168, 109, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 18px 48px rgba(213, 168, 109, 0.45);
}

.hero-carousel-wrapper {
  position: relative;
  height: 760px;
  overflow: hidden;
}

.hero-carousel {
  height: 100%;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 29, 24, 0.82) 0%, rgba(10, 29, 24, 0.6) 42%, rgba(10, 29, 24, 0.35) 100%);
}

.hero-carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.swiper-pagination {
  bottom: 2rem !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  transition: background 0.25s ease;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

@media (max-width: 1024px) {
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.7rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: rgba(10, 29, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .topbar.is-scrolled .site-nav {
    background: rgba(246, 243, 238, 0.98);
    border-color: rgba(12, 34, 28, 0.12);
  }

  .topbar.is-scrolled .site-nav .nav-link {
    color: rgba(24, 27, 29, 0.85);
  }

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

  .nav-link {
    color: rgba(255, 255, 255, 0.82);
    width: 100%;
    padding: 0.2rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .service-tiles,
  .product-grid,
  .feature-grid,
  .value-grid,
  .industry-grid,
  .logistics-grid,
  .footer-grid,
  .contact-layout,
  .split-layout,
  .vision-split,
  .detail-service,
  .product-detail {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .hero-section,
  .page-hero {
    min-height: 620px;
  }

  .hero-copy h1,
  .page-hero-content h1 {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  .nav-actions .btn-secondary {
    display: none;
  }

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

  .section-block {
    padding: 4.25rem 0;
  }

  .statement-line {
    font-size: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .container {
    width: min(var(--max-width), calc(100% - 1.2rem));
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

/* =========================================================
   HUBEX MOTION SYSTEM — global preloader, transitions,
   scroll choreography, mobile polish and depth effects
========================================================= */
:root{--motion:cubic-bezier(.16,1,.3,1);--motion-soft:cubic-bezier(.22,.61,.36,1)}
html{scroll-behavior:smooth;scroll-padding-top:100px}
body{opacity:1;transition:opacity .32s ease,transform .32s ease}
body.page-leaving{opacity:0;transform:translateY(8px)}

.site-preloader{position:fixed;inset:0;pointer-events:none;background:radial-gradient(circle at top, rgba(213,168,109,.2), rgba(7,41,33,.94) 34%, rgba(3,15,12,1) 100%);display:grid;place-items:center;z-index:100000;overflow:hidden;transition:opacity .7s var(--motion),visibility .7s var(--motion),transform .8s var(--motion)}
.site-preloader:before,.site-preloader:after{content:"";position:absolute;border-radius:50%;pointer-events:none}
.site-preloader:before{width:72vw;height:72vw;max-width:920px;max-height:920px;border:1px solid rgba(201,155,69,.18);box-shadow:0 0 40px rgba(201,155,69,.12);animation:loaderOrbit 7s linear infinite}
.site-preloader:after{width:42vw;height:42vw;max-width:520px;max-height:520px;background:radial-gradient(circle,rgba(201,155,69,.17),transparent 66%);filter:blur(6px);animation:loaderPulse 2.6s ease-in-out infinite}
.site-preloader.is-done{opacity:0;visibility:hidden;transform:scale(1.04)}
.preloader-inner{text-align:center;color:#fff;position:relative;z-index:2;animation:preloaderRise 1s var(--motion) both}
.preloader-logo-wrap{width:128px;height:128px;margin:0 auto 18px;position:relative;display:grid;place-items:center;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.14);border-radius:24px;backdrop-filter:blur(8px);box-shadow:0 24px 48px rgba(0,0,0,.22)}
.preloader-logo-wrap img{width:92px;height:92px;border-radius:18px;object-fit:cover;box-shadow:0 18px 48px rgba(0,0,0,.32);position:relative;z-index:2}
.preloader-ring{position:absolute;inset:8px;border:2px solid rgba(201,155,69,.8);border-top-color:transparent;border-radius:50%;animation:spin 1.2s linear infinite}
.preloader-ring:after{content:"";position:absolute;width:10px;height:10px;border-radius:50%;background:var(--gold);top:-3px;left:50%;transform:translateX(-50%);box-shadow:0 0 20px rgba(213,168,109,.9)}
.preloader-brand{font-size:30px;letter-spacing:.18em;font-weight:800;text-shadow:0 12px 24px rgba(0,0,0,.25)}
.preloader-sub{font-size:10px;letter-spacing:.48em;color:#dfe5de;margin-top:5px}
.preloader-line{height:2px;width:220px;background:rgba(255,255,255,.12);margin:22px auto 12px;overflow:hidden;border-radius:10px}
.preloader-line span{display:block;width:36%;height:100%;background:linear-gradient(90deg,var(--gold-soft),var(--gold),#fff3cf);box-shadow:0 0 18px rgba(213,168,109,.6);animation:loaderLine 1.45s ease-in-out infinite}
.preloader-caption{font-size:9px;letter-spacing:.15em;color:rgba(255,255,255,.68)}

.scroll-progress{height:3px;transform-origin:left center;transition:transform .08s linear;z-index:99999}
.back-to-top{position:fixed;right:24px;bottom:24px;width:46px;height:46px;border:1px solid rgba(7,91,61,.18);border-radius:50%;background:rgba(246,240,229,.88);backdrop-filter:blur(10px);color:var(--green);font-weight:800;font-size:20px;display:grid;place-items:center;cursor:pointer;z-index:70;opacity:0;visibility:hidden;transform:translateY(18px) scale(.9);transition:all .45s var(--motion);box-shadow:0 12px 35px rgba(6,49,38,.14)}
.back-to-top.show{opacity:1;visibility:visible;transform:none}
.back-to-top:hover{transform:translateY(-4px);background:#fff}

/* Scroll reveal states */
.js-ready .scroll-reveal{opacity:0;transform:translate3d(0,60px,0) scale(.985);filter:blur(7px);will-change:opacity,transform,filter;transition:opacity .95s var(--motion),transform 1s var(--motion),filter .9s ease;transition-delay:var(--reveal-delay,0ms)}
.js-ready .scroll-reveal.in-view{opacity:1;transform:none;filter:none}
.js-ready .scroll-reveal[data-reveal-type="card"]{transform:translate3d(0,70px,0) scale(.97)}
.js-ready .scroll-reveal[data-reveal-type="card"].in-view{transform:none}
.js-ready .hero .scroll-reveal,.js-ready .page-hero .scroll-reveal{transition-duration:1.15s}
.js-ready .section .rich > *{transition-duration:.8s}

/* Give images and cards a continuous sense of depth */
.card,.product,.info-box,.person,.contact-card,.form-card,.image-card,.detail-media{transition:transform .6s var(--motion),box-shadow .6s ease,border-color .4s ease}
.card:hover,.product:hover,.info-box:hover,.person:hover,.contact-card:hover,.form-card:hover{transform:translateY(-7px);box-shadow:0 28px 70px rgba(6,49,38,.14)}
.image-card,.detail-media{overflow:hidden}
.image-card img,.detail-media img,.card-img img,.product>img{will-change:transform}

/* Decorative section entrance */
.section:after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:linear-gradient(90deg,transparent,rgba(201,155,69,.24),transparent);transform:scaleX(0);transform-origin:center;transition:transform 1.2s var(--motion)}
.section:has(.scroll-reveal.in-view):after{transform:scaleX(1)}

/* Hero polish */
.hero:before,.page-hero:before{transition:opacity 1.2s ease}
.hero h1 span,.hero h1 em{display:inline-block;animation:heroWord 1.05s var(--motion) both}
.hero h1 em{animation-delay:.08s}
.hero .hero-actions .btn{animation:heroButtons .9s var(--motion) .45s both}
.hero .hero-meta span{animation:heroMeta .8s var(--motion) .35s both}

/* Mobile menu animation */
@keyframes menuIn{0%{opacity:0;transform:translateY(-15px) scale(.98)}100%{opacity:1;transform:none}}
#navWrap.menu-open nav{transform-origin:top center}

/* Better mobile spacing and touch targets */
@media(max-width:860px){
  html{scroll-padding-top:82px}
  .container{width:min(var(--max),calc(100% - 30px))}
  header{box-shadow:0 8px 30px rgba(6,49,38,.05)}
  .nav{min-height:78px}
  .mobile-toggle{width:50px;height:50px;border-radius:15px;font-size:25px;display:grid;place-items:center;line-height:1}
  .mobile-toggle span{display:block;transform:translateY(-1px)}
  nav a{min-height:48px;display:flex;align-items:center}
  .hero,.page-hero{background-attachment:scroll}
  .hero{min-height:640px}
  .hero .container{padding-top:10px}
  .hero-actions .btn{min-height:52px}
  .section{padding:78px 0}
  .cards,.products,.team,.info-grid{gap:18px}
  .card,.product,.info-box,.person,.contact-card,.form-card{border-radius:22px}
  .card-body,.product .body{padding:24px}
  .product>img{height:230px}
  .image-card img,.detail-media img{min-height:300px}
  .back-to-top{right:15px;bottom:18px;width:44px;height:44px}
}
@media(max-width:560px){
  .container{width:calc(100% - 28px)}
  .topline{display:none}
  .brand img{width:48px;height:48px;border-radius:10px}
  .brand strong{font-size:20px}
  .brand small{font-size:9px;letter-spacing:.28em}
  .nav{min-height:76px}
  .hero{min-height:610px;padding:92px 0 70px}
  .page-hero{min-height:390px;padding:80px 0 55px}
  .hero h1{font-size:clamp(43px,13vw,58px)}
  .page-hero h1{font-size:42px}
  .hero p,.page-hero p{font-size:16px;line-height:1.55}
  .hero-meta{display:grid;gap:7px}
  .section{padding:64px 0}
  .section h2{font-size:35px}
  .lead{font-size:16px}
  .card-img{height:215px}
  .product>img{height:225px}
  .card:hover,.product:hover,.info-box:hover,.person:hover,.contact-card:hover,.form-card:hover{transform:none;box-shadow:var(--shadow)}
  .preloader-logo-wrap{width:105px;height:105px}
  .preloader-logo-wrap img{width:82px;height:82px}
  .preloader-brand{font-size:26px}
  .preloader-caption{font-size:8px;letter-spacing:.1em;padding:0 20px}
}

@keyframes spin{to{transform:rotate(360deg)}}
@keyframes loaderOrbit{to{transform:rotate(360deg)}}
@keyframes loaderPulse{0%,100%{transform:scale(.9);opacity:.55}50%{transform:scale(1.08);opacity:1}}
@keyframes loaderLine{0%{transform:translateX(-130%)}50%{transform:translateX(160%)}100%{transform:translateX(360%)}}
@keyframes preloaderRise{from{opacity:0;transform:translateY(24px) scale(.96)}to{opacity:1;transform:none}}
@keyframes heroWord{from{opacity:0;transform:translateY(45px);filter:blur(8px)}to{opacity:1;transform:none;filter:none}}
@keyframes heroButtons{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
@keyframes heroMeta{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*:before,*:after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
  .js-ready .scroll-reveal{opacity:1!important;transform:none!important;filter:none!important}
  .site-preloader{display:none!important}
}
  .hero-actions .btn-gold {
    background: var(--gold);
    color: var(--forest-950);
    box-shadow: 0 12px 24px rgba(213, 168, 109, 0.3);
  }

  .hero-actions .btn-outline {
    border-color: #fff;
    background: #fff;
    color: var(--forest-950);
  }

  .section.dark .lead,
  .section.dark p {
    color: rgba(255, 255, 255, 0.9);
  }

  .section.dark .eyebrow {
    color: var(--gold-soft);
  }

  .homepage-services .cards,
  .homepage-products .products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2.5rem;
  }

  .homepage-services .card,
  .homepage-products .product,
  .homepage-proof .info-box {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .homepage-services .card,
  .homepage-products .product {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: center;
    padding: 1.5rem 0;
  }

  .homepage-services .card:last-child,
  .homepage-products .product:last-child,
  .homepage-proof .info-box:last-child {
    border-bottom: 1px solid var(--line);
  }

  .homepage-services .card-img {
    height: 150px;
    border-radius: 4px;
  }

  .homepage-services .card-body,
  .homepage-products .product .body {
    padding: 0;
  }

  .homepage-products .product > img {
    height: 150px;
  }

  .homepage-proof .info-grid {
    gap: 0 2rem;
  }

  .homepage-proof .info-box {
    border-radius: 0;
    padding: 1.5rem 0;
    box-shadow: none;
  }

  @media (max-width: 600px) {
    .homepage-services .card,
    .homepage-products .product {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .homepage-services .card-img,
    .homepage-products .product > img {
      height: 170px;
    }
  }

  /* Leadership page */
  .leadership-hero {
    min-height: 520px;
    isolation: isolate;
    overflow: hidden;
  }

  .hero-swiper {
    isolation: isolate;
    overflow: hidden;
  }

  .hero-slides,
  .hero-slide {
    position: absolute;
    inset: 0;
  }

  .hero-slides {
    z-index: 0;
    touch-action: pan-y;
    cursor: grab;
  }

  .hero-slides.is-dragging {
    cursor: grabbing;
  }

  .hero-slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.25s ease, transform 6.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .hero-swiper::before,
  .hero-swiper::after {
    z-index: 1;
    pointer-events: none;
  }

  .hero-swiper-content {
    position: relative;
    z-index: 2;
  }

  .hero-progress {
    position: absolute;
    z-index: 3;
    left: max(1rem, calc((100% - var(--max-width)) / 2));
    bottom: 2.2rem;
    width: min(220px, 55vw);
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
  }

  .hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold-soft);
  }

  .hero-swiper.is-playing .hero-progress span {
    width: 100%;
    transition: width 5.6s linear;
  }

  .hero-swiper.is-paused .hero-progress span {
    width: 42%;
    transition: width 0.25s ease;
  }

  .leadership-slides,
  .leadership-slide {
    position: absolute;
    inset: 0;
  }

  .leadership-slides {
    z-index: 0;
    touch-action: pan-y;
    cursor: grab;
  }

  .leadership-slides.is-dragging {
    cursor: grabbing;
  }

  .leadership-slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.25s ease, transform 6.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .leadership-slide.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .leadership-hero::before {
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(6, 29, 23, 0.9) 0%, rgba(6, 29, 23, 0.62) 48%, rgba(6, 29, 23, 0.2) 100%);
  }

  .leadership-hero::after {
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(3, 15, 12, 0.12), transparent 45%, rgba(3, 15, 12, 0.42));
  }

  .leadership-hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
  }

  .leadership-hero h1 {
    max-width: 760px;
    font-size: clamp(3.5rem, 8vw, 7rem);
  }

  .leadership-hero p {
    max-width: 540px;
  }

  .leadership-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
    margin-top: 1.75rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .leadership-progress {
    width: min(220px, 55vw);
    height: 2px;
    margin-top: 2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
  }

  .leadership-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold-soft);
  }

  .leadership-swiper.is-playing .leadership-progress span {
    width: 100%;
    transition: width 5.6s linear;
  }

  .leadership-swiper.is-paused .leadership-progress span {
    width: 42%;
    transition: width 0.25s ease;
  }

  .leadership-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: 4rem;
    align-items: end;
    margin-bottom: 3.5rem;
  }

  .leadership-intro h2 {
    max-width: 620px;
    margin-bottom: 0;
  }

  .leadership-intro .lead {
    margin: 0;
  }

  .leadership-team {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.8fr));
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .leadership-team .person {
    min-height: 315px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 2rem;
  }

  .leadership-team .person:hover {
    transform: none;
    box-shadow: none;
  }

  .leadership-lead {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--forest-950);
    color: var(--white);
  }

  .leadership-person-top {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .leadership-team .avatar {
    display: none;
  }

  .leadership-team h3 {
    margin: 0.5rem 0 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.15;
    text-transform: none;
  }

  .leadership-lead p {
    margin: 2rem 0 1.25rem;
    color: rgba(255, 255, 255, 0.78);
  }

  .leadership-lead .role,
  .leadership-director .role {
    color: var(--gold);
  }

  .leadership-lead .arrow-link {
    color: var(--gold-soft);
  }

  .leadership-contact {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .leadership-director {
    background: var(--white);
  }

  .leadership-director .avatar {
    margin-bottom: 2.5rem;
    background: var(--sand);
    color: var(--forest-800);
  }

  .leadership-director p {
    margin-bottom: 0;
    color: var(--muted);
  }

  .leadership-principles .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 3rem 5rem;
    align-items: end;
  }

  .leadership-principles h2 {
    margin-bottom: 0;
    max-width: 600px;
  }

  .leadership-principles .lead {
    margin: 0;
  }

  .principle-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .principle-list span {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1rem 0 0;
    color: var(--gold-soft);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .principle-list b {
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }

  @media (max-width: 800px) {
    .leadership-intro,
    .leadership-principles .container {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .leadership-team {
      grid-template-columns: 1fr;
    }

    .leadership-team .person {
      min-height: auto;
    }

    .leadership-director .avatar {
      margin-bottom: 1.5rem;
    }

    .principle-list {
      grid-template-columns: 1fr;
    }
  }

/* Responsive menu action and homepage editorial treatment */
.menu-quote {
  display: none;
}

.leadership-hero .kicker {
  color: var(--gold-soft);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .leadership-slide {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .leadership-swiper.is-playing .leadership-progress span {
    transition: none;
  }

  .hero-swiper.is-playing .hero-progress span {
    transition: none;
  }
}

@media (min-width: 901px) {
  #navWrap > .btn-gold[href="quote.html"] {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  header .nav {
    justify-content: flex-start;
  }

  header .brand {
    justify-content: flex-start;
    margin-right: auto;
  }

  #navWrap > .btn-gold[href="quote.html"] {
    display: none;
  }

  #navWrap:focus-within nav {
    display: flex;
  }

  nav .menu-quote {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    margin-top: 0.45rem;
    padding: 0.75rem 1rem;
    background: var(--gold);
    color: var(--forest-950);
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    text-align: center;
  }

  .homepage-services .cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2.5rem;
  }

  .homepage-services .card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .homepage-services .card:last-child {
    border-bottom: 1px solid var(--line);
  }

  .homepage-services .card-img {
    height: 150px;
    border-radius: 4px;
  }

  .homepage-services .card-body {
    padding: 0;
  }

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

  .homepage-products .product {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .homepage-products .product img {
    height: 170px;
    border-radius: 4px;
  }

  .homepage-products .product .body {
    padding: 1rem 0 1.5rem;
  }

  .homepage-proof .info-grid {
    gap: 0 2rem;
  }

  .homepage-proof .info-box {
    padding: 1.35rem 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }
}

footer {
  border-top: 4px solid var(--gold);
}

footer .footer-grid {
  position: relative;
  grid-template-columns: 1.45fr 0.8fr 1fr 1fr;
  gap: 2.4rem;
  padding: 4.5rem 0 3.5rem;
}

footer .footer-grid > div {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

footer .footer-grid > div:first-child {
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

footer .brand img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--white);
  padding: 0.25rem;
}

footer .footer-copy {
  max-width: 280px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.8;
}

footer .footer-title {
  margin-bottom: 1.15rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

footer .footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.2rem;
}

footer .footer-links a,
footer .footer-copy a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

footer .footer-links a:hover,
footer .footer-copy a:hover {
  color: var(--gold-soft);
  padding-left: 0.2rem;
}

footer .footer-bottom {
  padding: 1.3rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }

  footer .footer-grid > div:first-child {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 1.8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 560px) {
  .homepage-services .card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .homepage-services .card-img {
    height: 170px;
  }

  .homepage-products .products {
    grid-template-columns: 1fr;
  }

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

  footer .footer-grid > div:first-child {
    grid-column: auto;
  }
}
