/* Anamara — the site.
   The palette and the five faces are the APP's, token for token (mockup `:root`). The typography
   is the brand: a site in different type reads as a different product. */

@font-face { font-family: 'PlayBlack'; src: url('fonts/PlayBlack.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'PlayBold';  src: url('fonts/PlayBold.ttf')  format('truetype'); font-display: swap; }
@font-face { font-family: 'Gara';      src: url('fonts/Gara.ttf')      format('truetype'); font-display: swap; }
@font-face { font-family: 'GaraSemi';  src: url('fonts/GaraSemi.ttf')  format('truetype'); font-display: swap; }
@font-face { font-family: 'GaraItal';  src: url('fonts/GaraItal.ttf')  format('truetype'); font-display: swap; }

:root {
  --paper: #F4EEE3;
  --paper-raised: #FCF9F2;
  --ink: #1B2430;
  --ink-soft: #5C5C52;
  --ink-faint: #948D7D;
  --accent: #7A2331;
  --accent-soft: #A6535E;
  --accent-wash: #F1E4E2;
  --gold: #96793B;
  --line: #E4DCCC;
  --line-strong: #D0C7B2;

  --display: 'PlayBlack', Georgia, serif;
  --serif:   'PlayBold', Georgia, serif;
  --sans:    'Gara', Georgia, serif;
  --mono:    'GaraSemi', Georgia, serif;
  --ital:    'GaraItal', Georgia, serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.62;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---------------------------------------------------------------- the holding page
   The founder's own lockup: the brand mark in place of the word, his tagline beneath it, and the
   three movements ranged right against the tagline's own edge — as he set them. */

body.holding {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
body.holding main { max-width: 100%; }

.lockup { display: flex; align-items: center; justify-content: center; gap: 20px; }
.lockup .mark {
  width: 96px; height: 96px; border-radius: 20px; display: block;
}
.lockup .name {
  font-family: var(--display);
  font-size: 84px; line-height: 1; letter-spacing: -0.005em;
  /* Black, as the app's own masthead sets it: the oxblood is carried by the mark beside it. */
  color: var(--ink);
}

/* The tagline sets the measure; the trio ranges right against it. */
.say { display: inline-block; margin-top: 26px; }
.tagline {
  font-family: var(--ital);
  font-size: 27px; line-height: 1.35; color: var(--ink);
  margin: 0;
}
/* Each sentence is ONE unit: a line may break BETWEEN them, never inside one. Without this the
   break falls wherever the width happens to allow, and "Understanding isn’t." splits — which is
   what the founder saw on his phone, 2026-08-10. It needs no unusual width to happen: enlarged
   text does it too, so the guarantee has to be structural, not a breakpoint. */
.tagline span { display: inline-block; }
.trio {
  font-family: var(--mono);
  font-size: 19px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
  margin: 10px 0 0;
  text-align: right;
}

.soon {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-faint);
  margin: 54px 0 0;
}

body.holding footer {
  border: none; padding: 0; margin-top: 44px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  /* Stacked, Privacy then Contact beneath it — founder, 2026-08-10. */
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
body.holding footer a { color: var(--ink-faint); text-decoration: none; }
body.holding footer a:hover { color: var(--accent); }

@media (max-width: 620px) {
  .lockup { gap: 12px; }
  .lockup .mark { width: 58px; height: 58px; border-radius: 12px; }
  .lockup .name { font-size: 50px; }
  .tagline { font-size: 20px; }
  /* On a phone the tagline reads as two lines, always — not "whenever the width happens to force
     it". The trio still ranges right against the longer sentence, so the measure is unchanged. */
  .tagline span:first-child { display: block; }
  .trio { font-size: 14px; }
  .soon { margin-top: 40px; }
}

/* ---------------------------------------------------------------- masthead */

.masthead {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.masthead .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.wordmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.wordmark .tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--accent); color: var(--paper-raised);
  font-family: var(--display); font-size: 21px; line-height: 1;
  /* The brand A sits 5% low against a cap-height box; nudged the same way here. */
  padding-bottom: 2px;
}
.wordmark .name { font-family: var(--display); font-size: 27px; letter-spacing: -0.01em; }
.masthead nav { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.masthead nav a { color: var(--ink-soft); text-decoration: none; }
.masthead nav a:hover { color: var(--accent); }

/* ---------------------------------------------------------------- hero */

.hero { padding: 82px 0 64px; }
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
h1 {
  font-family: var(--display);
  font-size: 58px; line-height: 1.06; letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.lede { font-size: 21px; line-height: 1.58; color: var(--ink-soft); margin: 0 0 18px; max-width: 34em; }

/* ---------------------------------------------------------------- the contact form
   Tokens only, and the app's own faces — a form in system type would read as a different
   product bolted on. The controls borrow the same paper/line pair the app gives a raised row. */

.contact { margin: 26px 0 0; max-width: 34em; }
.contact label {
  display: block;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin: 22px 0 8px;
}
.contact input[type="email"],
.contact textarea {
  width: 100%;
  font-family: var(--sans); font-size: 18px; line-height: 1.5; color: var(--ink);
  background: var(--paper-raised);
  border: 1px solid var(--line-strong); border-radius: 8px;
  padding: 12px 14px;
}
.contact textarea { resize: vertical; min-height: 160px; }
.contact input[type="email"]:focus,
.contact textarea:focus { outline: 2px solid var(--accent-soft); outline-offset: 1px; }
.contact input::placeholder { color: var(--ink-faint); }
.contact button {
  margin-top: 22px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper-raised); background: var(--accent);
  border: none; border-radius: 8px; padding: 14px 30px;
  cursor: pointer;
}
.contact button:hover { background: var(--ink); }

/* The honeypot must be reachable by a bot parsing the HTML and invisible to a person — so it is
   moved off-screen, NOT `display:none`, which the cruder bots check for. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lede strong { color: var(--ink); font-weight: normal; font-family: var(--mono); }
.origin { font-family: var(--ital); font-size: 18px; color: var(--ink-faint); margin: 0; }

/* ---------------------------------------------------------------- sections */

section { padding: 54px 0; border-top: 1px solid var(--line); }

h2 {
  font-family: var(--serif);
  font-size: 31px; line-height: 1.2; margin: 0 0 14px;
}
h3 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 10px;
}
p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }
.soft { color: var(--ink-soft); }

/* Screenshots — real captures from the app, never mock-ups of it. */
.shots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  margin: 36px 0 0;
}
.shot img {
  display: block; width: 100%; height: auto;
  border-radius: 14px; border: 1px solid var(--line-strong);
  background: var(--paper-raised);
}
.shot figcaption {
  font-family: var(--ital); font-size: 15px; line-height: 1.45;
  color: var(--ink-soft); margin-top: 12px;
}

/* The promises — the five principles, said plainly. */
.promises { list-style: none; margin: 0; padding: 0; }
.promises li { border-top: 1px solid var(--line); padding: 18px 0; }
.promises li:first-child { border-top: none; padding-top: 0; }
.promises .what { font-family: var(--serif); font-size: 20px; display: block; margin-bottom: 4px; }
.promises .why { color: var(--ink-soft); font-size: 17px; }

/* Price — annual first, deliberately. */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0 20px; }
.tier {
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--paper-raised); padding: 20px 18px;
}
.tier.lead { border-color: var(--accent); }
.tier .kind {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px;
}
.tier.lead .kind { color: var(--accent); }
.tier .amount { font-family: var(--serif); font-size: 27px; }
.tier .per { font-family: var(--ital); font-size: 15px; color: var(--ink-faint); }

.note {
  border-left: 3px solid var(--gold);
  background: var(--paper-raised);
  padding: 16px 18px; border-radius: 0 8px 8px 0;
  font-family: var(--ital); font-size: 17px; color: var(--ink-soft);
}

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---------------------------------------------------------------- prose pages */

.prose h2 { font-size: 25px; margin-top: 40px; }
.prose h2:first-of-type { margin-top: 0; }
.prose ul { padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.updated {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* ---------------------------------------------------------------- footer */

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 60px;
  font-size: 15px; color: var(--ink-faint);
}
footer p { margin-bottom: 10px; }
footer a { color: var(--ink-soft); }

@media (max-width: 620px) {
  body { font-size: 18px; }
  h1 { font-size: 40px; }
  h2 { font-size: 26px; }
  .hero { padding: 54px 0 44px; }
  .shots { grid-template-columns: 1fr; max-width: 300px; }
  .tiers { grid-template-columns: 1fr; }
  .masthead .wrap { padding-top: 16px; padding-bottom: 16px; }
  .wordmark .name { font-size: 23px; }
}
