:root {
  --cream: #3a5144;
  --brown: #f7efe0;
  --green: #362813;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
}

.header-title span {
  font-family: "Georgia", "Times New Roman", serif;
}

.header-title span:nth-child(2) {
  color: inherit;
}

.top-header {
  background: linear-gradient(90deg, #334c3f 0%, #3a5144 100%);
  border-bottom: 2px solid rgba(247, 239, 224, 0.25);
  height: 300px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  position: relative;
}

.header-logo {
  position: relative;
  flex-shrink: 0;
  margin-right: -8px;
}

.header-logo img {
  height: 300px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.18));
}

.header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 2.7vw, 2.3rem);
  font-weight: 700;
  color: #fff9ea;
  line-height: 1.05;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-left: -10px;
}

.hero {
  background: #362813;
  color: var(--white);
  padding: 70px 24px;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1.50rem;
  margin-bottom: 12px;
  color: #e8d9bb;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin-bottom: 14px;
  color: #f7efe0;
  line-height: 1.2;
  font-weight: 700;
}

.hero-text {
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 720px;
  text-align: justify;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cream);
  color: var(--brown);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}

.hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(6px);
}

.hero-card h2,
.hero-card h3 {
  margin-bottom: 10px;
  color: #f7efe0;
  text-align: center;
}

.hero-card ul {
  padding-left: 18px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px 48px;
}

.section-heading {
  text-align: center;
  margin-bottom: 18px;
}

.section-heading h2 {
  color: #f7efe0;
  font-size: 1.9rem;
}

.wellness-section {
  padding-top: 4px;
}

.wellness-intro {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
  color: #f7efe0;
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #fdf8ef;
  color: #2f2a20;
  padding: 24px;
  border: 1px solid rgba(54, 40, 19, 0.12);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(54, 40, 19, 0.06);
}

.card h3 {
  color: #2f4a3a;
  margin-bottom: 8px;
}

.card p {
  color: #4a4238;
}

.wellness-card {
  background: #fdf8ef;
}

.wellness-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.wellness-list li {
  color: #4a4238;
  line-height: 1.6;
}

.consultation-section {
  padding-top: 0;
}

.consultation-box {
  background: #fdf8ef;
  color: #2f2a20;
  border: 1px solid rgba(54, 40, 19, 0.12);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(54, 40, 19, 0.06);
}

.wellness-cta {
  width: 100%;
  max-width: 1200px;
  padding: 36px 40px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wellness-cta-line {
  margin-top: 10px;
  color: #4a4238;
  line-height: 1.7;
  font-weight: 500;
  max-width: 1000px;
}

.consultation-box h2 {
  color: #2f4a3a;
  margin-bottom: 10px;
}

.consultation-box p {
  color: #4a4238;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.footer-contact-strip {
  background: #362813;
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-title {
  margin-bottom: 14px;
  color: #e8d9bb;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.footer-contact-strip .contact-links {
  margin-top: 0;
  justify-content: center;
  width: 100%;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #f7efe0;
  color: #362813;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: #efe4cf;
}

.contact-link img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.whatsapp-link {
  max-width: 100%;
}

.contact-caption {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.floating-contact-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1100;
}

.floating-contact-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f7efe0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-contact-link:hover {
  transform: translateY(-2px);
  background: #efe4cf;
}

.floating-contact-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  body {
    padding-right: 0;
  }

  .top-header {
    height: auto;
    padding: 24px 16px;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .header-logo img {
    height: 180px;
  }

  .header-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .hero {
    padding: 48px 16px;
  }

  .hero-content,
  .card-grid,
  .wellness-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-text {
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  .section {
    padding: 48px 16px;
  }

  .contact-links {
    flex-direction: column;
    width: 100%;
  }

  .contact-link {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }

  .contact-caption {
    white-space: normal;
    text-align: center;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header-title {
    font-size: 1.2rem;
  }

  .hero {
    padding: 40px 12px;
  }

  .eyebrow {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }

  .hero-text,
  .card p,
  .consultation-box p {
    font-size: 0.95rem;
  }

  .footer-contact-strip {
    padding: 20px 12px;
  }

  .footer-title {
    font-size: 1.2rem;
  }
}
