:root{
  /* Wellness / sage palette */
  --bg: #fbf8f4;
  --card: rgba(255,255,255,.78);
  --ink: #1a2a22;
  --muted: rgba(26,42,34,.68);
  --line: rgba(26,42,34,.10);

  --sage: #88A88F;
  --sage-2: #6f9278;

  --radius-xl: 26px;
  --radius-lg: 18px;

  --shadow: 0 18px 60px rgba(26,42,34,.10);
  --shadow-soft: 0 10px 28px rgba(26,42,34,.10);

  /* iOS safe-area */
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1000px 520px at 18% -10%, rgba(136,168,143,.16), rgba(251,248,244,0)),
    radial-gradient(980px 520px at 92% 12%, rgba(136,168,143,.12), rgba(251,248,244,0)),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

.container{
  width: min(980px, 100%);
  margin: 0 auto;
  padding-left: calc(18px + var(--safe-l));
  padding-right: calc(18px + var(--safe-r));
}

/* Header (pattern aligned with your provided site: container + absolute mobile menu) */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,248,244,.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  text-decoration:none;
  color: inherit;
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.brand-logo{ height: 38px; width:auto; object-fit:contain; }
.brand-word{
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 13px;
  white-space: nowrap;
}

.nav-desktop{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-link{
  text-decoration:none;
  color: var(--ink);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav-link:hover{
  background: rgba(136,168,143,.12);
  border-color: rgba(136,168,143,.18);
}

/* Mobile toggle button: fixed size so bars don't squash */
.nav-toggle{
  width: 44px;
  height: 44px;
  display:inline-flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 5px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 14px;
  padding: 0;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-bar{
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  opacity: .9;
}

/* Desktop vs mobile nav */
@media (min-width: 680px){
  .nav-toggle{ display:none; }
}
@media (max-width: 679px){
  .nav-desktop{ display:none; }
}

/* Mobile menu */
.nav-mobile{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display:none;
  background: rgba(251,248,244,.98);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.nav-mobile.open{ display:block; }

.nav-mobile-link{
  display:block;
  padding: 16px 18px;
  padding-left: calc(18px + var(--safe-l));
  padding-right: calc(18px + var(--safe-r));
  text-decoration:none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .02em;
}
.nav-mobile-link:hover{
  background: rgba(136,168,143,.12);
}

/* Page / hero */
.page{ min-height: 100svh; display:flex; flex-direction: column; }
.hero{ flex: 1; padding: 56px 0 46px; display:flex; align-items:center; }

.hero-card{
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 5vw, 44px);
}

.brand-lockup{
  display:flex;
  align-items:center;
  gap: 14px;
}

.logo-mark{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(136,168,143,.28), rgba(136,168,143,.10));
  border: 1px solid rgba(136,168,143,.30);
  position: relative;
  box-shadow: 0 12px 22px rgba(26,42,34,.08);
  flex: 0 0 auto;
}
.mark-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sage-2);
  position: absolute;
  top: 14px;
  right: 14px;
}
.mark-leaf{
  width: 22px;
  height: 14px;
  border-radius: 22px 22px 22px 0;
  transform: rotate(-18deg);
  background: var(--sage);
  position: absolute;
  left: 14px;
  bottom: 14px;
}

.brand-lines{ display:flex; flex-direction:column; gap: 2px; min-width:0; }
.brand-name{
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.coming{
  margin: 18px 0 6px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.one-liner{
  margin: 0;
  font-size: 15.5px;
  color: var(--muted);
}

.footer{
  padding: 20px 0 30px;
  color: rgba(26,42,34,.58);
}
.footer-inner{
  display:flex;
  justify-content:center;
  font-size: 13px;
}
