/* River Valley Home — styles */

/* ─── Variables ──────────────────────────────── */
:root {
  --cream:      #F7F2EA;
  --bark:       #3B2A1A;
  --terracotta: #C4714A;
  --sage:       #5A7A5C;
  --amber:      #E8A838;
  --stone:      #DDD5C8;
  --warm-bg:    #EDE5D6;
  --card-white: #FEFAF6;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Newsreader', 'Times New Roman', serif;

  --nav-height: 60px;
  --tab-height: 64px;

  --max-width: 1100px;
  --gutter: 2rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--bark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain texture over the entire page for tactile warmth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

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

/* ─── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--bark);
}

/* ─── Shared buttons ─────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover {
  background: var(--bark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--bark); }

/* ─── Navigation ─────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  border-color: var(--stone);
  box-shadow: 0 2px 16px rgba(59, 42, 26, 0.07);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-wordmark {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--bark);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--bark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terracotta); }

/* ─── Mobile bottom tab bar ─────────────────── */
.tab-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--tab-height);
  background: var(--cream);
  border-top: 1px solid var(--stone);
  grid-template-columns: repeat(4, 1fr);
}
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--bark);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.tab-item svg { width: 1.25rem; height: 1.25rem; }
.tab-item.active,
.tab-item:hover { color: var(--terracotta); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .tab-bar { display: grid; }
  body { padding-bottom: var(--tab-height); }
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  background-image: url('../images/river-valley.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(22, 13, 5, 0.20) 0%,
    rgba(22, 13, 5, 0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--cream);
  padding: 2rem;
  max-width: 860px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 9.5vw, 7rem);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  line-height: 1.0;
  margin-bottom: 1.4rem;
  color: var(--cream);
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.hero-content .btn-primary {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

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

/* ─── Highlights strip ───────────────────────── */
.highlights {
  background: var(--cream);
  padding: 4.5rem var(--gutter);
  border-bottom: 1px solid var(--stone);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 240px));
  justify-content: center;
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 2.25rem 1rem 2rem;
  background: var(--card-white);
  border: 1px solid var(--stone);
  border-radius: 3px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.highlight-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 6px 24px rgba(196, 113, 74, 0.14);
  transform: translateY(-3px);
}
.highlight-card svg {
  width: 2.1rem;
  height: 2.1rem;
  color: var(--terracotta);
  stroke-width: 1.4;
}
.highlight-card span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--bark);
  text-align: center;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .highlights-grid { grid-template-columns: repeat(2, minmax(0, 240px)); }
}
@media (max-width: 440px) {
  .highlights-grid { grid-template-columns: repeat(2, minmax(0, 240px)); }
}

/* ─── Property description ───────────────────── */
.description {
  padding: 6.5rem var(--gutter);
  background: var(--cream);
}
.description-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.description-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 72;
  margin-bottom: 1.5rem;
}
.description-text p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--bark);
  margin-bottom: 1.1rem;
}
.description-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .description-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .description-image { order: -1; }
  .description-image img { height: 280px; }
}

/* ─── Guestbook ──────────────────────────────── */
.guestbook {
  background: var(--warm-bg);
  padding: 6.5rem var(--gutter);
}
.guestbook-inner {
  max-width: 760px;
  margin: 0 auto;
}
.guestbook h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 72;
  text-align: center;
  margin-bottom: 3.5rem;
}
.guestbook-entries {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}
.gb-entry {
  background: var(--cream);
  padding: 2rem 2.25rem;
  border-left: 3px solid var(--terracotta);
  position: relative;
}
.gb-entry::before {
  content: '\201C';
  position: absolute;
  top: -0.1rem;
  left: 1.4rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  color: var(--terracotta);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}
.gb-message {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--bark);
  margin-bottom: 1rem;
  padding-top: 0.25rem;
}
.gb-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: var(--sage);
}
.gb-empty {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--sage);
  text-align: center;
  padding: 2.5rem 0;
}

/* ─── Guestbook form ─────────────────────────── */
.guestbook-form-wrap {
  border-top: 1px solid var(--stone);
  padding-top: 3.5rem;
}
.guestbook-form-wrap h3 {
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 72;
  margin-bottom: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bark);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bark);
  background: var(--cream);
  border: 1px solid var(--stone);
  padding: 0.8rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--terracotta); }
.guestbook-form .btn-primary { margin-top: 0.5rem; }

.gb-success {
  display: none;
  background: var(--sage);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.gb-error {
  display: none;
  background: #b94040;
  color: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.fs-field-error {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  color: #b94040;
  margin-top: 0.2rem;
}

/* ─── Footer ─────────────────────────────────── */
.site-footer {
  background: var(--bark);
  color: var(--cream);
  padding: 2.25rem var(--gutter);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.footer-name { font-style: italic; }
.footer-link {
  color: var(--amber);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-link:hover { opacity: 0.75; }

/* ─── Photos page ────────────────────────────── */
.photos-header {
  padding: 4.5rem var(--gutter) 0.5rem;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.photos-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  margin-bottom: 0.6rem;
}
.photos-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--sage);
}

/* Floor plan */
.floor-plan-section {
  padding: 3rem var(--gutter) 3.5rem;
  background: var(--cream);
}
.floor-plan-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  user-select: none;
}
.floor-plan-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.fp-overlay {
  position: absolute;
  inset: 0;
}

/* Zone buttons */
.fp-zone {
  position: absolute;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5px;
  transition: background 0.18s, border-color 0.18s;
}
.fp-zone:hover {
  background: rgba(196, 113, 74, 0.15);
  border-color: rgba(196, 113, 74, 0.45);
}
.fp-zone:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}
.fp-zone-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bark);
  background: rgba(247, 242, 234, 0.92);
  padding: 2px 7px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.18s, transform 0.18s;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.fp-zone:hover .fp-zone-label {
  opacity: 1;
  transform: translateY(0);
}

/* Floor plan legend */
.fp-legend {
  max-width: 900px;
  margin: 1.75rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  justify-content: center;
}
.fp-legend a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.fp-legend a:hover { color: var(--bark); }

/* Room sections */
.rooms-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 6rem;
}
.room-section {
  padding: 4rem 0;
  border-top: 1px solid var(--stone);
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}
.room-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 72;
  margin-bottom: 2rem;
  color: var(--bark);
}
.room-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
figure.room-photo { margin: 0; }
figure.room-photo img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  transition: opacity 0.2s;
}
figure.room-photo img:hover { opacity: 0.93; }
figcaption {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--sage);
  margin-top: 0.6rem;
  line-height: 1.5;
}
.room-photo--single { max-width: 480px; }

/* Outdoor section */
.room-section--outdoor {
  background: var(--warm-bg);
  padding: 4rem 2rem;
  margin: 0 calc(-1 * var(--gutter));
  border-top: none;
  border-radius: 2px;
}

/* Back to floor plan pill */
.back-pill {
  position: fixed;
  bottom: calc(var(--tab-height) + 1.25rem);
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: var(--bark);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 50;
  white-space: nowrap;
}
.back-pill.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.back-pill:hover { background: var(--terracotta); }

@media (min-width: 769px) {
  .back-pill { bottom: 1.75rem; }
}
@media (max-width: 640px) {
  figure.room-photo img { height: 220px; }
  .room-photo--single { max-width: 100%; }
}

/* ─── Nearby page ────────────────────────────── */
.nearby-header {
  padding: 4.5rem var(--gutter) 0.5rem;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nearby-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  margin-bottom: 0.6rem;
}
.nearby-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--sage);
}

.nearby-sections {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 6rem;
}

.nearby-section {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--nav-height) + 52px);
}
.nearby-section:last-child { margin-bottom: 0; }

.nearby-section-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 72;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--stone);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.nearby-card {
  background: var(--card-white);
  border: 1px solid var(--stone);
  border-radius: 3px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nearby-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 4px 16px rgba(196, 113, 74, 0.10);
}

.nearby-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.1rem;
}

.nearby-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.3;
}

.nearby-distance {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--terracotta);
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.nearby-address {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--sage);
  letter-spacing: 0.01em;
}

.nearby-desc {
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.6;
  margin-top: 0.25rem;
  flex-grow: 1;
}

.nearby-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  align-self: flex-start;
  margin-top: 0.6rem;
  transition: color 0.2s;
}
.nearby-link:hover { color: var(--bark); }

.nearby-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.4rem;
}
.nearby-card-links .nearby-link { margin-top: 0; }
.nearby-link--dir { color: var(--sage); border-bottom-color: var(--sage); }
.nearby-link--dir:hover { color: var(--bark); border-bottom-color: var(--bark); }

@media (max-width: 640px) {
  .nearby-grid { grid-template-columns: 1fr; }
}

/* ─── Nearby section jump bar ────────────────── */
.section-jump {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
  padding: 0.65rem var(--gutter);
}
.section-jump-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.section-jump-inner::-webkit-scrollbar { display: none; }

.jump-pill {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bark);
  text-decoration: none;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--stone);
  background: transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.jump-pill:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.jump-pill.active {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}

/* ─── Nearby insights section ────────────────── */
.nearby-insights {
  background: var(--warm-bg);
  padding: 5rem var(--gutter);
  border-top: 1px solid var(--stone);
}
.nearby-insights-inner {
  max-width: 680px;
  margin: 0 auto;
}
.insights-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 72;
  margin-bottom: 1.5rem;
  color: var(--bark);
}
.insights-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--bark);
  margin-bottom: 1rem;
}
.insights-body p:last-child { margin-bottom: 0; }

/* ─── About page ─────────────────────────────── */
.about-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem var(--gutter) 6rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}
.about-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.about-text p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--bark);
  margin-bottom: 1.25rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-portrait {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.about-portrait img {
  width: 100%;
  border-radius: 3px;
  display: block;
}
.about-caption {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--sage);
  margin-top: 0.75rem;
  text-align: center;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
  }
  .about-portrait {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ─── Book page ──────────────────────────────── */
.book-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 5rem var(--gutter) 6rem;
}
.book-header {
  text-align: center;
  margin-bottom: 3rem;
}
.book-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 144;
  margin-bottom: 0.65rem;
}
.book-header p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--sage);
}
.book-cta {
  display: block;
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
  padding: 1.1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 2.5rem;
}
.book-cta:hover {
  background: var(--bark);
  transform: translateY(-1px);
}
.book-checkin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.book-checkin-item {
  background: var(--card-white);
  padding: 1.25rem 1.5rem;
}
.book-checkin-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.35rem;
}
.book-checkin-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bark);
}
.book-note {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--sage);
  line-height: 1.65;
  margin-bottom: 3.5rem;
}
.book-contact-heading {
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 72;
  margin-bottom: 1.75rem;
  padding-top: 3rem;
  border-top: 1px solid var(--stone);
}
