:root {
  --white: #ffffff;
  --cream: #fff8e8;
  --cream-strong: #ffe7a8;
  --blue-soft: #eaf7ff;
  --blue: #2c8dcc;
  --green: #248a5b;
  --green-deep: #12613f;
  --mint: #dff7ea;
  --gold: #f6b93b;
  --text: #17312a;
  --muted: #637872;
  --border: rgba(25, 65, 52, 0.14);
  --shadow-sm: 0 12px 32px rgba(24, 86, 69, 0.08);
  --shadow: 0 18px 55px rgba(32, 94, 78, 0.14);
  --radius: 8px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.svg-sprite {
  display: none;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--border);
  box-shadow: 0 12px 35px rgba(31, 73, 62, 0.08);
}

.navbar {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  background: linear-gradient(135deg, var(--cream), var(--blue-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(47, 122, 96, 0.12);
}

.brand svg,
.brand-mark svg {
  width: 25px;
  height: 25px;
}

.brand-mark img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 23px;
  color: #24473e;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  padding-block: 8px;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu a:hover {
  color: var(--green);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.install-btn,
.nav-toggle {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.install-btn {
  padding: 9px 13px;
  color: var(--green-deep);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(36, 138, 91, 0.08);
}

.install-btn:hover {
  background: var(--mint);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.app-status {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--white);
  background: #17312a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(12, 44, 35, 0.24);
  font-size: 0.88rem;
  font-weight: 900;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.app-status.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f6b93b;
  box-shadow: 0 0 0 4px rgba(246, 185, 59, 0.18);
}

.app-status.online .status-dot {
  background: #49c878;
  box-shadow: 0 0 0 4px rgba(73, 200, 120, 0.18);
}

.app-install-banner {
  position: fixed;
  z-index: 110;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: min(100% - 28px, 440px);
  display: grid;
  grid-template-columns: 1fr auto 36px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 138, 91, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(23, 49, 42, 0.2);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.app-install-banner strong,
.app-install-banner span {
  display: block;
  line-height: 1.25;
}

.app-install-banner span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.banner-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  background: #f8fcfa;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
}

.app-tabbar {
  position: fixed;
  z-index: 90;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  min-height: 66px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 138, 91, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(23, 49, 42, 0.2);
  backdrop-filter: blur(16px);
}

.app-tabbar a {
  min-width: 0;
  min-height: 52px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  color: #526a64;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 900;
}

.app-tabbar a.active,
.app-tabbar a:hover {
  color: var(--green-deep);
  background: var(--mint);
}

.app-tabbar svg {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  min-height: clamp(610px, 84svh, 790px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 36%, rgba(255, 255, 255, 0.18) 72%),
    url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?auto=format&fit=crop&w=1900&q=88") center right / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(234, 247, 255, 0.9), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(255, 248, 232, 0.92) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) 320px;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  padding: 72px 0 58px;
}

.hero h1 {
  max-width: 780px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 8.4vw, 7.8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  color: #11372e;
}

.hero-tagline {
  margin-top: 26px;
  color: var(--green);
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  font-weight: 900;
}

.hero-text {
  max-width: 610px;
  margin-top: 16px;
  color: #526a64;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 14px 30px rgba(36, 138, 91, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(36, 138, 91, 0.32);
}

.btn-soft {
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(36, 138, 91, 0.22);
}

.btn-soft:hover {
  background: var(--white);
  border-color: rgba(36, 138, 91, 0.38);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #385b53;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(36, 138, 91, 0.16);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 800;
}

.hero-proof strong {
  color: var(--green-deep);
}

.hero-card {
  padding: 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--green);
  background: var(--blue-soft);
  border-radius: var(--radius);
}

.hero-card svg {
  width: 28px;
  height: 28px;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

.section {
  padding: 94px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2,
.section-heading h2 {
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0;
  color: #15372f;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p,
.section-copy p,
.delivery-copy p,
.contact-info p,
.footer p {
  color: var(--muted);
}

.section-heading p {
  max-width: 690px;
  margin: 16px auto 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 60px;
}

.about-section {
  background: linear-gradient(180deg, var(--cream), var(--white) 72%);
}

.about-media {
  position: relative;
}

.about-media img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 44px);
  padding: 13px 16px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(14, 63, 45, 0.14);
  font-weight: 900;
}

.media-note svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.section-copy h2 {
  max-width: 650px;
}

.section-copy p {
  margin-top: 18px;
  font-size: 1.02rem;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.value-row div {
  min-height: 104px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px 12px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.value-row svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.value-row span {
  font-size: 0.88rem;
  font-weight: 900;
}

.products-section {
  background:
    linear-gradient(180deg, var(--white), var(--blue-soft) 54%, var(--white));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover,
.product-card.expanded {
  transform: translateY(-7px);
  border-color: rgba(36, 138, 91, 0.28);
  box-shadow: 0 22px 52px rgba(24, 86, 69, 0.16);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img,
.product-card.expanded .product-media img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: #17463a;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  font-size: 0.73rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(23, 49, 42, 0.12);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-body h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.product-body p {
  min-height: 84px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.94rem;
}

.price {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 10px;
  color: #7a5200;
  background: #fff2c7;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

.details-toggle {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  border: 1px solid rgba(36, 138, 91, 0.2);
  border-radius: var(--radius);
  color: var(--green-deep);
  background: #f5fff9;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.details-toggle:hover,
.product-card.expanded .details-toggle {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.product-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.28s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.product-card.expanded .product-details {
  max-height: 260px;
  opacity: 1;
  margin-top: 14px;
}

.product-details p,
.product-details li {
  color: #46645d;
  font-size: 0.9rem;
}

.product-details ul {
  margin-top: 10px;
  padding-left: 18px;
}

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

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

.feature-card {
  padding: 30px;
  background: linear-gradient(145deg, var(--white), #f9fffb);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #ffffff, #effbf5);
  box-shadow: 0 20px 46px rgba(23, 84, 66, 0.13);
}

.feature-card svg {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--green);
}

.feature-card h3 {
  font-size: 1.15rem;
}

.feature-card p {
  margin-top: 8px;
  color: var(--muted);
}

.process-section {
  background: linear-gradient(180deg, #f8fffb, var(--white));
}

.process-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-steps div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-steps strong {
  display: block;
  font-size: 1.05rem;
}

.process-steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery-section {
  background: linear-gradient(180deg, var(--cream), var(--white));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eef6f2;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(12, 44, 35, 0.62));
  opacity: 0.88;
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.06);
}

.delivery-section {
  background:
    linear-gradient(120deg, rgba(18, 97, 63, 0.96), rgba(44, 141, 204, 0.9)),
    url("https://images.unsplash.com/photo-1550583724-b2692b85b150?auto=format&fit=crop&w=1600&q=85") center / cover no-repeat;
  color: var(--white);
}

.delivery-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 44px;
}

.delivery-section .section-label,
.delivery-section h2,
.delivery-section p {
  color: var(--white);
}

.delivery-copy p {
  margin-top: 18px;
  max-width: 700px;
  opacity: 0.88;
}

.delivery-list {
  display: grid;
  gap: 14px;
}

.delivery-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 2px 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.delivery-list svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
}

.delivery-list strong,
.delivery-list span {
  display: block;
}

.delivery-list span {
  opacity: 0.82;
}

.testimonials-section {
  background: var(--blue-soft);
}

.testimonial-shell {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: clamp(26px, 5vw, 46px);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(44, 141, 204, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(38, 101, 137, 0.1);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  color: var(--gold);
}

.stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card p {
  max-width: 660px;
  margin: 20px auto 0;
  color: #385b53;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-card h3 {
  margin-top: 24px;
  font-size: 1.02rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 97, 63, 0.24);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-dot.active {
  width: 32px;
  background: var(--green);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: start;
}

.contact-info p {
  margin-top: 18px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-cards > div,
.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  background: #f8fcfa;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-cards svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--green);
}

.contact-cards strong {
  display: block;
  line-height: 1.25;
}

.whatsapp-link {
  justify-content: center;
  color: var(--white);
  background: #25d366;
  border-color: #25d366;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-link svg {
  color: var(--white);
}

.whatsapp-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.25);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.78fr);
  gap: 18px;
}

.subscription-panel,
.map-placeholder {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(26, 77, 63, 0.09);
  background: var(--white);
}

.subscription-panel h3 {
  margin-top: 12px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.subscription-panel p {
  margin-top: 12px;
  color: var(--muted);
}

.subscription-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.subscription-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8fcfa;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #385b53;
  font-size: 0.92rem;
  font-weight: 800;
}

.subscription-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--green);
}

.map-placeholder {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(234, 247, 255, 0.88), rgba(255, 248, 232, 0.88)),
    repeating-linear-gradient(45deg, rgba(18, 97, 63, 0.07) 0 2px, transparent 2px 14px);
}

.map-placeholder svg {
  width: 44px;
  height: 44px;
  color: var(--green);
}

.map-placeholder span {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  color: rgba(255, 255, 255, 0.86);
  background: #102f27;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 56px 0 38px;
}

.footer .brand-mark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-brand {
  color: var(--white);
}

.footer-brand small {
  color: var(--cream-strong);
}

.footer p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer a:not(.brand) {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--cream-strong);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 900;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.policy-page {
  min-height: 100svh;
  background: linear-gradient(180deg, var(--cream), var(--white) 44%);
}

.policy-header {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.policy-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #24473e;
  font-size: 0.92rem;
  font-weight: 900;
}

.policy-nav a {
  padding: 8px 0;
}

.policy-hero {
  padding: 78px 0 28px;
}

.policy-hero h1 {
  margin-top: 12px;
  max-width: 780px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 0.98;
  color: #15372f;
}

.policy-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  min-width: 0;
  padding: 28px 0 92px;
}

.policy-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.policy-sidebar a {
  padding: 10px 12px;
  color: var(--green-deep);
  background: #f8fcfa;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
}

.policy-sidebar a:hover {
  border-color: rgba(36, 138, 91, 0.2);
  background: var(--mint);
}

.policy-card {
  min-width: 0;
  padding: clamp(24px, 5vw, 46px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow-wrap: anywhere;
}

.policy-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.policy-card h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.18;
  color: #15372f;
}

.policy-card h3 {
  margin-top: 20px;
  font-size: 1.04rem;
  color: #15372f;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card p {
  margin-top: 12px;
}

.policy-card ul {
  margin-top: 12px;
  padding-left: 21px;
}

.policy-card li + li {
  margin-top: 8px;
}

.policy-note {
  margin-top: 22px;
  padding: 16px;
  color: #385b53;
  background: #f8fcfa;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 30px, var(--max-width));
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    max-height: min(70svh, 520px);
    overflow-y: auto;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(18, 49, 40, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a,
  .install-btn {
    width: 100%;
    padding: 11px 10px;
    text-align: left;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.82) 55%, rgba(255, 248, 232, 0.76) 100%),
      url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?auto=format&fit=crop&w=1300&q=86") center / cover no-repeat;
  }

  .hero-content,
  .split-grid,
  .process-wrap,
  .delivery-wrap {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 26px;
    padding: 68px 0 46px;
  }

  .hero-card {
    max-width: 430px;
  }

  .split-grid {
    gap: 34px;
  }

  .value-row,
  .feature-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .navbar {
    min-height: 68px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-content {
    padding: 54px 0 42px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 14.8vw, 4.3rem);
  }

  .hero-tagline {
    margin-top: 18px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-card {
    max-width: none;
    padding: 20px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading p {
    margin-left: 0;
  }

  .value-row,
  .feature-grid,
  .process-steps,
  .product-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .product-body p {
    min-height: 0;
  }

  .feature-card,
  .process-steps div,
  .subscription-panel,
  .map-placeholder {
    padding: 22px;
  }

  .delivery-list div {
    grid-template-columns: 36px 1fr;
  }

  .footer-grid {
    gap: 28px;
  }

  .policy-hero {
    padding: 48px 0 18px;
  }

  .policy-layout {
    padding-bottom: 70px;
  }

  .policy-nav {
    display: none;
  }

  .policy-sidebar {
    grid-template-columns: 1fr;
  }

  .app-tabbar {
    display: grid;
  }

  .app-install-banner {
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .app-status {
    bottom: calc(92px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 20px, var(--max-width));
  }

  .brand {
    gap: 9px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 14vw, 3.5rem);
  }

  .section h2,
  .section-heading h2 {
    font-size: clamp(1.74rem, 10vw, 2.38rem);
  }

  .contact-cards > div,
  .whatsapp-link,
  .subscription-list div,
  .delivery-list div {
    padding: 14px;
  }

  .app-install-banner {
    grid-template-columns: 1fr auto 32px;
    gap: 8px;
    padding: 10px;
  }

  .app-install-banner .install-btn {
    padding-inline: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
