/* --------- Base (no dark mode) --------- */
:root{
  --pink: #fc8eac;   /* brand pink for elements/backgrounds (not text) */
  --bg: #ffffff;
  --text: #111111;
  --muted: #6b7280;
  --line: #e5e7eb;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* --------- Header / Nav --------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: transparent;        /* over pink hero on home */
  z-index: 10;
}
.site-header--light{
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 2px solid var(--pink);
}
.wrap{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-right{ justify-content: flex-end; } /* when there’s no brand */

.site-nav{
  display: inline-flex;
  gap: 18px;
}
.site-nav a{
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.95rem;
}
.site-header .site-nav a{ color: #ffffff; }            /* home (over pink) */
.site-header--light .site-nav a{ color: var(--text); }  /* content pages */

.site-nav a[aria-current="page"]{
  background: rgba(0,0,0,0.12);   /* subtle highlight; never pink text */
}
.site-header--light .site-nav a[aria-current="page"]{
  background: rgba(0,0,0,0.06);
}

/* --------- Home hero --------- */
body.home{ background: var(--pink); }
.home-hero{
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0 16px;
}
.home-title{
  margin: 0;
  font-size: clamp(56px, 14vw, 128px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;                 /* white text on pink */
  text-align: center;
}

/* --------- Content pages --------- */
.page{
  max-width: 860px;
  margin: 96px auto 48px;         /* room for sticky header */
  padding: 0 20px 32px;
}
.page-title{
  margin: 0 0 16px;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: -0.01em;
}
.muted{ color: var(--muted); }
.small{ font-size: 0.9rem; }

/* --------- Forms --------- */
.form{ display: grid; gap: 14px; margin-top: 10px; }
.field{ display: grid; gap: 6px; }
.field > span{ font-weight: 600; }
.input, .textarea{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.input:focus, .textarea:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(252,142,172,0.3); /* pink focus ring */
  border-color: var(--pink);
}
.btn{
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  background: var(--pink);  /* pink element */
  color: #fff;              /* not pink text */
  cursor: pointer;
}
.btn:active{ transform: translateY(1px); }

/* --------- Lists & headings --------- */
h1, h2{ line-height: 1.25; }
ul{ padding-left: 1.1rem; margin: .5rem 0 1rem; }

/* --------- Responsive tweaks --------- */
@media (max-width: 480px){
  .site-nav{ gap: 12px; }
  .site-nav a{ padding: 8px 8px; font-size: 0.92rem; }
  .page{ margin: 84px auto 32px; padding-bottom: 24px; }
}
