﻿*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #1a2710;
  --green: #243313;
  --green-mid: #3a5220;
  --green-light: #eef3e0;
  --amber: #f0c36c;
  --cream: #f6f7ef;
  --white: #ffffff;
  --text: #1c2617;
  --text-muted: #4a5240;
  --navy: #29395e;
  --red: #c0392b;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.18);
  --transition: 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body main,
body footer {
  opacity: 0;
  transform: translateX(var(--page-enter-x, 0));
  transition:
    opacity 0.46s ease,
    transform 0.54s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

html[data-page-enter="from-right"] body {
  --page-enter-x: 100vw;
}

html[data-page-enter="from-left"] body {
  --page-enter-x: -100vw;
}

body.page-ready main,
body.page-ready footer {
  opacity: 1;
  transform: translateX(0);
}

body.page-leaving main,
body.page-leaving footer {
  opacity: 0;
  pointer-events: none;
}

body.page-leaving-to-left main,
body.page-leaving-to-left footer {
  transform: translateX(-100vw);
}

body.page-leaving-to-right main,
body.page-leaving-to-right footer {
  transform: translateX(100vw);
}

@media (prefers-reduced-motion: reduce) {
  body main,
  body footer,
  body.page-ready main,
  body.page-ready footer,
  body.page-leaving main,
  body.page-leaving footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  color: var(--white);
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 900;
}

h2 {
  color: var(--green);
  font-size: clamp(50px, 5.8vw, 82px);
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 32px;
  font-weight: 700;
}

p {
  color: var(--text-muted);
  font-size: 23px;
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--amber);
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

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

@keyframes mapFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 1.35s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s) both;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transform-origin: center top;
  transition:
    opacity 1.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 34px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-7px) scale(1.03);
}

.btn-primary,
.btn-gold {
  background: var(--amber);
  color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(240, 195, 108, 0.42);
}

.btn-primary:hover,
.btn-gold:hover {
  background: #ffd98b;
  box-shadow: 0 16px 36px rgba(240, 195, 108, 0.5);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 5vw;
  background: rgba(246, 247, 239, 0.92);
  border-bottom: 1px solid rgba(36, 51, 19, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  padding: 11px 18px;
  color: var(--green);
  font-size: 19px;
  font-weight: 700;
}

.nav-links a + a {
  border-left: 2px solid rgba(36, 51, 19, 0.45);
}

.nav-links a span {
  position: relative;
  display: inline-block;
}

.nav-links a span::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: #6aa84f;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a.wipe-right-to-left span::before {
  clip-path: inset(0 0 0 100%);
}

.nav-links a:hover span::before,
.nav-links a:focus-visible span::before {
  clip-path: inset(0 0 0 0);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 5vw 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.95) contrast(1.02);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 32, 10, 0.94) 0%, rgba(26, 39, 16, 0.82) 42%, rgba(36, 51, 19, 0.5) 72%, rgba(36, 51, 19, 0.12) 100%),
    linear-gradient(to top, rgba(20, 32, 10, 0.35), transparent 45%);
}

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

.hero-content .eyebrow {
  color: var(--amber);
  font-size: clamp(20px, 1.8vw, 27px);
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 42px;
  color: rgba(246, 247, 239, 0.9);
  font-size: 26px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-points span {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(246, 247, 239, 0.9);
  font-size: 17px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-size: 22px;
  animation: bounce 2s infinite;
}

.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  background: var(--green);
  color: var(--amber);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 36s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  padding: 0 34px;
  border-right: 1px solid rgba(240, 195, 108, 0.25);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section {
  padding: 130px 5vw;
}

.section-header {
  max-width: 780px;
  margin-bottom: 70px;
}

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

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

.products-action {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
  padding: 42px 36px 34px;
  border: 1px solid rgba(36, 51, 19, 0.08);
  border-top: 4px solid var(--card-accent, #ccc);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card p,
.about-text p,
.quality-card p {
  font-size: 22px;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--card-glow, rgba(36, 51, 19, 0.14));
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::after {
  opacity: 0.9;
  transform: scale(1.18) translate(-6px, -6px);
}

.product-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 6px;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 900;
}

.card-tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 17px;
  border-radius: var(--radius-pill);
  background: var(--tag-bg);
  color: var(--tag-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 130px 5vw;
  background: var(--green-light);
}

.about-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(36, 51, 19, 0.06);
  pointer-events: none;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  max-width: 650px;
}

.about-note {
  align-self: stretch;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(240, 195, 108, 0.3), rgba(255, 255, 255, 0.72)),
    var(--white);
  box-shadow: var(--shadow-md);
}

.about-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  line-height: 1.1;
}

.stats-grid {
  display: grid;
  gap: 20px;
}

.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  align-items: center;
  padding: 28px 30px;
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stat-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  grid-row: 1 / 3;
  color: rgba(36, 51, 19, 0.4);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 900;
}

.stat-card strong {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
}

.stat-card span {
  color: var(--text-muted);
  font-size: 20px;
}

.quality-section {
  background: var(--white);
}

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

.quality-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 44px 36px;
  border: 1px solid rgba(36, 51, 19, 0.08);
  border-radius: var(--radius-lg);
  background: var(--cream);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.quality-card:hover {
  transform: translateY(-10px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.quality-num {
  position: absolute;
  top: 12px;
  right: 20px;
  color: rgba(36, 51, 19, 0.07);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.quality-card h3,
.quality-card p {
  position: relative;
  z-index: 1;
}

.location-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  overflow: hidden;
  padding: 130px 5vw;
  background:
    radial-gradient(circle at 14% 20%, rgba(240, 195, 108, 0.22), transparent 32%),
    linear-gradient(135deg, #eef3e0 0%, #f6f7ef 58%, #ffffff 100%);
}

.location-section::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(36, 51, 19, 0.07);
}

.location-copy {
  position: relative;
  z-index: 2;
}

.location-copy h2 {
  margin-bottom: 24px;
}

.location-copy p {
  max-width: 620px;
  font-size: 22px;
}

.service-area {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.service-area span {
  padding: 11px 17px;
  border: 1px solid rgba(36, 51, 19, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.service-area span:hover {
  transform: translateY(-5px);
  background: var(--green);
  color: var(--white);
}

.map-shell {
  position: relative;
  min-height: 480px;
  perspective: 1200px;
}

.map-orbit {
  position: absolute;
  inset: 20px;
  border: 2px dashed rgba(36, 51, 19, 0.18);
  border-radius: 42% 58% 55% 45%;
  transform: rotate(-50deg);
}

.map-card {
  position: relative;
  z-index: 2;
  height: 430px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 34px 80px rgba(26, 39, 16, 0.25);
  transform: rotate(-1.2deg);
  animation: mapFloat 7s ease-in-out infinite;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.map-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.015);
  box-shadow: 0 44px 90px rgba(26, 39, 16, 0.32);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  position: absolute;
  right: 28px;
  bottom: 4px;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 16px 20px;
  border: 1px solid rgba(36, 51, 19, 0.12);
  border-radius: 18px;
  background: rgba(246, 247, 239, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.map-caption strong {
  color: var(--green);
  font-size: 21px;
}

.map-caption span {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-section {
  padding: 125px 5vw;
  background: var(--navy);
}

.contact-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}

.contact-text h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.contact-text > p {
  margin-bottom: 34px;
  color: rgba(246, 247, 239, 0.74);
  font-size: 24px;
}

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

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--white);
  font-size: 22px;
}

.ci-label {
  min-width: 145px;
  flex-shrink: 0;
  color: var(--amber);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--amber);
}

.contact-list a:hover {
  opacity: 0.75;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
}

.footer {
  padding: 22px 5vw;
  background: var(--green-dark);
  text-align: center;
}

.footer p {
  color: rgba(246, 247, 239, 0.58);
  font-size: 14px;
}

@media (max-width: 900px) {
  .product-grid,
  .quality-grid,
  .about-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 40px;
  }

  .section,
  .about-section,
  .location-section,
  .contact-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .map-shell {
    min-height: 420px;
  }

  .map-card {
    height: 380px;
  }
}

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

  .logo img {
    width: 104px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2px;
    padding: 8px 0;
  }

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

  .nav-links a {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
  }

  .nav-links a + a {
    border-left: 0;
    border-top: 1px solid rgba(36, 51, 19, 0.18);
  }

  .hero {
    min-height: auto;
    padding: 86px 5vw 86px;
  }

  .hero-bg-overlay {
    background: rgba(20, 32, 10, 0.78);
  }

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

  .map-card {
    border-width: 7px;
    border-radius: 22px;
    animation: none;
    transform: none;
  }

  .map-caption {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .contact-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(44px, 16vw, 68px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  p,
  .product-card p,
  .about-text p,
  .quality-card p {
    font-size: 18px;
  }

  .hero-text {
    font-size: 19px;
  }

  .product-card,
  .quality-card,
  .about-note {
    padding: 30px 24px;
  }

  .map-shell {
    min-height: auto;
  }

  .map-orbit {
    display: none;
  }

  .map-card {
    height: 330px;
  }

  .service-area span {
    font-size: 15px;
  }

  .hero-actions,
  .contact-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .contact-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}
