:root {
  --ink: #20261f;
  --muted: #647066;
  --leaf: #214d36;
  --leaf-2: #2f6b4a;
  --leaf-soft: #e9f4ec;
  --gold: #c37a2d;
  --clay: #a45f4c;
  --paper: #fffdf8;
  --cream: #f5efe4;
  --sky: #edf6f5;
  --white: #ffffff;
  --line: rgba(32, 38, 31, 0.14);
  --shadow: 0 16px 38px rgba(32, 38, 31, 0.1);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--leaf);
  color: var(--white);
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: grid;
  gap: 2px;
  line-height: 1.08;
}

.brand strong {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #36443a;
  font-size: 15px;
  font-weight: 650;
}

.menu a {
  padding: 8px 0;
}

.menu a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.hero {
  min-height: 66svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 45, 31, 0.92), rgba(20, 45, 31, 0.7), rgba(20, 45, 31, 0.22)),
    url("homepage-assets/hero-ayurvedic-stilllife.webp") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 82px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), var(--paper));
  z-index: -1;
}

.hero-inner {
  padding: 58px 0 92px;
}

.hero-copy {
  max-width: 680px;
}

.kicker,
.section-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  color: var(--white);
  font-size: 58px;
  max-width: 720px;
}

h2 {
  color: var(--leaf);
  font-size: 40px;
}

h3 {
  color: var(--leaf);
  font-size: 22px;
}

.hero-copy p:not(.kicker) {
  max-width: 590px;
  margin-top: 18px;
  color: #fff4e4;
  font-size: 19px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  padding: 12px 18px;
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 850;
  box-shadow: 0 12px 26px rgba(16, 34, 23, 0.18);
}

.button.dark {
  color: var(--white);
  background: var(--leaf);
}

.quick-strip {
  position: relative;
  z-index: 2;
  transform: translateY(-34px);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.strip-item {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item strong {
  display: block;
  color: var(--leaf);
  font-size: 18px;
}

.strip-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

section {
  padding: 64px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head p:not(.section-label) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.intro-grid,
.lifestyle {
  display: grid;
  gap: 34px;
  align-items: center;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.lifestyle {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--leaf-soft);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lifestyle img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lead {
  color: #414d43;
  font-size: 19px;
}

.tips-grid,
.article-grid,
.routine-grid,
.faq-grid,
.policy-grid {
  display: grid;
  gap: 16px;
}

.tips-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}

.article-grid,
.routine-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid,
.policy-grid {
  grid-template-columns: repeat(2, 1fr);
}

.tip-card,
.article-card,
.routine-card,
.faq-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(32, 38, 31, 0.06);
}

.tip-card {
  min-height: 120px;
  padding: 18px;
}

.tip-card strong,
.routine-card strong,
.info-card strong {
  display: block;
  color: var(--leaf);
  font-size: 18px;
}

.tip-card p,
.article-card p,
.routine-card p,
.faq-card p,
.info-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.soft-band {
  background: linear-gradient(180deg, var(--leaf-soft), var(--sky));
  border-top: 1px solid rgba(33, 77, 54, 0.12);
  border-bottom: 1px solid rgba(33, 77, 54, 0.12);
}

.article-card {
  overflow: hidden;
  min-height: 330px;
}

.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-body {
  padding: 18px;
}

.article-body small {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-weight: 850;
}

.routine-card,
.faq-card,
.info-card {
  padding: 22px;
}

.routine-card {
  min-height: 190px;
}

.number {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--leaf);
  font-weight: 850;
}

.check-list,
.policy-content ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.policy-content li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: #414d43;
}

.check-list li::before,
.policy-content li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.note {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.note p {
  max-width: 850px;
  color: var(--muted);
  font-size: 15px;
}

.page-hero {
  padding: 78px 0 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 45, 31, 0.94), rgba(20, 45, 31, 0.72)),
    url("homepage-assets/herb-flatlay.webp") center / cover no-repeat;
}

.page-hero h1 {
  font-size: 48px;
}

.page-hero p {
  max-width: 730px;
  margin-top: 16px;
  color: #fff4e4;
  font-size: 18px;
}

.policy-content {
  max-width: 880px;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 28px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-top: 12px;
  color: #414d43;
}

.policy-content a {
  color: var(--leaf-2);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.contact-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(32, 38, 31, 0.06);
}

.contact-box label {
  display: block;
  margin-top: 14px;
  color: var(--leaf);
  font-weight: 750;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

.contact-box textarea {
  min-height: 130px;
  resize: vertical;
}

footer {
  padding: 30px 0;
  color: #d9e5dd;
  background: #142d20;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.footer-grid p {
  max-width: 620px;
  margin-top: 8px;
  color: #c7d8cd;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  max-width: 520px;
  color: #e8f0ea;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .menu {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .strip-grid,
  .intro-grid,
  .lifestyle,
  .faq-grid,
  .policy-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .article-grid,
  .routine-grid,
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar {
    font-size: 13px;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand span {
    font-size: 12px;
  }

  .nav-inner {
    min-height: 62px;
  }

  .hero {
    min-height: 64svh;
    background:
      linear-gradient(90deg, rgba(20, 45, 31, 0.93), rgba(20, 45, 31, 0.64)),
      url("homepage-assets/hero-ayurvedic-stilllife.webp") center right / cover no-repeat;
  }

  .hero-inner {
    padding: 44px 0 72px;
  }

  h1 {
    max-width: 340px;
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .hero-copy p:not(.kicker),
  .section-head p:not(.section-label),
  .lead,
  .page-hero p {
    max-width: 330px;
    font-size: 16px;
  }

  .button {
    width: min(280px, 100%);
  }

  section {
    padding: 48px 0;
  }

  .quick-strip {
    transform: translateY(-24px);
  }

  .article-grid,
  .routine-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
}
