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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2f271f;
  background: #ffffff;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 243, 236, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.lang-switch label {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
}

.lang-switch input[type='radio'] {
  cursor: pointer;
  accent-color: #be7b33;
}

.main-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a {
  position: relative;
  padding-block: 0.25rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #be7b33;
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

/* Hero */

.hero {
  padding: 0;
  background: #ffffff;
}

.hero-inner {
  /* no longer used with full-width slider but kept for safety */
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #b0722e;
  margin-bottom: 0.9rem;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 1.1rem;
  color: #3a2e22;
}

.hero-text .subtitle {
  max-width: 32rem;
  font-size: 1.02rem;
  color: #5a4a3c;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #be7b33, #dba85d);
  color: #fff;
  box-shadow: 0 12px 30px rgba(190, 123, 51, 0.38);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(190, 123, 51, 0.42);
}

.btn.ghost {
  background: transparent;
  color: #7a5a33;
  border-color: rgba(122, 90, 51, 0.35);
}

.btn.ghost:hover {
  background: rgba(250, 245, 238, 0.9);
}

.btn.full-width {
  width: 100%;
}

/* Hero slider-style panel */

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background: #000;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 34rem;
  color: #ffffff;
}

.hero-text h1 {
  color: #ffffff;
}

.hero-text .subtitle {
  color: #f3ede4;
}

.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.4rem;
  display: flex;
  gap: 0.45rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d6c4af;
}

.dot.active {
  width: 20px;
  background: #be7b33;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(112, 78, 45, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-nav span {
  font-size: 18px;
  color: #7a5a33;
}

.hero-nav.prev {
  left: 1.1rem;
}

.hero-nav.next {
  right: 1.1rem;
}

@media (max-width: 640px) {
  .hero-slider {
    min-height: 60vh;
  }

  .hero-text h1 {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(112, 78, 45, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-nav span {
  font-size: 18px;
  color: #7a5a33;
}

.hero-nav.prev {
  left: 0.6rem;
}

.hero-nav.next {
  right: 0.6rem;
}

/* Generic sections */

.section {
  padding-block: 4.25rem;
}

.section-header {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
  color: #3b2f23;
}

.section-header p {
  color: #6b5948;
  font-size: 1rem;
}

/* Diabetes & Ayurveda section */

.diabetes {
  background: #fbf7f1;
}

.diabetes .section-header {
  margin-bottom: 2.2rem;
}

.diabetes-body {
  max-width: 62rem;
  margin: 0 auto;
  color: #5a4a3c;
  font-size: 0.98rem;
  background: #fff;
  border-radius: 1.1rem;
  padding: 2.1rem 2rem 2.4rem;
  box-shadow: 0 16px 36px rgba(108, 76, 49, 0.15);
}

.diabetes-body p + p {
  margin-top: 0.6rem;
}

.diabetes-list {
  margin: 1.7rem 0 1.7rem 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}

.diabetes-list li {
  padding-left: 0.3rem;
}

.diabetes-list li p:first-of-type {
  font-weight: 600;
  color: #3b2f23;
}

.diabetes-list li p:last-of-type {
  margin-top: 0.25rem;
}

.diabetes-body h3 {
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  color: #3b2f23;
}

@media (min-width: 900px) {
  .diabetes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.8rem;
  }
}

/* About features */

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

.feature-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.6rem 1.5rem 1.8rem;
  box-shadow: 0 10px 28px rgba(108, 76, 49, 0.12);
}

/* (feature icons removed) */

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: #4b3727;
}

.feature-card p {
  font-size: 0.97rem;
  color: #6b5948;
}

/* Blog cards */

.blog .card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.55rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 12px 28px rgba(94, 67, 41, 0.14);
}

.card .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #b0722e;
}

.card h3 {
  font-size: 1.1rem;
  color: #3f3024;
}

.card p {
  font-size: 0.96rem;
  color: #6b5948;
}

.card-link {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #b0722e;
  font-weight: 600;
}

.card-link:hover {
  text-decoration: underline;
}

/* Contact */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #3b2f23;
}

.contact-text p {
  color: #6b5948;
  margin-bottom: 1.2rem;
}

.contact-highlights {
  list-style: disc;
  padding-left: 1.2rem;
  color: #5a4a3c;
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.45rem 1.7rem;
  box-shadow: 0 16px 34px rgba(94, 67, 41, 0.16);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.form-row input,
.form-row textarea {
  flex: 1;
  min-width: 0;
  border-radius: 0.75rem;
  border: 1px solid #dcc7af;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  background: #fbf7f1;
}

.form-row textarea {
  width: 100%;
}

.form-row input:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid #be7b33;
  border-color: transparent;
  background: #fff;
}

/* Footer */

.site-footer {
  padding-block: 1.7rem;
  background: #2c231c;
  color: #e7d8c6;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

.footer-links a {
  color: #f1e1c9;
  font-size: 0.88rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-slider {
    order: -1;
  }

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

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    gap: 0.6rem;
  }

  .main-nav ul {
    gap: 1.1rem;
    font-size: 0.8rem;
  }

  .lang-switch {
    margin-top: 0.25rem;
  }

  .section {
    padding-block: 3.25rem;
  }

  .feature-grid,
  .blog .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

