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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f5f7f6;
  color: #1c2522;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 0;
}

.header-inquire {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #b88347;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.header-logo-image {
  width: 10%;
  max-width: 260px;
  height: auto;
  display: block;
}

.header-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.2rem 0;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  cursor: pointer;
}

.header-menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.22rem;
}

.header-menu-icon span {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background-color: #1c2522;
}

.hero {
  padding: 3.2rem 0 2.8rem;
  background-color: #ffffff;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1 1 52%;
}

.hero-media {
  flex: 1 1 48%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b88347;
  margin-bottom: 0.8rem;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 3.3vw, 2.7rem);
  font-weight: 500;
}

.hero-text {
  margin: 0.4rem 0 1.2rem;
  color: #4b5a55;
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.wellness-section {
  padding-top: 0;
}

.wellness-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.wellness-orbit {
  position: relative;
  width: 220px;
  height: 220px;
}

.wellness-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1.5px solid rgba(46, 124, 103, 0.35);
  background: radial-gradient(circle at 30% 20%, #f7fbfa, #d8ebe5);
  box-shadow: 0 0 0 rgba(46, 124, 103, 0.0);
  animation: wellness-breathe 8s ease-in-out infinite;
}

.wellness-circle--two {
  transform: scale(1.1);
  opacity: 0.7;
  animation-delay: 1.2s;
}

.wellness-circle--three {
  transform: scale(1.2);
  opacity: 0.45;
  animation-delay: 2.4s;
}

.wellness-caption {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7874;
  text-align: center;
}

@keyframes wellness-breathe {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.7;
    box-shadow: 0 0 0 rgba(46, 124, 103, 0.0);
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
    box-shadow: 0 0 32px rgba(46, 124, 103, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wellness-circle {
    animation: none;
  }
}

.btn-primary,
.btn-secondary {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  border: none;
  background-color: #2e7c67;
  color: #ffffff;
}

.btn-secondary {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
  color: #1c2522;
}

.hero-note {
  margin: 0;
  font-size: 0.82rem;
  color: #6b7874;
}

.section {
  padding: 2.5rem 0;
}

.section-muted {
  background-color: #eef2f0;
}

.section h2 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
}

.section p {
  margin: 0;
  color: #4b5a55;
  max-width: 34rem;
}

.about-copy p + p {
  margin-top: 0.9rem;
}

.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.2rem;
}

.about-copy {
  flex: 1 1 52%;
}

.about-visual {
  flex: 1 1 48%;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.product-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  padding: 1.2rem 0;
  font-size: 0.8rem;
  color: #6b7874;
}

.footer-inner {
  text-align: center;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .header-logo-image {
    width: 30%;
    max-width: 180px;
  }

  .nav {
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .wellness-orbit {
    width: 180px;
    height: 180px;
  }

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

  .about-inner {
    flex-direction: column;
  }

  .about-visual {
    width: 100%;
  }
}

