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

:root {
  --deep: #0c2414;
  --overlay: rgba(12, 36, 20, 0.72);
  --leaf: #6cb96f;
  --leaf-deep: #408a46;
  --cream: #f6f5ef;
  --white: #ffffff;
  --text: #1f261c;
  --muted: #4c5647;
  --accent: #c7e571;
  --accent-2: #ffe7a3;
  --shadow: 0 24px 60px rgba(12, 36, 20, 0.25);
  --radius: 18px;
  --max-width: 1180px;
  --hero-img: url('./Ceylonorigin_hero.png');
}

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

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px 80px;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--leaf-deep);
}

.brand img.logo-img {
  height: 56px;
  width: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(12, 36, 20, 0.12);
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--leaf-deep);
  margin: 4px 0;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--leaf-deep);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(64, 138, 70, 0.12);
  transform: translateY(-1px);
}

.nav-links a.cta {
  background: var(--leaf);
  color: #0c1a11;
  box-shadow: var(--shadow);
}

.hero {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  color: #fff;
  box-shadow: none;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-img) center/cover no-repeat;
  filter: saturate(1.05);
}

.hero::after {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.35));
}

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

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 92px;
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.hero h1, .hero p, .hero .eyebrow {
  text-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f0ffe7;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  margin: 0 0 10px;
  color: inherit;
}

h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--deep);
}

h3 {
  font-size: 20px;
  color: var(--deep);
}

p {
  margin: 0 0 16px;
  line-height: 1.65;
  color: inherit;
}

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

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--leaf), #9ed786);
  color: #0c1a11;
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-dark {
  background: #0c1a11;
  color: #fff;
}

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

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.list li {
  position: relative;
  padding-left: 14px;
}

.list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--leaf-deep);
  font-weight: 800;
}

.section {
  margin-top: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.pill-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(64, 138, 70, 0.12);
  color: var(--leaf-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(12, 36, 20, 0.1);
  box-shadow: 0 12px 28px rgba(12, 36, 20, 0.08);
  text-align: center;
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(108, 185, 111, 0.16);
  color: var(--leaf-deep);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-weight: 800;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(12, 36, 20, 0.1);
  box-shadow: 0 12px 28px rgba(12, 36, 20, 0.08);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.product-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--leaf-deep);
  font-weight: 700;
}

.product-card .price {
  font-weight: 800;
  color: var(--deep);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.product-card .btn {
  width: 100%;
  margin-top: auto;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.vision-card {
  background: linear-gradient(135deg, rgba(108, 185, 111, 0.12), rgba(12, 36, 20, 0.06));
  border: 1px solid rgba(12, 36, 20, 0.1);
  box-shadow: 0 14px 36px rgba(12, 36, 20, 0.1);
  color: var(--text);
}

.vision-card h3 {
  color: var(--deep);
}

.vision-card .pill {
  background: rgba(64, 138, 70, 0.16);
  color: var(--leaf-deep);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.product-card.product-gallery-card {
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(12, 36, 20, 0.12);
  border: 1px solid rgba(12, 36, 20, 0.12);
}

.stat-block {
  background: linear-gradient(135deg, #bde18c, #8ac46e);
  border-radius: 22px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: center;
  color: #0c1a11;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}

.highlight {
  color: var(--leaf-deep);
}

.video-block {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 36, 20, 0.1);
}

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

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(12, 36, 20, 0.08);
  box-shadow: 0 12px 28px rgba(12, 36, 20, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 64px;
  color: rgba(108, 185, 111, 0.2);
  font-family: 'Playfair Display', serif;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 36, 20, 0.08);
  box-shadow: 0 12px 28px rgba(12, 36, 20, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
}

.blog-card img {
  border-radius: 0;
}

.blog-body {
  padding: 14px;
  display: grid;
  gap: 6px;
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 700;
  color: var(--leaf-deep);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(12, 36, 20, 0.16);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--leaf-deep);
  outline: none;
  box-shadow: 0 0 0 3px rgba(64, 138, 70, 0.22);
}

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

footer {
  margin-top: 80px;
  background: #0c1a11;
  color: rgba(255, 255, 255, 0.72);
  padding: 28px 0;
}

footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.footer-logo img {
  height: 50px;
  width: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 720px) {
  .hero-content {
    padding: 46px 26px 52px;
  }
  .page {
    padding: 22px 18px 64px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.96);
    position: absolute;
    top: 64px;
    right: 18px;
    padding: 12px;
    border: 1px solid rgba(12,36,20,0.1);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(12,36,20,0.12);
    z-index: 25;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

@media (min-width: 721px) {
  .nav-toggle {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
    position: static;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
}
