:root {
  --bg: #06140f;
  --panel: #102921;
  --panel-soft: #0e241d;
  --card: #0b2a20;
  --deep: #082017;
  --text: #e6efe5;
  --muted: #c9d3c5;
  --accent: #d9b85a;
  --accent-2: #e6c96e;
  --border: rgba(255,255,255,0.06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito Sans', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 26px 80px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #f5f8f4;
  margin: 0;
}

p { margin: 0; color: var(--muted); }

.hero {
  position: relative;
  padding: 32px 0 140px;
  border-radius: 0 0 36px 36px;
  overflow: visible;
  margin-left: calc((100vw - 100%)/-2);
  margin-right: calc((100vw - 100%)/-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,20,15,0.78) 0%, rgba(6,20,15,0.82) 45%, rgba(6,20,15,0.9) 100%),
    radial-gradient(circle at 40% 38%, rgba(72,114,82,0.35), transparent 45%),
    url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: saturate(1.05);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0 10px;
}

.hero-copy { max-width: 780px; }
.hero-copy h1 {
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1.08;
  margin-bottom: 18px;
  position: relative;
}

.hero-copy h1::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 240px;
  height: 18px;
  background: linear-gradient(90deg, rgba(218,184,90,0.9), rgba(232,205,110,0.9));
  border-radius: 999px;
  opacity: 0.95;
}

.hero-copy p {
  max-width: 620px;
  margin: 30px auto 28px;
  color: #dfe7da;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  color: #f7f9f5;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}

.play-icon {
  width: 34px;\r\n  height: 34px;
  border-radius: 50%;
  border: 2px solid #f7f9f5;
  display: grid;
  place-items: center;
  position: relative;
}

.play-icon::after {
  content: '';
  display: block;
  margin-left: 4px;
  border-left: 10px solid #f7f9f5;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0d9b65;
  color: #f7f9f5;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(0,0,0,0.32);
  border: 1px solid rgba(0,0,0,0.25);
}

.call-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b7e53;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #f7f9f5;
  letter-spacing: 0.5px;
}

.call-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.call-text .label { font-size: 12px; color: #e7efdf; opacity: 0.85; }
.call-text .phone { font-size: 16px; color: #fdfdf9; }

.feature-panel {
  position: relative;
  margin-top: -60px;
  margin-bottom: 70px;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 32px 38px;
  background: linear-gradient(135deg, #0f3a2e 0%, #0c2f24 100%);
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #c6b55f 0%, #a79a4a 45%, rgba(167,154,74,0) 70%);
  opacity: 0.45;
  filter: blur(1px);
}

.feature-info { position: relative; z-index: 1; max-width: 440px; }
.feature-rating { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,0,0,0.35); padding: 10px 16px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); }
.feature-rating .stars { color: #e8c85b; letter-spacing: 1px; font-weight: 800; }
.feature-rating .score { font-weight: 800; color: #f5f7f2; }
.feature-copy { margin: 16px 0 20px; color: #d9e3d7; }
.feature-client { display: flex; align-items: center; gap: 12px; }
.client-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #0d241a; display: grid; place-items: center; font-weight: 800; box-shadow: 0 8px 18px rgba(0,0,0,0.25); }
.client-name { font-weight: 800; }
.client-role { color: #b7c5b4; font-size: 14px; }

.feature-plant {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}

.feature-plant img {
  width: min(100%, 520px);
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,0.35));
}

.pill-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  color: #eaf1e7;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.25);
  font-size: 14px;
}

.pill-badge::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #d7e3d3;
  display: inline-block;
  box-shadow: inset 0 0 0 3px rgba(0,0,0,0.35);
}

.pill-one { top: 34%; left: 26%; transform: translate(-50%, -50%); }
.pill-two { bottom: 18%; left: 46%; transform: translate(-50%, 0); }
.pill-three { top: 30%; right: 12%; transform: translate(0, -50%); }

.experience {
  padding: 40px 0 80px;
}

.exp-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.exp-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  background: #0e251d;
  box-shadow: 0 18px 42px rgba(0,0,0,0.32);
}

.exp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exp-location {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  background: #f6f7f2;
  color: #0c241c;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 20px rgba(0,0,0,0.24);
  letter-spacing: 0.1px;
}

.pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9b85a;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(217,184,90,0.3);
}

.exp-years {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 14px 18px;
  background: linear-gradient(160deg, #165c3b, #0c3a2a);
  color: #e8f4e8;
  border-radius: 14px;
  min-width: 130px;
  box-shadow: 0 16px 26px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.years-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

.years-label {
  font-size: 12px;
  color: #cfe1ce;
  line-height: 1.3;
}

.exp-years::after {
  content: '';
  display: block;
  margin-top: 8px;
  width: 64px;
  height: 3px;
  background: #67c08f;
  border-radius: 999px;
}

.exp-copy h2 {
  font-size: clamp(38px, 4.8vw, 52px);
  margin-bottom: 14px;
  line-height: 1.15;
}

.exp-copy p {
  color: #d5dfd0;
  margin: 0 0 22px;
  max-width: 620px;
  line-height: 1.6;
  font-size: 15px;
}

.btn-exp {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0f241c;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(217,184,90,0.35);
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 80%;
  margin: 10px auto 24px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(8,32,24,0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.brand { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: rgba(255,255,255,0.05); border-radius: 14px; }
.brand-icon { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(120deg, #1c7a55, #1e5c45); display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); }
.brand-name { font-weight: 800; font-size: 18px; letter-spacing: 0.3px; }

nav ul { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0 6px; }
nav a { font-weight: 700; color: #e0eadc; padding: 8px 12px; border-radius: 10px; transition: color .2s ease, background .2s ease; }
nav a:hover { color: var(--accent); background: rgba(255,255,255,0.04); }

.btn-gold {
  margin-left: auto;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0f251c;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(214,184,90,0.45);
}

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 46px;
  background: linear-gradient(165deg, rgba(13,50,38,0.9), rgba(9,33,25,0.9));
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 26px 50px rgba(0,0,0,0.35);
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1529257414772-1960e09e8be1?auto=format&fit=crop&w=900&q=60');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 60% 60%;
  opacity: 0.18;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-size: clamp(42px, 5vw, 58px); line-height: 1.05; margin-bottom: 14px; }
.hero-content p { max-width: 520px; color: #d8e1d3; }

.hero-actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #10241c; font-weight: 800; box-shadow: 0 16px 30px rgba(214,184,90,0.4); }
.btn-primary .play { font-size: 16px; }

.btn-dark { display: inline-flex; align-items: center; padding: 14px 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.35); color: #f2f6ef; font-weight: 800; }

.hero-image { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-image img { width: min(100%, 380px); border-radius: 18px; object-fit: cover; box-shadow: 0 22px 38px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); }

.testimonial-card {
  position: relative;
  z-index: 1;
  margin: 18px 0 0 0;
  max-width: 780px;
  padding: 22px 24px;
  background: linear-gradient(120deg, #0f3829, #0c2d21);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

.test-top { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.stars { font-weight: 800; color: var(--accent-2); letter-spacing: 1px; }
.stars span { color: #e9f1e7; font-weight: 700; margin-left: 6px; }
.pill { padding: 9px 14px; border-radius: 999px; font-weight: 800; border: 1px solid rgba(255,255,255,0.15); }
.pill.green { background: rgba(18,118,87,0.35); color: #e8f2e8; }
.pill.gold { background: rgba(217,184,90,0.25); color: #f7e4b4; }
.pill.dark { background: rgba(0,0,0,0.3); color: #f1f5ec; }

.quote { margin: 12px 0 16px; color: #d8e3d6; }

.test-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.client { display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px;`n  height: 34px; border-radius: 50%; background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #0f241c; display: grid; place-items: center; font-weight: 800; }
.client-name { font-weight: 800; }
.client-role { color: #b9c5b6; font-size: 14px; }

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 70px 0 40px;
}

.about-media { position: relative; }
.about-media img { width: 100%; border-radius: 999px; border: 1px solid var(--border); box-shadow: 0 22px 38px rgba(0,0,0,0.32); height: 280px; object-fit: cover; }

.about-copy h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 8px; text-align: center; }
.about-copy p { text-align: center; max-width: 520px; margin: 0 auto 16px; }
.about-copy .btn-primary { display: inline-flex; margin: 0 auto; }

.best { padding: 40px 0 60px; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 26px; }
.section-head h2 { font-size: clamp(34px, 4.2vw, 46px); margin-bottom: 10px; }
.section-head p { color: #c8d2c4; font-size: 14px; margin-top: 2px; }

.product-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: end;
  justify-items: center;
}

.product {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.product-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0,0,0,0.3);
  height: 220px;
  background: #0e241d;
}
.product-thumb img { width: 100%; height: 220px; object-fit: cover; display: block; filter: saturate(1.02); }
.rating {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.95);
  color: #d0ad4f;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
  font-size: 14px;
}
.rating span { color: #0f241c; margin-left: 6px; font-weight: 700; }

.icon-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.95);
  color: #0f241c;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.25);
}

.product-body {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 88%;
  background: rgba(6, 24, 19, 0.86);
  border-radius: 14px;
  padding: 12px 16px 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 22px rgba(0,0,0,0.28);
}

.product h3 { margin: 0 0 6px; font-size: 18px; color: #f7f9f4; font-weight: 700; }
.product p { color: #c1cdbc; margin: 0; font-size: 13.5px; line-height: 1.45; }

.product.highlight .product-body {
  background: #6c8557;
  color: #f7f9f4;
  border: none;
  width: 74%;
  border-radius: 18px;
}

.product.highlight .product-body p { color: #eef3e9; }

.product.highlight .product-thumb {
  height: 260px;
}
.product.highlight .product-thumb img {
  height: 260px;
}



.latest-work { padding: 40px 0 90px; position: relative; text-align: center; }
.latest-work::before, .latest-work::after {
  content: '';
  position: absolute;
  filter: blur(30px);
  opacity: 0.4;
  z-index: 0;
}
.latest-work::before {
  width: 280px;
  height: 280px;
  left: -60px;
  top: 40px;
  background: radial-gradient(circle, rgba(40,110,78,0.55), rgba(8,32,24,0));
}
.latest-work::after {
  width: 260px;
  height: 260px;
  right: -40px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(215,184,90,0.4), rgba(8,32,24,0));
}
.section-head.narrow {
  max-width: 520px;
  margin: 0 auto 22px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.section-head.narrow h2 { margin: 0; }

.work-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: none;
  box-shadow: 0 22px 36px rgba(0,0,0,0.32);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  backdrop-filter: blur(6px);
  cursor: pointer;
  padding-bottom: 0;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 46px rgba(0,0,0,0.38);
  border-color: rgba(217,184,90,0.3);
}

.work-media {
  position: relative;
  overflow: hidden;
  height: 330px;
  background: #0f241c;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
  filter: saturate(1.05);
}

.work-card:hover .work-media img { transform: scale(1.04); }

.work-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,20,15,0) 0%, rgba(6,20,15,0.1) 45%, rgba(6,20,15,0.7) 100%);
  pointer-events: none;
}

.work-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  color: #f7f1d6;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 18px rgba(0,0,0,0.32);
}

.work-meta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  padding: 0;
  display: grid;
  gap: 6px;
  text-align: center;
  z-index: 1;
}

.work-meta h3 { margin: 0; font-size: 18px; color: #f7f9f4; text-shadow: 0 2px 6px rgba(0,0,0,0.45); }

.work-cta { margin-top: 24px; position: relative; z-index: 1; }
.btn-more {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0f241c;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 16px 30px rgba(217,184,90,0.35);
}

.premium-services {
  position: relative;
  margin: 40px 0 60px;
  padding: 50px 0 30px;
  color: var(--text);
  overflow: hidden;
  background: transparent;
  border-radius: 18px;
}

.premium-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(17,66,50,0.35), transparent 42%),
              radial-gradient(circle at 82% 26%, rgba(10,42,33,0.28), transparent 38%),
              linear-gradient(180deg, rgba(9,28,22,0.8), rgba(6,20,15,0.92));
  opacity: 1;
  border-radius: 18px;
}

.premium-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  padding: 0 26px;
  z-index: 1;
}

.premium-head {
  text-align: center;
  display: grid;
  gap: 8px;
}

.premium-head h2 {
  font-size: clamp(32px, 4vw, 42px);
  color: #f5f8f4;
  margin: 4px 0;
}

.premium-head p {
  color: #cfd9d1;
  max-width: 760px;
  margin: 0 auto;
  font-weight: 600;
}

.premium-layout {
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  gap: 22px;
  align-items: center;
}

.premium-list {
  display: grid;
  gap: 16px;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 18px;
  background: linear-gradient(180deg, rgba(14,43,33,0.92) 0%, rgba(12,38,30,0.9) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 30px rgba(0,0,0,0.24);
}

.service-card + .service-card {
  border-top: 4px solid rgba(0,0,0,0.12);
}

.service-icon {
  width: 60px;`n  height: 60px;
  border-radius: 50%;
  background: rgba(4,19,14,0.6);
  border: 2px dashed rgba(217,184,90,0.4);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 8px rgba(7,26,20,0.9);
}

.service-icon svg { width: 34px;`n  height: 34px; stroke: var(--accent); }

.service-copy h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #f5f8f4;
}

.service-copy p {
  margin: 0;
  color: #c5cfc6;
  line-height: 1.5;
  font-weight: 600;
}

.premium-hero {
  position: relative;
  display: grid;
  place-items: center;
}

.premium-hero img {
  width: 100%;
  max-width: 460px;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: none;
  background: none;
}

.leaf-spray {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 50% 50%, rgba(120,185,130,0.28), rgba(120,185,130,0));
  filter: blur(12px);
  pointer-events: none;
}

.contact {
  padding: 80px 0 90px;
  margin-left: calc((100vw - 100%)/-2);
  margin-right: calc((100vw - 100%)/-2);
}

.contact-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 22px;
  background: linear-gradient(150deg, #0c241c, #0a1e17);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
  display: grid;
  gap: 18px;
}

.contact-copy h2 {
  font-size: clamp(30px, 3.8vw, 40px);
  margin: 8px 0 6px;
}

.contact-copy p {
  color: #c8d3c8;
  max-width: 620px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.contact-form label {
  color: #eaf2ea;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  gap: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #f7f9f4;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #cbd6cb;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #d9b85a 50%), linear-gradient(135deg, #d9b85a 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  width: fit-content;
  margin-top: 6px;
}

.contact-form label.full { display: grid; }

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.site-footer {
  background: linear-gradient(180deg, #071a14, #04120e);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 26px 26px;
  margin-left: calc((100vw - 100%)/-2);
  margin-right: calc((100vw - 100%)/-2);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand .brand-icon {
  width: 34px;`n  height: 34px;
  border-radius: 50%;
  background: linear-gradient(120deg, #1c7a55, #1e5c45);
  display: grid;
  place-items: center;
  color: #f7f9f4;
  font-weight: 800;
}

.brand-title {
  font-weight: 800;
  font-size: 18px;
  color: #f7f9f4;
}

.footer-brand p { margin: 4px 0 0; color: #c4cfc5; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.footer-col h4 {
  margin: 0 0 10px;
  color: #f5f8f4;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-col a,
.footer-col li {
  color: #c4cfc5;
  text-decoration: none;
  font-weight: 600;
}

.footer-col a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #f7f9f4;
  background: rgba(255,255,255,0.05);
  font-weight: 800;
  font-size: 12px;
}

.footer-bottom {
  max-width: 1240px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #c4cfc5;
  font-weight: 600;
}

.why-choose {
  position: relative;
  background: linear-gradient(90deg, #0a1f17 50%, #0f3628 50%);
  margin-left: calc((100vw - 100%)/-2);
  margin-right: calc((100vw - 100%)/-2);
  padding: 80px calc((100vw - 100%)/2) 110px;
  min-height: 100vh;
  overflow: hidden;
}

.choose-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.choose-header h2 {
  font-size: clamp(36px, 4.6vw, 50px);
  margin-top: 8px;
  color: var(--accent);
}

.choose-body {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
  background: transparent;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.choose-nav {
  display: grid;
  gap: 0;
  background: #207538;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.choose-tab {
  width: 100%;
  text-align: left;
  padding: 18px 18px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #eaf2ea;
  font-weight: 800;
  letter-spacing: 0.1px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease;
  position: relative;
}

.choose-tab::before {
  content: '•';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.choose-tab.active {
  background: #0f3628;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.choose-panel {
  background: #2c8b40;
  border-radius: 26px;
  padding: 24px 24px 20px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  gap: 18px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.choose-panel::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(217,184,90,0.18), rgba(217,184,90,0));
}

.choose-panel::before {
  content: '';
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(4,15,12,0.28), rgba(4,15,12,0));
}

.choose-visual {
  position: relative;
  border-radius: 30px 90px 30px 30px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.12);
  clip-path: inset(0 round 30px 90px 30px 30px);
}

.choose-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.choose-copy { position: relative; z-index: 1; }
.choose-title {
  margin: 0 0 12px;
  font-size: 30px;
  color: #f7f9f4;
}
.choose-desc { margin: 0 0 16px; color: #eaf2ea; }

.choose-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.choose-stats li {
  position: relative;
  padding-left: 26px;
  color: #f2f7f2;
  font-weight: 700;
}

.choose-stats li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.dream-garden {
  position: relative;
  margin: 50px 0 90px;
  padding: 70px 0;
  background: linear-gradient(130deg, rgba(217,184,90,0.95), rgba(230,201,110,0.9));
  color: #0c241c;
  box-shadow: 0 28px 58px rgba(0,0,0,0.32);
  border-top: 1px solid rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.18);
  margin-left: calc((100vw - 100%)/-2);
  margin-right: calc((100vw - 100%)/-2);
  padding-left: calc((100vw - 100%)/2 + 26px);
  padding-right: calc((100vw - 100%)/2 + 26px);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.dream-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
}

.dream-visual { position: relative; display: grid; grid-template-columns: 1fr; align-items: center; }

.dream-photo {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  border: none;
  background: transparent;
}

.dream-photo.primary img,
.dream-photo.overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.dream-photo.primary {
  aspect-ratio: 4 / 4.2;
  border-radius: 42px;
  clip-path: inset(0 round 42px);
}

.dream-photo.overlay-card {
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: 56%;
  min-width: 240px;
  border-radius: 48px 48px 18px 48px;
  border: none;
  box-shadow: 0 18px 32px rgba(0,0,0,0.24);
  clip-path: inset(0 round 48px 48px 18px 48px);
}

.years-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(130deg, #5cb36c, #3f9a54);
  color: #0f2c1c;
  padding: 18px 16px 14px;
  border-radius: 18px 0 24px 0;
  box-shadow: 0 14px 28px rgba(0,0,0,0.26);
  border: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.years-num { font-size: 30px; font-weight: 800; line-height: 1; }
.years-label { font-size: 12px; margin-top: 6px; }

.dream-copy h2 {
  color: #0c241c;
  font-size: clamp(32px, 4.4vw, 44px);
  line-height: 1.15;
  margin: 10px 0 12px;
}

.dream-copy p {
  color: #1e3a2c;
  margin: 0 0 18px;
  max-width: 560px;
}

.pill-badge.soft {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: #f5f9f4;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: none;
}

.dream-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border-left: 1px solid rgba(0,0,0,0.08);
}

.dream-list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.dream-list li { font-weight: 700; color: #0f2c20; }

.dream-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary.solid {
  background: #0f241c;
  color: #f6f3e6;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
  border: 1px solid rgba(0,0,0,0.2);
}

.callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.08);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.1);
  color: #0c241c;
}

.call-icon.small {
  width: 34px;`n  height: 34px;
  background: #0f241c;
  color: #f6f3e6;
}

.call-label { font-weight: 700; font-size: 12px; }
.call-number { font-weight: 800; font-size: 15px; }
.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-content {
  position: relative;
  background: linear-gradient(150deg, #0f2e24, #0b231c);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  max-width: 840px;
  width: min(92vw, 840px);
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

.lightbox-title {
  margin-top: 12px;
  font-size: 18px;
  color: #f5f8f3;
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 6px;
  width: 34px;\r\n  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
  color: #f7f9f4;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-close:hover {
  background: rgba(0,0,0,0.7);
}

.lock-scroll { overflow: hidden; }

@media (max-width: 1000px) {
  .hero-card { grid-template-columns: 1fr; padding: 32px; }
  .hero-card::after { background-size: 90%; background-position: 50% 70%; }
  .hero-image { order: -1; }
  .testimonial-card { margin-top: 14px; }
  .feature-card { grid-template-columns: 1fr; padding: 28px; }
  .feature-plant { margin-top: -10px; }
  .exp-card { grid-template-columns: 1fr; }
  .exp-copy { text-align: center; }
  .exp-copy p { margin-left: auto; margin-right: auto; }
  .exp-copy h2 { font-size: 32px; }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .premium-layout { grid-template-columns: 1fr; }
  .premium-hero { order: -1; }
  .why-choose { padding-left: 26px; padding-right: 26px; }
  .choose-body { grid-template-columns: 1fr; }
  .choose-panel { grid-template-columns: 1fr; }
  .dream-garden {
    padding-left: 26px;
    padding-right: 26px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .dream-inner { grid-template-columns: 1fr; }
  .dream-photo.overlay-card { position: relative; right: 0; bottom: 0; margin-top: -60px; width: 70%; justify-self: end; }
}

@media (max-width: 720px) {
  .nav-bar { flex-wrap: wrap; justify-content: center; border-radius: 18px; }
  nav ul { flex-wrap: wrap; justify-content: center; }
  .btn-gold { order: 3; margin-left: 0; }
  .hero-card { padding: 24px 20px; }
  .hero-inner { padding: 60px 0; }
  .hero-copy h1::after { width: 180px; height: 14px; bottom: -10px; }
  .call-text .phone { font-size: 15px; }
  .feature-panel { margin-top: -30px; }
  .feature-card { padding: 24px; }
  .pill-one, .pill-two, .pill-three { position: static; transform: none; margin: 8px 6px 0 0; }
  .feature-plant { flex-direction: column; }
  .exp-card { gap: 20px; }
  .exp-copy h2 { font-size: 30px; }
  .about-media img { height: 220px; border-radius: 22px; }
  .work-grid { grid-template-columns: 1fr; }
  .premium-head p { font-size: 14px; }
  .choose-panel { padding: 18px; }
  .dream-garden {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .dream-inner { gap: 20px; }
  .dream-photo.overlay-card { width: 80%; margin-top: -40px; }
}

@media (max-width: 540px) {
  .page { padding: 0 18px 60px; }
  .hero-copy h1 { font-size: 36px; }
  .product-thumb img { height: 200px; }
}








.services { padding: 10px 0 60px; }
.service-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.services .service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16,48,36,0.92) 0%, rgba(11,33,25,0.96) 100%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px 18px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 20px 34px rgba(0,0,0,0.28);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.services .service-card.service-1 { background: linear-gradient(180deg, rgba(22,82,55,0.95), rgba(10,38,29,0.96)); }
.services .service-card.service-2 { background: linear-gradient(180deg, rgba(16,62,52,0.95), rgba(9,30,26,0.96)); }
.services .service-card.service-3 { background: linear-gradient(180deg, rgba(20,64,44,0.94), rgba(10,34,27,0.96)); }
.services .service-card.service-4 { background: linear-gradient(180deg, rgba(26,70,48,0.94), rgba(11,34,26,0.96)); }
.services .service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(217,184,90,0.14), transparent 40%),
              radial-gradient(circle at 80% 0%, rgba(12,155,101,0.14), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}
.services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(0,0,0,0.32);
  border-color: rgba(217,184,90,0.3);
}
.services .service-icon {
  width: 60px;
  height: 60px;
  margin: 0;
  border-radius: 16px;
  background: rgba(0,0,0,0.28);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.services .service-icon svg {
  width: 40px;
  height: 40px;
  stroke: #d9b85a;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services .service-top {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  padding-right: 42px;
}
.services .service-chip {
  position: absolute;
  top: 4px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(217,184,90,0.16);
  color: #f5f8f4;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
  border: 1.5px solid rgba(217,184,90,0.6);
  box-shadow: 0 6px 12px rgba(0,0,0,0.22);
}
.services .service-card h3 { margin: 0 0 8px; font-size: 18px; color: #f3f6f2; letter-spacing: 0.1px; }
.services .service-desc {
  color: #d1ddcf;
  margin: 4px 0 14px;
  font-size: 14px;
  line-height: 1.55;\r\n  width: 100%;\r\n}
.services .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.services .service-list li {
  position: relative;
  padding-left: 18px;
  color: #c7d1c6;
  font-size: 14px;
  line-height: 1.55;\r\n  width: 100%;\r\n}
.services .service-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.services-cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.services-note {
  color: #c9d3c5;
  font-weight: 700;
  font-size: 14px;
}