:root {
  --blue: #13294B;
  --yellow: #FFC72C;
  --yellow-soft: #FFF4C7;
  --yellow-pale: #FFF9E8;
  --ink: #172033;
  --muted: #5f6878;
  --soft: #f8fafc;
  --line: #e6eaf0;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(19, 41, 75, 0.12);
  --yellow-shadow: 0 22px 60px rgba(255, 199, 44, 0.26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Verdana, Geneva, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { width: min(780px, calc(100% - 40px)); }
.section { padding: 72px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px min(40px, 5vw);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand img { width: 190px; height: auto; border: 0; box-shadow: none; }
.top-nav { display: flex; gap: 18px; font-size: 0.92rem; color: var(--blue); }
.top-nav a { opacity: 0.82; font-weight: 700; }
.top-nav a:hover { opacity: 1; }

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.72), rgba(255,248,224,0.74) 34%, rgba(255,199,44,0.32) 72%, rgba(255,255,255,0.95) 100%),
    linear-gradient(135deg, rgba(255,199,44,0.72), rgba(255,255,255,0.74) 48%, rgba(255,199,44,0.32));
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(255,255,255,.55), transparent 36%),
    radial-gradient(ellipse at 78% 76%, rgba(255,199,44,.28), transparent 44%),
    linear-gradient(120deg, transparent 20%, rgba(255,255,255,.33) 21%, transparent 42%, rgba(255,255,255,.28) 62%, transparent 78%);
  transform: rotate(-4deg);
}

.hero-bg::after {
  content: "";
  position: absolute;
  left: 68%;
  top: 52%;
  width: min(1000px, 90vw);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%) rotate(-18deg) perspective(1000px) scale(0.85);
  background: url("assets/compass-wellness-yellow.png") center / contain no-repeat;
  opacity: .08;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }
.hero-logo { width: min(220px, 50vw); margin: 0 auto 24px; filter: drop-shadow(0 14px 28px rgba(19,41,75,.10)); }

h1 {
  max-width: 930px;
  margin: 0 auto;
  color: var(--blue);
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.subtitle {
  max-width: 850px;
  margin: 24px auto 34px;
  color: #31415e;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-button {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.secondary-button {
  background: var(--yellow);
  color: var(--blue);
  box-shadow: var(--yellow-shadow);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

h2 {
  margin: 0 0 26px;
  color: var(--blue);
  font-size: clamp(1.75rem, 3.8vw, 3.15rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

h3 {
  margin: 18px 0 12px;
  color: var(--blue);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.heart p, .contact-section p { font-size: 1.05rem; }

.compass-section {
  background: linear-gradient(180deg, #fff 0%, var(--yellow-pale) 48%, #fff 100%);
}

.section-intro {
  max-width: 800px;
  margin: -8px auto 34px;
  text-align: center;
  color: var(--muted);
}

.compass-section .eyebrow,
.compass-section h2,
.brands-section .eyebrow,
.brands-section h2,
.contact-section { text-align: center; }

.wellness-compass {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  grid-template-areas:
    ". north ."
    "west center east"
    ". south .";
  gap: 22px;
  align-items: center;
  justify-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.wellness-point {
  width: min(315px, 100%);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,199,44,.44);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.wellness-point strong {
  color: var(--blue);
  font-size: 1.05rem;
}

.wellness-point span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.point-north { grid-area: north; }
.point-west { grid-area: west; }
.point-east { grid-area: east; }
.point-south { grid-area: south; }

.wellness-center {
  grid-area: center;
  width: 300px;
  height: 300px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--blue);
  text-align: center;
}

.wellness-center img {
  position: absolute;
  width: 300px;
  height: 300px;
  object-fit: contain;
  opacity: .38;
}

.wellness-center span {
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 1rem;
  color: var(--blue);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,199,44,.42);
  border-radius: 999px;
  padding: 8px 16px;
}

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

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.brand-card {
  min-height: 280px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.featured-brand {
  grid-column: span 2;
  border-top: 6px solid var(--yellow);
}

.coming-soon {
  opacity: .82;
  background: linear-gradient(180deg, #fff, var(--soft));
}

.brand-mark {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow-pale);
  border: 1px solid rgba(255,199,44,.55);
  color: var(--blue);
  font-weight: 700;
  text-align: center;
}

.muted-mark {
  font-size: 2rem;
  color: rgba(19,41,75,.38);
}

.brand-card p { color: var(--muted); }

.button-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.motto-section {
  background: linear-gradient(135deg, rgba(255,199,44,.95), rgba(255,244,199,.95));
  text-align: center;
}

blockquote {
  margin: 0 auto;
  padding: 34px 28px;
  border-left: 0;
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  color: var(--blue);
  box-shadow: var(--yellow-shadow);
}

blockquote p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1.25;
  font-weight: 700;
}

.contact-section {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.contact-card {
  margin: 30px auto 0;
  padding: 28px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left;
}

.contact-card p { margin: 0 0 18px; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a { color: var(--blue); font-weight: 700; }
.contact-buttons { margin-top: 26px; }

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
}

.site-footer p { margin: 4px 0; }

@media (max-width: 920px) {
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-brand { grid-column: span 2; }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-direction: column;
    padding: 16px 20px;
  }

  .brand img { width: 175px; }

  .top-nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: .82rem;
  }

  .section { padding: 62px 0; }
  .hero { min-height: 78vh; }
  .hero-logo { margin-bottom: 24px; }

  .wellness-compass {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "north"
      "east"
      "south"
      "west";
  }

  .wellness-center {
    width: 220px;
    height: 220px;
    margin-bottom: 4px;
  }

  .wellness-center img {
    width: 220px;
    height: 220px;
  }

  .wellness-point {
    width: 100%;
    min-height: auto;
  }

  .brand-grid { grid-template-columns: 1fr; }
  .featured-brand { grid-column: span 1; }
  .secondary-button, .primary-button { width: 100%; }
}
