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

:root {
  --green: #2d5a27;
  --green-light: #4a7c43;
  --green-pale: #edf4ec;
  --dark: #1a1a1a;
  --gray: #555;
  --gray-light: #f7f7f5;
  --border: #e2e2e2;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* top-bar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-logo span {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.3px;
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.1s;
}
.nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

/* main banner */
.banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.03);
  transition: transform 6s ease-out;
}
.banner-bg.loaded {
  transform: scale(1);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 20, 10, 0.72) 0%,
    rgba(20, 40, 20, 0.45) 55%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 140px 40px 80px;
}
.banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.banner h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.banner h1 em {
  font-style: normal;
  color: #9fce99;
}

.banner-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 300;
  line-height: 1.65;
}
.banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.4);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 90, 39, 0.45);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost:hover {
  color: #fff;
}

.banner-stats {
  position: absolute;
  bottom: 48px;
  left: 40px;
  right: 40px;
  display: flex;
  gap: 32px;
  z-index: 2;
}
.banner-stat {
  color: rgba(255, 255, 255, 0.9);
}
.banner-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.banner-stat span {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
  display: block;
}

/* sections */
section {
  padding: 96px 40px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
}

/* inclusions */
.inclusions {
  background: var(--gray-light);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--green);
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* process */
.process {
  background: var(--white);
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.process-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}
.step-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.process-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4/5;
}
.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* profile */
.profile {
  background: var(--green);
  color: #fff;
}
.profile .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.profile .section-title {
  color: #fff;
}
.profile .section-sub {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
}

.profile-list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.profile-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.profile-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  margin-top: 2px;
}
.profile-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

/* action */
.action-section {
  background: var(--gray-light);
  text-align: center;
}
.action-box {
  max-width: 600px;
  margin: 0 auto;
}
.action-section .section-title {
  margin-bottom: 14px;
}
.action-section .section-sub {
  margin: 0 auto 36px;
  max-width: 420px;
}

.email-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.email-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}
.email-form input:focus {
  border-color: var(--green);
}
.email-form button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.2s;
}
.email-form button:hover {
  background: var(--green-light);
}
.action-note {
  font-size: 13px;
  color: #999;
}
.action-note a {
  color: var(--green);
}

/* disclaimer */
.disclaimer-bar {
  background: #f0f0ee;
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 12px;
  color: #888;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* bottom */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.45);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer p {
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* cookie-notice */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.82);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-bar.visible {
  transform: translateY(0);
}
.cookie-bar a {
  color: #9fce99;
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s;
}
.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

/* responsive */
@media (max-width: 900px) {
  section {
    padding: 72px 24px;
  }
  .nav {
    padding: 16px 24px;
  }
  .banner-content {
    padding: 120px 24px 100px;
  }
  .banner-stats {
    bottom: 32px;
    left: 24px;
    gap: 20px;
  }
  .banner-stat strong {
    font-size: 22px;
  }
  .process-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-image {
    aspect-ratio: 16/9;
    order: -1;
  }
  footer {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .disclaimer-bar {
    padding: 18px 24px;
  }
}
@media (max-width: 560px) {
  .email-form {
    flex-direction: column;
  }
  .banner-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .nav-logo span {
    display: none;
  }
}
