/* ==========================================================================
   End Stage Matters — site stylesheet
   Design tokens and base rules match the established site design:
   forest green (--sage-dark / --warm-brown), olive gold (--sage / --terracotta),
   cream (--cream), Playfair Display headings, Source Sans 3 body.
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
}

img,
svg,
video,
canvas {
  display: block;
  vertical-align: middle;
}

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

ol,
ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

/* -------------------------------------------------------------- tokens --- */
:root {
  --sage: #7a6a3a;
  --sage-light: #b8a878;
  --sage-dark: #1b4d3e;
  --cream: #faf7f2;
  --cream-dark: #ede5d8;
  --warm-brown: #1b4d3e;
  --footer-brown: #2d2a22;
  --terracotta: #7a6a3a;
  --terracotta-light: #a89a6a;
  --dark: #2e2420;
  --text-muted: #7a6e68;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --page-gradient: linear-gradient(135deg, #ede5d8 0%, #faf7f2 60%, #e8efe9 100%);
}

/* ---------------------------------------------------------------- base --- */
body {
  margin: 0;
  background-color: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  font-size: inherit;
  font-weight: inherit;
}

/* ------------------------------------------------------------- buttons --- */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  background-color: var(--sage);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--sage-dark);
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--sage);
  border-radius: 4px;
  background-color: transparent;
  color: var(--sage-dark);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background-color: var(--sage);
  color: #fff;
}

.payhip-buy-button.btn-primary {
  background-color: var(--sage) !important;
  color: #fff !important;
  border: none !important;
}

.payhip-buy-button.btn-primary:hover {
  background-color: var(--sage-dark) !important;
}

.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------ dividers --- */
.section-divider {
  width: 60px;
  height: 2px;
  margin: 1.25rem auto;
  background-color: var(--terracotta);
}

.divider-left {
  width: 50px;
  height: 2px;
  margin-bottom: 1.5rem;
  background-color: var(--terracotta);
}

.divider-left--sm {
  width: 40px;
  margin-bottom: 1.25rem;
}

/* -------------------------------------------------------------- header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1100px;
  height: 90px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  color: var(--warm-brown);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s;
}

.site-nav a:hover {
  border-bottom-color: var(--terracotta-light);
}

.site-nav a.is-active {
  color: var(--sage-dark);
  border-bottom-color: var(--sage);
}

/* -------------------------------------------------------------- footer --- */
.site-footer {
  margin-top: 6rem;
  padding: 4rem 1.5rem 2.5rem;
  background-color: var(--footer-brown);
  color: #faf7f2;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
  filter: brightness(1.3);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer h4 {
  margin-bottom: 1rem;
  color: var(--sage-light);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__nav li {
  margin-bottom: 0.5rem;
}

.site-footer__nav a {
  color: #faf7f2;
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer__nav a:hover {
  text-decoration: underline;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #faf7f2;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}

.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__meta {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.7);
}

/* --------------------------------------------------------------- heroes --- */
.hero-home {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 7rem;
  background: linear-gradient(135deg, #ede5d8 0%, #faf7f2 40%, #e8efe9 100%);
  text-align: center;
}

.hero-home__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.hero-home__logo {
  display: block;
  max-width: 340px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
}

.hero-home__tagline {
  margin-bottom: 1.5rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.4;
}

.hero-home__text {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.75;
}

.page-hero {
  padding: 5rem 1.5rem;
  background: var(--page-gradient);
  text-align: center;
}

.page-hero--tall {
  padding: 5rem 1.5rem 4rem;
  background: linear-gradient(135deg, #ede5d8 0%, #faf7f2 40%, #e8efe9 100%);
}

.page-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero__inner--narrow {
  max-width: 600px;
}

.page-hero__inner--wide {
  max-width: 760px;
}

/* ------------------------------------------------------------ typography --- */
.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--sage {
  margin-bottom: 1rem;
  color: var(--sage);
}

.eyebrow--lg {
  margin-bottom: 1.25rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}

.page-title {
  margin-bottom: 1rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
}

.page-title--lg {
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
}

.lede {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.lede--wide {
  max-width: 620px;
  font-size: 1.2rem;
  line-height: 1.75;
}

.lede--shop {
  max-width: 500px;
  font-size: 1.05rem;
}

.section-heading {
  margin-bottom: 0.5rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.h2-lg {
  margin-bottom: 1rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
}

.h2-md {
  margin-bottom: 0.75rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.3;
}

.prose {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.prose:last-child {
  margin-bottom: 0;
}

.inline-link {
  color: var(--sage-dark);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------- layout --- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.section--sm {
  padding: 5rem 1.5rem;
}

.section--900 {
  max-width: 900px;
  padding: 5rem 1.5rem;
}

.section--800 {
  max-width: 800px;
  padding: 5rem 1.5rem;
}

.section--1000 {
  max-width: 1000px;
  padding: 5rem 1.5rem;
}

.section-white {
  padding: 6rem 1.5rem;
  background-color: white;
}

.section-white--sm {
  padding: 5rem 1.5rem;
}

.section-cream {
  padding: 6rem 1.5rem;
  background-color: var(--cream);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container--800 {
  max-width: 800px;
  margin: 0 auto;
}

.container--900 {
  max-width: 900px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.split--top {
  align-items: start;
}

.split--gap3 {
  gap: 3rem;
}

/* --------------------------------------------------------------- cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  background-color: white;
}

.feature-card__icon {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.feature-card h4 {
  margin-bottom: 0.4rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  background-color: var(--cream);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.pillar {
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  background-color: white;
}

.pillar h2 {
  margin-bottom: 1rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 750px;
  margin: 0 auto;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2.25rem;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  background-color: white;
}

.offer-card__icon {
  font-size: 2rem;
}

.offer-card h3 {
  margin: 0;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.offer-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.8;
}

/* ------------------------------------------------------------- imagery --- */
.framed {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.framed img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.framed--hero {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.framed--hero img {
  max-height: 480px;
}

.order-first {
  order: 1;
}

.order-last {
  order: 2;
}

/* --------------------------------------------------------------- steps --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.steps__num {
  min-width: 2.5rem;
  color: var(--sage-light);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.steps h4 {
  margin: 0 0 0.25rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------- rates --- */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.rate-grid--packages {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 800px;
}

.rate-card {
  padding: 2.25rem;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  background-color: white;
  color: inherit;
}

.rate-card h3 {
  margin: 0 0 1rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.rate-card__price {
  margin-bottom: 1.5rem;
}

.rate-card__amount {
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
}

.rate-card__unit {
  margin-left: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.rate-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rate-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.rate-card__tick {
  margin-top: 1px;
  color: var(--sage);
}

.rate-card--sage {
  border: none;
  background-color: var(--sage);
  color: white;
}

.rate-card--sage h3,
.rate-card--sage .rate-card__amount {
  color: white;
}

.rate-card--sage .rate-card__unit {
  color: rgba(255, 255, 255, 0.75);
}

.rate-card--sage .rate-card__list li {
  color: rgba(255, 255, 255, 0.9);
}

.rate-card--sage .rate-card__tick {
  color: rgba(255, 255, 255, 0.6);
}

.note {
  padding: 2rem;
  border-left: 4px solid var(--sage);
  border-radius: 12px;
  background-color: var(--cream-dark);
}

.note p {
  margin: 0;
  color: var(--warm-brown);
  font-size: 0.975rem;
  line-height: 1.75;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.policy {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.policy:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.policy h3 {
  margin-bottom: 0.75rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.policy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.85;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq {
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  background-color: var(--cream);
}

.faq h4 {
  margin-bottom: 0.75rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.faq p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------------------------------------------------------------- shop --- */
.shop-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  background-color: white;
}

.product-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
}

.product-card h2 {
  margin: 0;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-card p {
  flex: 1;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.product-card__price {
  margin-top: 0.5rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
  color: var(--sage-dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.product-detail__img {
  width: 100%;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  object-fit: cover;
}

.product-detail h1 {
  margin-bottom: 1rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
}

.product-detail__desc {
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.product-detail__buy {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.product-detail__price {
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}

.product-detail__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------ cta bands --- */
.cta-band {
  padding: 4rem 1.5rem;
  background-color: var(--sage);
  text-align: center;
}

.cta-band--tall {
  padding: 4.5rem 1.5rem;
}

.cta-band__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
  color: white;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.cta-band p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.btn-on-sage {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  background-color: white;
  color: var(--sage-dark);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-on-sage--ghost {
  border: 2px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  color: white;
}

.cta-cream {
  padding: 5rem 1.5rem;
  background-color: var(--cream-dark);
  text-align: center;
}

.cta-cream__inner {
  max-width: 580px;
  margin: 0 auto;
}

.cta-cream h2 {
  margin-bottom: 1rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.cta-cream p {
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* -------------------------------------------------------------- contact --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__label {
  color: var(--warm-brown);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  background-color: white;
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.975rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
}

.contact-form button {
  align-self: flex-start;
}

.contact-form__honeypot {
  display: none;
}

.contact-card {
  padding: 2.25rem;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  background-color: var(--cream-dark);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-card .section-divider {
  margin: 1rem 0 1.75rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-list__label {
  margin: 0 0 0.3rem;
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list__value {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-list__value a {
  color: var(--sage-dark);
  font-weight: 500;
  text-decoration: none;
}

.contact-list__value a:hover {
  text-decoration: underline;
}

.contact-list__sep {
  color: var(--text-muted);
}

/* ------------------------------------------------------------ responsive --- */
@media (max-width: 900px) {
  .site-header__inner {
    height: auto;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .offer-grid,
  .product-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section--sm,
  .section--900,
  .section--800,
  .section--1000,
  .section-white,
  .section-white--sm,
  .section-cream,
  .shop-wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-home {
    padding: 4rem 1.25rem 4.5rem;
  }

  .split {
    gap: 2.5rem;
  }
}

/* ==========================================================================
   The Bird and Bee — book page + homepage teaser
   ========================================================================== */

.book-hero {
  padding: 5rem 1.5rem;
  background: var(--page-gradient);
}

.book-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.book-cover {
  display: block;
  width: 100%;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(27, 77, 62, 0.22);
}

.book-hero__title {
  margin-bottom: 0.75rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.book-hero__subtitle {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
}

.book-hero__byline {
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.keynote {
  padding: 5rem 1.5rem;
  background-color: white;
}

.keynote__text {
  max-width: 780px;
  margin: 0 auto;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.book-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.book-photos figure {
  margin: 0;
}

.book-photos img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.book-photos figcaption {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}

.book-copy {
  max-width: 760px;
  margin: 0 auto;
}

.book-copy__hook {
  margin-bottom: 1.75rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
}

.quote-band {
  padding: 5rem 1.5rem;
  background-color: var(--sage);
}

.quote-band blockquote {
  max-width: 820px;
  margin: 0 auto;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.quote-band__mark {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--serif);
  font-size: 3.5rem;
  font-style: normal;
  line-height: 1;
}

.book-bio {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.book-bio .prose {
  text-align: left;
}

.book-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.book-cta__note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.book-cta__note a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.book-cta__note a:hover {
  color: var(--sage);
}

/* ------------------------------------------------------- homepage teaser --- */
.book-teaser {
  padding: 5rem 1.5rem;
  background-color: var(--cream-dark);
}

.book-teaser__inner {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.book-teaser__cover img {
  width: 100%;
  border: 1px solid rgba(27, 77, 62, 0.12);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(27, 77, 62, 0.2);
}

.book-teaser__title {
  margin-bottom: 0.4rem;
  color: var(--warm-brown);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
}

.book-teaser__subtitle {
  margin-bottom: 1.25rem;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
}

.book-teaser__text {
  margin-bottom: 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .book-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .book-cover {
    max-width: 260px;
    margin: 0 auto;
  }

  .book-photos {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .book-teaser__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .book-teaser__cover img {
    max-width: 200px;
    margin: 0 auto;
  }
}
