/* ============================================================
   Palm & Pear Creative
   Brand palette:
     Blue Zodiac  #0A2448   (navy — primary text)
     Pot Pourri   #F3EBDD   (cream — background)
     Limed Ash    #6E8367   (sage)
     Night Shadz  #A8385F   (magenta)
     Anzac        #DAA342   (gold)
   ============================================================ */

/* ---------- Ashbury (self-hosted) ----------
   Only the Light weight is currently in the repo (fonts/). If you add
   Bold or Italic later, drop the woff2/woff files in fonts/ and add a
   matching @font-face block with its font-weight / font-style, then the
   page will use them automatically.
--------------------------------------------------------------- */
@font-face {
  font-family: "Ashbury";
  src: url("fonts/ashbury-light-webfont.woff2") format("woff2"),
       url("fonts/ashbury-light-webfont.woff") format("woff");
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0a2448;
  --cream: #f3ebdd;
  --sage: #6e8367;
  --magenta: #a8385f;
  --gold: #daa342;

  --body: "Ashbury", Georgia, "Times New Roman", serif;
  --measure: 40rem;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.65;
}

.page {
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 6vw, 4rem);
}

/* ---------- Masthead ---------- */
.masthead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.logo {
  width: 100%;
  max-width: 26rem;
  height: auto;
}

/* ---------- Rules ---------- */
.rule {
  border: none;
  border-top: 2px solid var(--gold);
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}

/* ---------- Lede ---------- */
.dateline {
  margin: 0 0 1.25rem;
  color: var(--magenta);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0 0 1.5rem;
  font-weight: 400;
  font-size: clamp(3rem, 11vw, 6.5rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.intro {
  max-width: var(--measure);
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.5;
}

.intro em {
  color: var(--magenta);
  font-style: italic;
}

/* ---------- Body copy ---------- */
.body {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  max-width: var(--measure);
}

.body p {
  margin: 0 0 1.25rem;
}

.body p:last-child {
  margin-bottom: 0;
}

/* ---------- Signup ---------- */
.signup {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.signup-copy {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  color: var(--navy);
}

.button {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border: 2px solid var(--navy);
  border-radius: 0; /* squared corners */
  transition: background 0.15s ease, color 0.15s ease;
}

.button:hover,
.button:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ---------- Contact ---------- */
.contact {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  max-width: var(--measure);
}

.contact p {
  margin: 0;
}

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

a:hover {
  color: var(--navy);
}

/* ---------- Colophon ---------- */
.colophon {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  color: var(--sage);
  font-size: 0.95rem;
}

.colophon p {
  margin: 0;
}
