@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: #a0b799;
  --olive: #7b8d5b;
  --gold: #d5a86d;
  --gold-soft: #f3d8a6;
  --sand: #eedcc3;
  --cream: #f6f2eb;
  --charcoal: #171d1a;
  --muted: #4b564f;
  --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;
  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;
}

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

.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 {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
}

.contact-form,
.contact-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.8rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--forest-900);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(12, 27, 22, 0.15);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.9rem 1rem;
  color: var(--forest-900);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-card ul {
  padding-left: 1rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  display: grid;
  gap: 0.65rem;
}

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

.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;background:var(--green3);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:70vw;height:70vw;max-width:900px;max-height:900px;border:1px solid rgba(201,155,69,.16);animation:loaderOrbit 5s linear infinite}
.site-preloader:after{width:35vw;height:35vw;max-width:420px;max-height:420px;background:radial-gradient(circle,rgba(201,155,69,.12),transparent 70%);animation:loaderPulse 2s 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:118px;height:118px;margin:0 auto 22px;position:relative;display:grid;place-items:center}
.preloader-logo-wrap img{width:92px;height:92px;border-radius:16px;object-fit:cover;box-shadow:0 18px 50px rgba(0,0,0,.28);position:relative;z-index:2}
.preloader-ring{position:absolute;inset:0;border:1px solid rgba(201,155,69,.7);border-top-color:transparent;border-radius:50%;animation:spin 1.2s linear infinite}
.preloader-ring:after{content:"";position:absolute;width:8px;height:8px;border-radius:50%;background:var(--gold);top:-4px;left:50%;transform:translateX(-50%);box-shadow:0 0 18px var(--gold)}
.preloader-brand{font-size:30px;letter-spacing:.18em;font-weight:800}
.preloader-sub{font-size:10px;letter-spacing:.48em;color:#d6d9d5;margin-top:5px}
.preloader-line{height:2px;width:190px;background:rgba(255,255,255,.12);margin:25px auto 12px;overflow:hidden;border-radius:10px}
.preloader-line span{display:block;width:35%;height:100%;background:var(--gold);animation:loaderLine 1.35s ease-in-out infinite}
.preloader-caption{font-size:9px;letter-spacing:.15em;color:rgba(255,255,255,.58)}

.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}
}
