/* Hollie's All Write — shared design system for interior pages.
   Ported from index.html's inline <style> so /book, /speaking, /workshops,
   /blog, /about, /contact, /privacy-policy and /terms-of-use match the
   homepage exactly. Homepage keeps its own inline copy — do not remove it. */

/* Small phones: keep logo + CTA inside the viewport so the sticky header
   background always reaches the right edge (no horizontal overflow). */
@media (max-width: 560px) {
   .site-header .wrap { padding-left: 16px; padding-right: 16px; gap: 12px; flex-wrap: wrap; }
   .site-header .logo { font-size: 24px; }
   .site-header .header-cta { font-size: 10.5px; padding: 8px 13px; letter-spacing: 0.04em; }
}

:root {
--raspberry: #E35373;
--raspberry-dark: #B93F5B;
--blush: #F5BBC3;
--petal: #F7EBEF;
--kraft: #C4A589;
--peach: #F2C4B4;
--charcoal: #221F1E;
--text: #3A3733;
--text-soft: #6b6560;
--white: #FFFFFF;
--radius: 10px;
}

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

body {
margin: 0;
font-family: 'Lora', Georgia, serif;
color: var(--text);
background: var(--white);
line-height: 1.65;
-webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
font-family: 'Playfair Display', Georgia, serif;
font-weight: 600;
margin: 0 0 0.5em;
color: var(--charcoal);
}

.script {
font-family: 'Caveat', cursive;
font-weight: 600;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.narrow {
max-width: 760px;
}

/* ---------- Skip link ---------- */
.skip-link {
position: absolute;
left: -999px;
top: 0;
background: var(--raspberry);
color: white;
padding: 12px 20px;
z-index: 100;
border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
background: var(--charcoal);
color: var(--white);
position: sticky;
top: 0;
z-index: 50;
}
.site-header .wrap {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 16px;
padding-bottom: 16px;
gap: 24px;
}
.logo {
font-family: 'Dancing Script', cursive;
font-weight: 600;
font-size: 30px;
color: var(--white);
white-space: nowrap;
}
.main-nav {
display: flex;
gap: 22px;
list-style: none;
margin: 0;
padding: 0;
font-size: 13px;
letter-spacing: 0.08em;
text-transform: uppercase;
flex-wrap: wrap;
}
.main-nav a {
opacity: 0.85;
padding: 6px 0;
border-bottom: 1px solid transparent;
transition: opacity 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
opacity: 1;
border-bottom-color: var(--blush);
}
.header-cta {
background: transparent;
border: 1px solid var(--blush);
color: var(--white);
padding: 10px 18px;
border-radius: 999px;
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
white-space: nowrap;
transition: background 0.15s ease, color 0.15s ease;
}
.header-cta:hover,
.header-cta:focus-visible {
background: var(--blush);
color: var(--charcoal);
}

/* ---------- Page intro band (interior-page "hero") ---------- */
.page-intro {
padding: 56px 0 48px;
background: var(--petal);
}
.page-intro .eyebrow {
display: inline-block;
font-family: 'Lora', serif;
font-weight: 500;
font-size: 13px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--raspberry);
margin-bottom: 12px;
}
.page-intro h1 {
font-size: 38px;
line-height: 1.2;
max-width: 20ch;
}
.page-intro p {
font-size: 17px;
color: var(--text-soft);
max-width: 60ch;
margin: 14px 0 0;
}

/* ---------- Generic section rhythm ---------- */
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-alt { background: var(--petal); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section h2 { font-size: 28px; }
.section-sub {
color: var(--text-soft);
max-width: 60ch;
margin: 0 0 32px;
}
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
display: inline-block;
padding: 14px 30px;
border-radius: 999px;
font-size: 13px;
letter-spacing: 0.08em;
text-transform: uppercase;
border: 1px solid var(--charcoal);
transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
cursor: pointer;
}
.btn-primary {
background: var(--charcoal);
color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible {
background: var(--raspberry);
border-color: var(--raspberry);
transform: translateY(-1px);
color: var(--white);
}
.btn-outline {
background: transparent;
color: var(--charcoal);
}
.btn-outline:hover, .btn-outline:focus-visible {
background: var(--charcoal);
color: var(--white);
}
.btn-text {
border: none;
padding: 14px 4px;
color: var(--charcoal);
border-bottom: 1px solid var(--charcoal);
border-radius: 0;
}
.btn-text:hover, .btn-text:focus-visible {
color: var(--raspberry);
border-color: var(--raspberry);
}

/* ---------- Cards ---------- */
.card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}
.card {
background: var(--white);
border-radius: var(--radius);
padding: 28px 24px;
box-shadow: 0 1px 2px rgba(34,31,30,0.06);
border: 1px solid rgba(34,31,30,0.08);
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--text-soft); margin: 0; }

/* ---------- Pull quotes / testimonials ---------- */
.quote-block {
background: var(--white);
border-radius: var(--radius);
padding: 26px 26px 22px;
border: 1px solid rgba(34,31,30,0.08);
}
.quote-block p {
font-family: 'Playfair Display', serif;
font-style: italic;
font-size: 17px;
color: var(--charcoal);
margin: 0 0 12px;
}
.quote-block cite {
font-style: normal;
font-size: 13px;
color: var(--text-soft);
letter-spacing: 0.02em;
}

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-field label {
display: block;
font-size: 13px;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--text-soft);
margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
width: 100%;
padding: 13px 14px;
border-radius: 8px;
border: 1px solid rgba(34,31,30,0.18);
font-family: 'Lora', serif;
font-size: 15px;
color: var(--text);
background: var(--white);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
outline: 2px solid var(--raspberry);
outline-offset: 1px;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
}
.form-note {
font-size: 13px;
color: var(--text-soft);
margin-top: -6px;
}
fieldset.type-fields {
border: 1px dashed var(--blush);
border-radius: var(--radius);
padding: 20px 20px 4px;
margin: 0 0 24px;
}
fieldset.type-fields legend {
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--raspberry);
padding: 0 8px;
}
[hidden] { display: none !important; }

/* ---------- Newsletter band (reused) ---------- */
.newsletter {
background: var(--kraft);
padding: 56px 0;
color: var(--white);
}
.newsletter .wrap {
display: grid;
grid-template-columns: auto 1fr auto;
gap: 24px;
align-items: center;
}
.newsletter h2 { color: var(--white); font-size: 22px; }
.newsletter form { display: flex; gap: 10px; }
.newsletter input[type="email"] {
flex: 1;
min-width: 220px;
padding: 13px 16px;
border-radius: 999px;
border: none;
font-family: 'Lora', serif;
font-size: 14px;
}
.newsletter-note {
font-size: 13px;
color: rgba(255,255,255,0.85);
max-width: 30ch;
}

/* ---------- Footer ---------- */
.site-footer {
background: var(--charcoal);
color: rgba(255,255,255,0.75);
padding: 48px 0 28px;
font-size: 14px;
}
.footer-nav {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 24px;
list-style: none;
padding: 0;
margin: 0 0 24px;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.06em;
}
.footer-nav a:hover { color: var(--blush); }
.footer-meta { text-align: center; }
.footer-meta .brand {
font-family: 'Caveat', cursive;
font-size: 24px;
color: var(--white);
display: block;
margin-bottom: 8px;
}
.footer-meta a { color: var(--blush); }
.footer-social { margin: 18px 0; }
.footer-social a {
display: inline-flex;
width: 34px; height: 34px;
border-radius: 999px;
background: rgba(255,255,255,0.08);
align-items: center;
justify-content: center;
color: var(--white);
}
.copyright {
text-align: center;
font-size: 12px;
color: rgba(255,255,255,0.4);
margin-top: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
.main-nav { display: none; }
.card-grid { grid-template-columns: 1fr 1fr; }
.form-row { grid-template-columns: 1fr; }
.newsletter .wrap { grid-template-columns: 1fr; text-align: center; }
.newsletter form { flex-direction: column; }
.page-intro h1 { max-width: none; }
}
@media (max-width: 540px) {
.card-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
* { transition: none !important; scroll-behavior: auto !important; }
}

:focus-visible {
outline: 2px solid var(--raspberry);
outline-offset: 2px;
}
