/* ============================================
   REGULUS RISING — Style
   Gold / Black / White · Celestial · Sovereign
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=IM+Fell+Double+Pica:ital@0;1&display=swap');

@font-face {
  font-family: 'Knights Quest';
  src: url('../assets/KnightsQuest.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Smorgasbord';
  src: url('../assets/Smorgasbord.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Celtic Hand';
  src: url('../assets/CelticHand.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- VARIABLES --- */
:root {
  --black: #0a0a0a;
  --deep: #111111;
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --gold-dim: #8a6f2f;
  --white: #f0ece4;
  --grey: #6b6b6b;
  --grey-light: #999;

  --font-serif: 'Knights Quest', 'Georgia', serif;
  --font-body: 'Smorgasbord', 'Georgia', serif;

  --max-width: 780px;
  --max-width-wide: 1100px;
}

/* --- RESET --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* --- STARFIELD BACKGROUND --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(201, 168, 76, 0.4), transparent),
    radial-gradient(1px 1px at 25% 45%, rgba(201, 168, 76, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 40% 15%, rgba(240, 236, 228, 0.35), transparent),
    radial-gradient(1px 1px at 55% 70%, rgba(201, 168, 76, 0.3), transparent),
    radial-gradient(1px 1px at 70% 35%, rgba(240, 236, 228, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 85% 55%, rgba(201, 168, 76, 0.35), transparent),
    radial-gradient(1px 1px at 15% 75%, rgba(240, 236, 228, 0.25), transparent),
    radial-gradient(1px 1px at 50% 90%, rgba(201, 168, 76, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 90% 80%, rgba(240, 236, 228, 0.3), transparent),
    radial-gradient(1px 1px at 35% 55%, rgba(201, 168, 76, 0.15), transparent),
    radial-gradient(1px 1px at 65% 10%, rgba(240, 236, 228, 0.2), transparent),
    radial-gradient(1px 1px at 80% 25%, rgba(201, 168, 76, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 5% 50%, rgba(240, 236, 228, 0.2), transparent),
    radial-gradient(1px 1px at 45% 40%, rgba(201, 168, 76, 0.2), transparent),
    radial-gradient(1px 1px at 95% 65%, rgba(240, 236, 228, 0.15), transparent),
    radial-gradient(1px 1px at 20% 85%, rgba(201, 168, 76, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 60% 50%, rgba(240, 236, 228, 0.15), transparent),
    radial-gradient(1px 1px at 75% 90%, rgba(201, 168, 76, 0.2), transparent);
}

/* --- PAGE HERO IMAGE --- */
.page-hero {
  position: relative;
  width: 100%;
  margin-top: 60px;
  overflow: hidden;
}

.page-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--black));
}

/* --- LAYOUT --- */
.page {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: var(--max-width-wide);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.nav__logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  filter: sepia(1) saturate(4) brightness(0.65) hue-rotate(0deg);
}

.nav__logo span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--grey-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  text-decoration: none;
}

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

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  margin: 5px 0;
  transition: all 0.3s;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero__emblem {
  width: 340px;
  height: 340px;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.3s forwards;
  filter: sepia(1) saturate(8) brightness(0.6) hue-rotate(-5deg) contrast(1.1);
}

.hero--title {
  min-height: 100vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 6.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--white);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.6s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.9s forwards;
}

.hero__epigraph {
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 1.5s ease 1.2s forwards;
}

.hero__epigraph-attr {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 1.5s ease 1.4s forwards;
}

.hero__scroll {
  margin-top: 4rem;
  opacity: 0;
  animation: fadeIn 1.5s ease 1.8s forwards, float 3s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-dim);
}

/* --- SECTIONS --- */
.section {
  padding: 6rem 0;
}

.section--first {
  padding-top: 8rem;
}

/* Sections that contain just a single card (e.g. Soil wisdom domains) sit closer together */
.section:has(> .container > .fade-in > .card) {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.section__label {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.section__text {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 600px;
}

.section__text + .section__text {
  margin-top: 1.2rem;
}

/* --- DIVIDER --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin: 4rem auto;
  opacity: 0.5;
}

.divider--left {
  margin-left: 0;
}

/* --- CARDS (Forge offerings) --- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  background: rgba(17, 17, 17, 0.6);
  transition: border-color 0.4s, background 0.4s;
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(17, 17, 17, 0.85);
}

.card__icon {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.card__text {
  color: var(--grey-light);
  font-size: 0.88rem;
  line-height: 1.75;
}

.card__price {
  margin-top: 1.2rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold-dim);
  font-style: italic;
}

.card__reading {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.7;
}

.card__reading-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.card__reading a {
  color: var(--grey-light);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 0.05rem;
  transition: color 0.2s, border-color 0.2s;
}

.card__reading a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* --- POEM PAGE --- */
.poem-header {
  padding: 10rem 0 3rem;
  text-align: center;
}

.poem-header__title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.poem-header__date {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
}

.poem-body {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.poem-body p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white);
  margin-bottom: 1.8rem;
}

.poem-body p em {
  font-style: italic;
}

.poem-body .stanza-break {
  height: 2rem;
}

.poem-signature {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-top: 3rem;
  padding-right: 1rem;
}

/* --- LOGOS COLUMNS (Poetry + Prose side-by-side) --- */
.logos-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.logos-column {
  min-width: 0;
}

/* POETRY / PROSE column headers — significantly bigger than the generic section label */
.logos-column .section__label {
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .logos-columns {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .logos-column .section__label {
    font-size: 1.6rem;
  }
}

/* --- LOGOS INDEX (writing list) --- */
.writing-list {
  list-style: none;
  margin-top: 2rem;
}

.writing-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

/* Column-variant: items stack vertically inside each column */
.writing-list--column .writing-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.writing-item__meta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Read-tick: empty until JS sees the entry is read, then shows a gold ✓ */
.writing-item__tick {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  min-width: 1rem;
  display: inline-block;
  font-style: normal;
}

/* Coming-soon entries: muted, not clickable. Font matches nav links. */
.writing-item--coming > span:first-child {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

.writing-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

/* Live entry titles: matches the nav link treatment — same font, uppercase, letter-spaced */
.writing-item a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

.writing-item a:hover {
  color: var(--gold);
}

.writing-item__date {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.writing-item__tag {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: rgba(201, 168, 76, 0.08);
  padding: 0.15rem 0.6rem;
  border-radius: 2px;
}

.writing-item__pdf {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  transition: all 0.3s;
  white-space: nowrap;
}

.writing-item__pdf:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

/* --- ENQUIRY FORM (Forge) --- */
.enquiry-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.enquiry-form__honeypot {
  display: none;
}

.enquiry-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.enquiry-form__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="date"],
.enquiry-form input[type="time"],
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--deep);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 2px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

.enquiry-form__field--inline {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  color: var(--grey-light);
  font-size: 0.85rem;
}

.enquiry-form__field--inline input[type="checkbox"] {
  width: auto;
  accent-color: var(--gold);
}

.enquiry-form__fieldset {
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 2px;
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.enquiry-form__legend {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 0 0.6rem;
}

.enquiry-form__submit {
  align-self: flex-start;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.enquiry-form__submit:hover {
  background: var(--gold);
  color: var(--black);
}

/* --- NEWSLETTER --- */
.newsletter {
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 4rem;
}

.newsletter__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.newsletter__text {
  color: var(--grey-light);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.newsletter__form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  gap: 0;
}

.newsletter__input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--deep);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter__input::placeholder {
  color: var(--grey);
}

.newsletter__input:focus {
  border-color: var(--gold);
}

.newsletter__btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter__btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* Newsletter feedback states */
.newsletter__success,
.newsletter__error {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}

.newsletter__success {
  color: var(--gold);
}

.newsletter__error {
  color: #c97070;
}

.newsletter__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

/* Enquiry form feedback */
.enquiry-form__success {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  text-align: center;
}

.enquiry-form__success p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.enquiry-form__success small {
  color: var(--grey-light);
  font-size: 0.85rem;
}

.enquiry-form__submit:disabled {
  opacity: 0.5;
  cursor: default;
}

/* --- FOOTER --- */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer__sig {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold-dim);
  letter-spacing: 0.2em;
}

.footer__links {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

/* --- ABOUT / SCRIBE --- */
.scribe-portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  object-fit: cover;
  margin-bottom: 2rem;
}

.scribe-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.scribe-systems span {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

/* --- SUPPORT / KO-FI --- */
.support {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.support__tiers {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.support__tier {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: all 0.3s;
  text-decoration: none;
}

.support__tier:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.support__tier small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--grey);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Scroll-triggered fade in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  html { font-size: 16px; }

  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    padding: 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .hero__title { font-size: 2.8rem; letter-spacing: 0.12em; }
  .hero__emblem { width: 260px; height: 260px; }

  .section__title { font-size: 1.8rem; }

  .cards { grid-template-columns: 1fr; }

  .newsletter__form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter__input {
    border-right: 1px solid rgba(201, 168, 76, 0.2);
  }

  .writing-item {
    flex-direction: column;
    gap: 0.3rem;
  }

  .support__tiers { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .poem-header__title { font-size: 2rem; }
}
