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

:root {
  --color-green: #2D5A3D;
  --color-green-light: #3A734E;
  --color-green-dark: #1E3F2A;
  --color-cream: #FAFAF7;
  --color-cream-dark: #F0F0EB;
  --color-white: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-text-light: #999999;
  --color-line: #E5E5E0;
  --color-line-light: #F0F0EB;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-green);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 200;
  font-size: 0.875rem;
  border-radius: 4px;
}
.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 1px 0 var(--color-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-green);
  letter-spacing: -0.01em;
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-green);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--color-green);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link--cta {
  background: var(--color-green);
  color: var(--color-white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-link--cta::after {
  display: none;
}
.nav-link--cta:hover {
  background: var(--color-green-light);
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
  padding: 64px 0;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--color-green);
}
.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn--primary {
  background: var(--color-green);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.2);
}
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-line);
}
.btn--ghost:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}
.btn--full {
  width: 100%;
}

/* Hero Image */
.hero-image {
  position: relative;
}
.hero-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 640/720;
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--color-green);
  border-radius: 8px;
  z-index: -1;
}

/* Hero Line */
.hero-line {
  height: 1px;
  background: linear-gradient(to right, var(--color-green), transparent);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Stats */
.stats {
  padding: 56px 0;
  border-bottom: 1px solid var(--color-line);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat-item {
  text-align: left;
  flex: 1;
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-green);
  line-height: 1.2;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-line);
  flex-shrink: 0;
}

/* Section Shared */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 520px;
}
.section-header--centered {
  text-align: center;
}
.section-header--centered .section-desc {
  margin: 0 auto;
}

/* Inventory */
.inventory {
  padding: 120px 0;
}
.section-header {
  margin-bottom: 64px;
}
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.inventory-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-line-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.inventory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.inventory-card-image {
  aspect-ratio: 480/320;
  overflow: hidden;
}
.inventory-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.inventory-card:hover .inventory-card-image img {
  transform: scale(1.04);
}
.inventory-card-content {
  padding: 28px;
}
.inventory-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.inventory-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.inventory-cta {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
}
.inventory-cta p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

/* Link Arrow */
.link-arrow {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-green);
  letter-spacing: 0.02em;
  transition: letter-spacing 0.2s ease;
}
.link-arrow:hover {
  letter-spacing: 0.08em;
}

/* Why Us */
.why-us {
  padding: 120px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.split-section--reverse .split-content {
  order: 2;
}
.split-section--reverse .split-image {
  order: 1;
}
.split-image-wrapper {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 560/640;
}
.split-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-content .section-desc {
  margin-bottom: 20px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature-item {
  text-align: left;
}
.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-green);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--color-green);
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Process */
.process {
  padding: 120px 0;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
}
.process-step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 0 16px;
}
.process-step-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}
.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.process-step-connector {
  width: 48px;
  flex-shrink: 0;
  height: 1px;
  background: var(--color-line);
  margin-top: 28px;
}

/* About */
.about {
  padding: 120px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

/* Testimonial */
.testimonial-strip {
  padding: 100px 0;
  background: var(--color-green);
}
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 28px;
}
.testimonial-footer {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}
.testimonial-author {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Contact */
.contact {
  padding: 120px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--color-green);
}
.contact-detail-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}
.contact-link {
  transition: color 0.2s ease;
}
.contact-link:hover {
  color: var(--color-green);
}

/* Form */
.contact-form-wrapper {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 40px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.08);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  margin-top: 16px;
  padding: 16px;
  background: rgba(45, 90, 61, 0.08);
  border: 1px solid rgba(45, 90, 61, 0.2);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--color-green);
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--color-green-dark);
  color: var(--color-white);
  padding: 64px 0 40px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}
.footer-brand .logo-text {
  color: var(--color-white);
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  max-width: 240px;
}
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--color-white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}
.footer-bottom a:hover {
  color: var(--color-white);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .split-section {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }
  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 32px 32px;
    background: var(--color-cream);
    border-left: 1px solid var(--color-line);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 105;
    overflow-y: auto;
  }
  .nav-list.open {
    transform: translateX(0);
  }
  .nav-list li {
    width: 100%;
  }
  .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--color-line-light);
    width: 100%;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link--cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
  }

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
  }
  .nav-overlay.active {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 64px;
  }
  .hero-image {
    order: -1;
  }
  .hero-image-wrapper {
    aspect-ratio: 4/3;
  }
  .hero-image-accent {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .inventory-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-section--reverse .split-content {
    order: 1;
  }
  .split-section--reverse .split-image {
    order: 2;
  }
  .split-image-wrapper {
    aspect-ratio: 4/3;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .process-step {
    max-width: 100%;
    padding: 0;
  }
  .process-step-connector {
    width: 1px;
    height: 32px;
    margin-top: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrapper {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.625rem;
  }
}
