/* Rebecca K Campbell — author site, v8 total redesign
   Aesthetic: dark, mythic, shader-inspired — animated aurora/mesh-gradient
   backgrounds standing in for literal watermark graphics, glassmorphic
   cards (blurred, translucent panels) in the spirit of 21st.dev-style
   component design, calm high-contrast type instead of moving text.
   Palette moves off warm parchment/rust entirely into a deep plum-crimson
   night with a gold accent — evoking a blood moon over the steppe. */

:root {
  --bg: #0b0a10;
  --bg-soft: #15121c;
  --panel: #1b1722;
  --plum: #2a1330;
  --crimson: #c31d4a;
  --crimson-deep: #6c0f2c;
  --gold: #d9a441;
  --gold-soft: #f3d98c;
  --ink: #f3ede2;
  --ink-dim: #b7abc2;
  --dark-ink: #17111c;
  --line: rgba(243,237,226,0.14);
  --glass: rgba(255,255,255,0.055);
  --glass-strong: rgba(255,255,255,0.095);
  --glass-border: rgba(243,237,226,0.16);
  --shadow: 0 30px 60px rgba(0,0,0,0.5);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-dim);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  font-size: 17px;
}

/* ---------- Type ---------- */

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 3.6vw + 1.4rem, 4.8em); }
h2 { font-size: clamp(1.8rem, 1.8vw + 1.4rem, 2.6em); }
h3 { font-size: 1.35em; letter-spacing: -0.01em; }

h1 em, h2 em, h3 em, h4 em,
h1 .accent-word, h2 .accent-word, h3 .accent-word, h4 .accent-word,
em, .accent-word {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold-soft);
}

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

p { margin: 0 0 1.2em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ---------- Shader-style animated mesh backdrop ---------- */
/* a soft, drifting aurora of blurred colour, standing in for literal
   watermark graphics — the ambient motion lives in the light itself */

.mesh {
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(640px circle at 18% 28%, rgba(195,29,74,0.55), transparent 60%),
    radial-gradient(720px circle at 82% 68%, rgba(217,164,65,0.30), transparent 60%),
    radial-gradient(520px circle at 55% 15%, rgba(108,15,44,0.55), transparent 60%),
    radial-gradient(600px circle at 30% 85%, rgba(42,19,48,0.65), transparent 65%);
  filter: blur(50px);
  animation: meshDrift 18s ease-in-out infinite alternate;
}

/* a second, slower-turning swirl of colour beneath the blobs, in the
   spirit of 21st.dev's animated gradient-mesh components — a conic
   sweep gives the background a genuinely living, shader-like quality rather
   than a static painted blur */
.mesh::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(195,29,74,0.28), rgba(217,164,65,0.22), rgba(108,15,44,0.3),
    rgba(42,19,48,0.24), rgba(195,29,74,0.28));
  filter: blur(70px);
  animation: meshSpin 46s linear infinite;
  mix-blend-mode: screen;
}

@keyframes meshDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-6%, 4%) scale(1.14); }
  100% { transform: translate(4%, -4%) scale(1.04); }
}

@keyframes meshSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.mesh.quiet { opacity: 0.55; }
.mesh.quiet::before { opacity: 0.6; }

/* ---------- Large photographic fern watermark ---------- */
/* a real fern frond silhouette, held very faint and set adrift with a
   slow sway, tucked into a section corner alongside the mesh — the
   "watermark of plants" treatment from the very first version of this
   site, brought back at a quieter register */

.leaf-watermark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-color: currentColor;
  color: var(--gold-soft);
  opacity: 0.22;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  animation: leafSway 28s ease-in-out infinite alternate;
}

.leaf-watermark.left {
  left: -10px;
  bottom: -30px;
  width: 260px;
  height: 720px;
  -webkit-mask-position: left bottom;
  mask-position: left bottom;
  -webkit-mask-image: url('/images/fernwatermark1.png');
  mask-image: url('/images/fernwatermark1.png');
  transform-origin: bottom left;
}

.leaf-watermark.right {
  right: -10px;
  top: -30px;
  width: 260px;
  height: 720px;
  -webkit-mask-position: right top;
  mask-position: right top;
  -webkit-mask-image: url('/images/fernwatermark1flip.png');
  mask-image: url('/images/fernwatermark1flip.png');
  transform-origin: top right;
  animation-direction: alternate-reverse;
}

.leaf-watermark.small { width: 170px; height: 480px; opacity: 0.18; }
section.dark .leaf-watermark, section.crimson .leaf-watermark { opacity: 0.28; color: var(--gold-soft); }
section.dark .leaf-watermark.small, section.crimson .leaf-watermark.small { opacity: 0.22; }

/* a second, distinct frond silhouette, alternated in with the first
   across sections so the watermark doesn't repeat identically site-wide */
.leaf-watermark.variant-b.left {
  -webkit-mask-image: url('/images/fernwatermark2.png');
  mask-image: url('/images/fernwatermark2.png');
}
.leaf-watermark.variant-b.right {
  -webkit-mask-image: url('/images/fernwatermark2flip.png');
  mask-image: url('/images/fernwatermark2flip.png');
}

@keyframes leafSway {
  0%   { transform: rotate(-1.4deg) translateY(0); }
  50%  { transform: rotate(1.1deg) translateY(-12px); }
  100% { transform: rotate(-0.7deg) translateY(3px); }
}

/* ---------- Gentle entrance motion ---------- */
/* a single, quiet fade-and-rise on load for hero copy, and the same on
   scroll for section headings further down the page — motion held to a
   plain fade/rise, nothing bouncy or continuous on the text itself */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content p.lead,
.hero-content .btn {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-content .eyebrow { animation-delay: 0.05s; }
.hero-content h1 { animation-delay: 0.16s; }
.hero-content p.lead { animation-delay: 0.3s; }
.hero-content .btn { animation-delay: 0.42s; }
.hero-content .btn + .btn { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .leaf-watermark, .mesh { animation: none; }
  .hero-content .eyebrow, .hero-content h1, .hero-content p.lead, .hero-content .btn {
    opacity: 1;
    animation: none;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Botanical line-art accents ---------- */
/* faint digital-illustration sprigs, tucked into a corner of otherwise
   plain sections — suggestive rather than decorative, just enough to
   keep flat backgrounds from reading as dead space */

.accent { position: relative; overflow: hidden; }
.accent > .container { position: relative; z-index: 1; }

.accent::before {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  opacity: 0.16;
}

.accent-fern::before {
  left: -30px;
  bottom: -30px;
  width: 300px;
  height: 380px;
  background-position: left bottom;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 400'%3E%3Cpath d='M150,390 C140,300 160,220 150,140 C145,80 155,40 150,10' fill='none' stroke='%23f3d98c' stroke-width='2'/%3E%3Cpath d='M150,350 C120,340 100,320 90,300' fill='none' stroke='%23f3d98c' stroke-width='1.6'/%3E%3Cpath d='M150,320 C180,310 200,290 210,270' fill='none' stroke='%23f3d98c' stroke-width='1.6'/%3E%3Cpath d='M150,270 C120,262 100,245 92,228' fill='none' stroke='%23f3d98c' stroke-width='1.6'/%3E%3Cpath d='M150,240 C180,232 198,215 208,198' fill='none' stroke='%23f3d98c' stroke-width='1.6'/%3E%3Cpath d='M150,190 C126,182 112,168 104,152' fill='none' stroke='%23f3d98c' stroke-width='1.4'/%3E%3Cpath d='M150,160 C174,152 188,138 196,122' fill='none' stroke='%23f3d98c' stroke-width='1.4'/%3E%3C/svg%3E");
}

.accent-twig::before {
  right: -20px;
  top: -20px;
  width: 220px;
  height: 290px;
  background-position: right top;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 340'%3E%3Cpath d='M40,320 C70,260 90,200 110,150 C130,100 150,60 190,20' fill='none' stroke='%23f3d98c' stroke-width='2'/%3E%3Ccircle cx='120' cy='140' r='5' fill='%23f3d98c'/%3E%3Ccircle cx='140' cy='108' r='5' fill='%23f3d98c'/%3E%3Ccircle cx='160' cy='78' r='5' fill='%23f3d98c'/%3E%3Ccircle cx='178' cy='50' r='5' fill='%23f3d98c'/%3E%3C/svg%3E");
}

.accent-tendril::before {
  right: -30px;
  bottom: -30px;
  width: 260px;
  height: 330px;
  background-position: right bottom;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 380'%3E%3Cpath d='M40,20 C120,40 60,140 140,160 C220,180 160,280 240,300 C280,310 270,340 260,360' fill='none' stroke='%23f3d98c' stroke-width='2'/%3E%3C/svg%3E");
}

/* laid over a hero photo, the mesh sits above the dark scrim and blends
   into the image itself rather than floating as a separate layer */
.hero-photo-section .mesh { z-index: 1; mix-blend-mode: screen; opacity: 0.85; }
.hero-content { position: relative; }
section.dark .mesh, section.crimson .mesh { opacity: 0.9; }

/* ---------- Header / Nav ---------- */

.site-header {
  background: rgba(11,10,16,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  flex-wrap: wrap;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  color: var(--ink);
}

.brand .mark { width: 20px; height: 20px; color: var(--gold); }
.brand em { color: var(--gold-soft); font-family: 'Instrument Serif', serif; }

/* ---------- Brand mark — a curled bush-plant bud, rendered as a masked
   silhouette so it tints via currentColor ---------- */

@keyframes markGlow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(217,164,65,0)); }
  50% { filter: drop-shadow(0 0 6px rgba(217,164,65,0.8)); }
}

.mark {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-image: url('/images/markiconink.png');
  mask-image: url('/images/markiconink.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  animation: markGlow 4s ease-in-out infinite;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: var(--ink-dim);
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom-color: var(--crimson);
}

/* ---------- Photo treatment — cool plum-to-gold duotone, replacing the
   old warm rust duotone to match the new night-sky palette ---------- */

.photo {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--bg-soft);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: url(#duotoneRust);
}

.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(195,29,74,0.22), rgba(42,19,48,0.35) 60%, rgba(11,10,16,0.15));
  mix-blend-mode: color;
  pointer-events: none;
}

.photo.no-tint::after { content: none; }
.photo.no-tint img { filter: none; object-fit: contain; background: var(--panel); }

.photo.true-color::after { content: none; }
.photo.true-color img { filter: none; }

/* a plain framed image, no letterboxing, natural aspect ratio, soft glass
   edge — used for the book cover shown "in its true colours" */
.cover-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}
.cover-frame img { width: 100%; display: block; }

/* ---------- Glass card component ---------- */

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* ---------- Hero (full-bleed photo, mesh-lit) ---------- */

.hero-photo-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
}

.hero-photo-section .photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-photo-section .photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,10,16,0.92) 0%, rgba(11,10,16,0.45) 48%, rgba(11,10,16,0.18) 75%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 64px;
  width: 100%;
}

.hero-content h1 {
  max-width: 760px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-content p.lead {
  color: var(--ink-dim);
  max-width: 560px;
  font-size: 1.12em;
}

/* ---------- Eyebrow pill ---------- */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76em;
  font-weight: 600;
  color: var(--gold-soft) !important;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
}

.eyebrow .mark { width: 13px; height: 13px; color: var(--gold-soft) !important; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid var(--glass-border);
  color: var(--ink);
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 999px;
  margin-top: 8px;
  margin-right: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--glass-strong);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn.btn-solid {
  background: linear-gradient(135deg, var(--crimson), var(--gold));
  border-color: transparent;
  color: var(--dark-ink);
  box-shadow: 0 12px 28px rgba(195,29,74,0.35);
}
.btn.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(195,29,74,0.5); background: linear-gradient(135deg, var(--crimson), var(--gold)); color: var(--dark-ink); }

.btn.btn-dark {
  border-color: var(--glass-border);
  color: var(--ink);
  background: var(--glass);
}
.btn.btn-dark:hover { background: var(--glass-strong); color: var(--ink); }

/* ---------- Sections ---------- */

section { padding: 100px 0; position: relative; overflow: hidden; }

section.tight { padding: 56px 0; }

/* a slightly lighter panel, used to separate rhythm between sections
   without ever going back to a light/paper background */
section.alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* a saturated plum-to-crimson mesh panel, used to feature the book's own
   colourway — replaces the old flat "crimson" band */
section.dark,
section.crimson {
  background: linear-gradient(160deg, var(--plum) 0%, var(--crimson-deep) 100%);
  color: var(--ink);
  overflow: hidden;
}
section.dark h2, section.dark h3,
section.crimson h2, section.crimson h3 { color: var(--ink); }
section.dark .eyebrow, section.crimson .eyebrow { background: rgba(255,255,255,0.12); color: var(--gold-soft) !important; }
section.dark p, section.crimson p { color: var(--ink-dim); }

.section-title { max-width: 640px; margin-bottom: 44px; position: relative; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title .eyebrow.center { justify-content: center; }

.divider {
  width: 110px;
  height: 18px;
  color: var(--gold);
  margin-top: 18px;
}
.divider path { stroke-width: 3.4; }
.divider circle:first-of-type { r: 3.2; }
.section-title.center .divider { margin-left: auto; margin-right: auto; }

/* ---------- Split feature (photo + text) ---------- */

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-feature.reverse .photo { order: 2; }

.split-feature .photo {
  aspect-ratio: 4/5;
}

/* ---------- Book feature ---------- */

.book-feature {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: start;
}

.book-feature .art {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.book-feature .art img { width: 100%; display: block; filter: url(#duotoneRust); }
.book-feature .art.no-tint img { filter: none; }

.shop-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.shop-list li {
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
}

.shop-list .tag {
  display: inline-block;
  min-width: 100px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78em;
  font-weight: 600;
}

/* ---------- Numbered cards ---------- */

.numbered-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.numbered-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 28px 26px;
}

.numbered-card .num {
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.numbered-card .num svg {
  width: 30px;
  height: 36px;
  display: block;
}

.numbered-card h3 { margin-bottom: 8px; }
.numbered-card p { color: var(--ink-dim); margin-bottom: 0; }

/* ---------- Writings / Poems ---------- */

.poem-category { margin-bottom: 56px; }

.poem-category-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
}

.poem-category-head .photo {
  aspect-ratio: 1/1;
}

.poem-category h3 {
  margin-bottom: 4px;
}

.poem {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 24px 28px;
  margin-bottom: 16px;
  border-radius: 16px;
}

.poem h4 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.35em;
  margin-bottom: 10px;
  color: var(--gold-soft);
}

.poem .stanza {
  white-space: pre-line;
  color: var(--ink-dim);
}

.placeholder {
  border: 1px dashed var(--gold);
  background: rgba(217,164,65,0.08);
  color: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8em;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  margin-top: 8px;
}

/* ---------- Contact form ---------- */

form.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

form.contact-form label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8em;
  font-weight: 600;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 6px;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  border-radius: 10px;
  color: var(--ink);
}

form.contact-form select { cursor: pointer; }
form.contact-form select option { background: var(--bg-soft); color: var(--ink); }

form.contact-form textarea { min-height: 160px; resize: vertical; }

form.contact-form button {
  justify-self: start;
  cursor: pointer;
  background: linear-gradient(135deg, var(--crimson), var(--gold));
  color: var(--dark-ink);
  border: none;
  padding: 13px 32px;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(195,29,74,0.35);
}
form.contact-form button:hover { box-shadow: 0 18px 36px rgba(195,29,74,0.5); }

.setup-note {
  background: var(--glass);
  border: 1px dashed var(--gold);
  padding: 18px 22px;
  border-radius: 16px;
  margin-bottom: 32px;
  font-size: 0.92em;
  color: var(--ink-dim);
}
.setup-note strong { color: var(--gold-soft); }

/* ---------- Footer ---------- */

footer {
  position: relative;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  color: var(--ink-dim);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9em;
}
footer a { color: var(--gold-soft); }
footer .mark { width: 20px; height: 20px; color: var(--gold); margin-bottom: 10px; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .split-feature { grid-template-columns: 1fr; }
  .split-feature.reverse .photo { order: -1; }
  .book-feature { grid-template-columns: 1fr; }
  .book-feature .art { max-width: 320px; margin: 0 auto; }
  .shop-list { grid-template-columns: 1fr; }
  .poem-category-head { grid-template-columns: 1fr; }
  .poem-category-head .photo { max-width: 220px; }
  h1 { font-size: 2.4em; }
  h2 { font-size: 1.8em; }
  .hero-photo-section { min-height: 64vh; }
}
