/* ===== Hikari Wellness — calm, minimal Reiki landing ===== */

:root {
  --gold:        #9e937a;   /* from the logo */
  --gold-deep:   #7d735c;
  --ink:         #3a362e;
  --ink-soft:    #6b6557;
  --cream:       #faf7f1;
  --cream-deep:  #f1ece1;
  --line:        #e6ddcd;
  --white:       #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem clamp(1.25rem, 5vw, 3rem);
  background: rgba(250, 247, 241, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__logo { height: 46px; width: auto; }

.nav__links {
  display: flex;
  gap: clamp(1rem, 4vw, 2.5rem);
}

.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.nav__links a:hover { color: var(--gold-deep); }

/* ===== Buttons ===== */
.btn {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 24px -12px rgba(125, 115, 92, 0.7);
}

.btn--primary:not(:disabled):hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  background: var(--cream-deep);
  color: var(--ink-soft);
  border-color: var(--line);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.85;
}

/* ===== Hero ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 88vh;
  padding: 5rem clamp(1.25rem, 5vw, 3rem);
  background:
    radial-gradient(120% 90% at 50% -10%, #fffdf9 0%, var(--cream) 45%, var(--cream-deep) 100%);
}

.hero__inner {
  max-width: 720px;
  animation: rise 1s var(--ease) both;
}

.hero__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.4rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

.hero__lede {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 2.6rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.hero__soon {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ===== Sections ===== */
.section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 3rem);
}

.section__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}

.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  margin: 0 0 1.6rem;
  color: var(--ink);
}

.section__text {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

.about { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ===== Offering cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
  text-align: left;
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.2rem 1.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -28px rgba(125, 115, 92, 0.55);
}

.card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.7rem;
  color: var(--gold-deep);
}

.card__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ===== Contact ===== */
.contact { background: var(--cream-deep); }

.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2.6rem;
}

.social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.social__link:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 3rem 1.5rem 3.5rem;
  background: var(--ink);
  color: var(--cream);
}

.footer__logo {
  height: 54px;
  width: auto;
  margin: 0 auto 1rem;
  opacity: 0.9;
  filter: brightness(1.4);
}

.footer__text {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
}

.footer__note {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.55);
  margin: 0;
}

/* ===== Motion ===== */
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition: none !important; }
}
