:root {
  --cream: #F5EFE1;
  --cream-2: #EFE7D4;
  --teal-deep: #0C5E65;
  --teal-mid: #108181;
  --sage: #83ACAD;
  --gold: #C79A48;
  --ink: #1B2420;
  --ink-soft: rgba(20, 36, 34, 0.62);
  --line: rgba(12, 94, 101, 0.18);
  --white: #FFFDF8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 56px 20px 40px;
}

.page {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Brand header ---- */
.brand {
  text-align: center;
  margin-bottom: 34px;
}

.mark {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.mark img {
  width: 64px;
  height: auto;
  display: block;
}

.brand h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--teal-deep);
}

.tagline {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ---- Links ---- */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--teal-deep);
  font-weight: 500;
  font-size: 0.98rem;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.link:hover {
  transform: translateY(-1px);
  border-color: var(--teal-mid);
}

.link:active {
  transform: translateY(0);
}

.link__label { position: relative; z-index: 1; }

/* Featured CTA */
.link--cta {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--cream);
  padding: 22px 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 500;
  gap: 4px;
}

.link--cta:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
}

.link__sub {
  position: relative;
  z-index: 1;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: 2px;
}

/* Breathing ring — the one deliberate motion moment, echoes the brand's breathwork focus */
.link__ring {
  position: absolute;
  inset: -1.5px;
  border-radius: 14px;
  border: 1.5px solid var(--gold);
  opacity: 0;
  animation: breathe 4.2s ease-in-out infinite;
}

@keyframes breathe {
  0%   { transform: scale(1);     opacity: 0.55; }
  50%  { transform: scale(1.035); opacity: 0; }
  100% { transform: scale(1);     opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .link__ring { animation: none; opacity: 0; }
  .link { transition: none; }
}

/* ---- WhatsApp — intentionally small, not a big button ---- */
.whatsapp {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  transition: color 0.15s ease;
}

.whatsapp:hover {
  color: var(--teal-deep);
}

/* ---- Footer ---- */
.foot {
  margin-top: 30px;
}

.foot p {
  margin: 0;
  font-size: 0.74rem;
  color: rgba(27, 36, 32, 0.4);
}

@media (max-width: 380px) {
  .brand h1 { font-size: 1.5rem; }
  .link--cta { font-size: 1.02rem; }
}
