/*
Theme Name: Pinewood Retreat
Theme URI: https://pinewoodretreat.com
Author: Pinewood Retreat
Author URI: https://pinewoodretreat.com
Description: A minimal hill station farmhouse website theme. Earthy palette (cream + forest green + terracotta), Cormorant Garamond serif headings, full-screen hero, three room cards, experiences grid, photo gallery, and contact form. All content editable via the WordPress Customizer.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pinewood-retreat
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready, blog, portfolio
*/

/* =========================================================
   Pinewood Retreat — WordPress Theme
   Earthy minimal palette: cream + forest green + terracotta
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2e25;
  background-color: #f5efe2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

:root {
  --forest: #2d4a3a;
  --forest-soft: #3d6450;
  --terra: #b5613f;
  --terra-soft: #c97a5a;
  --cream: #f5efe2;
  --cream-light: #faf6ed;
  --ink: #1f2e25;
  --muted: #6b7a6f;
  --border: #d9d2c2;
  --paper: #f8f4ea;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
p { line-height: 1.7; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--terra);
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 6rem 0; }
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
}
.text-balance { text-wrap: balance; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}
.site-header.scrolled {
  background: rgba(245, 239, 226, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 210, 194, 0.6);
  padding: 0.85rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}
.brand .italic { font-style: italic; font-weight: 400; }
.site-header.scrolled .brand { color: var(--ink); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-desktop a {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}
.site-header.scrolled .nav-desktop a { color: rgba(31, 46, 37, 0.8); }
.nav-desktop a:hover { color: var(--terra); }

.btn-book {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.7rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}
.btn-book:hover { background: rgba(255, 255, 255, 0.25); }
.site-header.scrolled .btn-book {
  background: var(--forest);
  color: var(--cream) !important;
}
.site-header.scrolled .btn-book:hover { background: var(--forest-soft); }

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.25rem;
}
.site-header.scrolled .menu-toggle { color: var(--ink); }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
}

.mobile-drawer {
  display: none;
  margin: 1rem 1.5rem 0;
  padding: 1.5rem;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-drawer a:last-of-type { border-bottom: 0; }
.mobile-drawer a:hover { color: var(--terra); }
.mobile-drawer .btn-book-mobile {
  display: block;
  margin-top: 1rem;
  padding: 0.9rem;
  text-align: center;
  background: var(--forest);
  color: var(--cream) !important;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 1.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero-content { padding-bottom: 7rem; } }

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: #fff;
  max-width: 800px;
}
.hero h1 .light {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}
.hero p.lead {
  margin-top: 1.75rem;
  max-width: 540px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}
.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: #fff;
  color: var(--ink);
}
.btn-primary:hover { background: rgba(255, 255, 255, 0.92); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
@media (min-width: 768px) { .scroll-cue { display: flex; } }
.scroll-cue-arrow {
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* About */
.about {
  background-color: var(--cream);
  background-image:
    radial-gradient(at 20% 10%, rgba(228, 215, 185, 0.5) 0px, transparent 50%),
    radial-gradient(at 80% 90%, rgba(180, 200, 180, 0.35) 0px, transparent 50%);
}
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.about-image {
  position: relative;
  order: 2;
}
@media (min-width: 1024px) { .about-image { order: 1; } }
.about-image-main {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-image:hover .about-image-main img { transform: scale(1.03); }
.about-image-inset {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 14rem;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  border: 4px solid var(--cream);
  display: none;
}
@media (min-width: 640px) { .about-image-inset { display: block; } }
.about-image-inset img { width: 100%; height: 100%; object-fit: cover; }

.about-content { order: 1; }
@media (min-width: 1024px) { .about-content { order: 2; } }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: rgba(31, 46, 37, 0.75); margin-bottom: 1.25rem; }
.about-content .pullquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(31, 46, 37, 0.92);
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--terra);
}

.stats {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--forest);
}
@media (min-width: 640px) { .stat-value { font-size: 2rem; } }
.stat-label {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(31, 46, 37, 0.6);
}

/* Stays */
.stays { background: var(--cream); }
.stays-header {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
}
.stays-header p { color: rgba(31, 46, 37, 0.7); margin-top: 1.25rem; }
.stays-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .stays-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stays-grid { grid-template-columns: repeat(3, 1fr); } }

.room-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 46, 37, 0.12);
}
.room-card.featured { position: relative; }
@media (min-width: 1024px) {
  .room-card.featured { transform: scale(1.03); box-shadow: 0 10px 30px rgba(31, 46, 37, 0.08); }
  .room-card.featured:hover { transform: scale(1.03) translateY(-4px); }
}
.room-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--terra);
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.room-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.room-card:hover .room-image img { transform: scale(1.06); }
.room-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.room-tag {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(31, 46, 37, 0.55);
}
.room-body h3 { margin: 0.5rem 0 0.75rem; }
.room-desc {
  font-size: 0.9rem;
  color: rgba(31, 46, 37, 0.7);
  line-height: 1.65;
}
.room-amenities {
  list-style: none;
  margin: 1.25rem 0;
}
.room-amenities li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(31, 46, 37, 0.7);
  padding: 0.25rem 0;
}
.room-amenities li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
}
.room-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.room-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--forest);
}
.room-price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(31, 46, 37, 0.55);
  margin-left: 0.25rem;
}
.room-reserve {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s ease, gap 0.3s ease;
}
.room-reserve:hover { color: var(--terra); gap: 0.6rem; }
.room-reserve-arrow { transition: transform 0.3s ease; }
.room-reserve:hover .room-reserve-arrow { transform: translateX(3px); }

/* Experiences */
.experiences {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.experiences-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .experiences-grid { grid-template-columns: 1fr 2fr; gap: 4rem; }
}
.experiences-intro h2 { color: var(--cream); }
.experiences-intro h2 .light {
  font-style: italic;
  font-weight: 400;
  color: rgba(245, 239, 226, 0.8);
}
.experiences-intro p {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(245, 239, 226, 0.7);
}
.experiences-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .experiences-list { grid-template-columns: repeat(2, 1fr); } }

.experience-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.experience-card:hover img { transform: scale(1.1); }
.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}
.experience-body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.experience-duration {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 239, 226, 0.75);
}
.experience-body h3 {
  color: var(--cream);
  margin: 0.4rem 0 0;
  font-size: 1.5rem;
}
.experience-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
  font-size: 0.85rem;
  color: rgba(245, 239, 226, 0.85);
  line-height: 1.6;
}
.experience-card:hover .experience-desc {
  max-height: 8rem;
  opacity: 1;
  margin-top: 0.6rem;
}

/* Gallery */
.gallery { background: var(--cream); }
.gallery-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .gallery-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.gallery-header h2 { max-width: 30rem; }
.gallery-header .gallery-note {
  max-width: 22rem;
  font-size: 0.9rem;
  color: rgba(31, 46, 37, 0.65);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 200px;
}
@media (min-width: 640px) { .gallery-grid { grid-auto-rows: 240px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
}
.gallery-item:hover::after { background: rgba(0, 0, 0, 0.15); }
.gallery-item.span-2x2 { grid-column: span 2; grid-row: span 2; }
.gallery-item.span-2 { grid-column: span 2; }
@media (max-width: 1023px) {
  .gallery-item.span-2x2 { grid-row: span 1; }
}

/* Contact */
.contact {
  background-color: var(--cream);
  background-image:
    radial-gradient(at 20% 10%, rgba(228, 215, 185, 0.5) 0px, transparent 50%),
    radial-gradient(at 80% 90%, rgba(180, 200, 180, 0.35) 0px, transparent 50%);
}
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.contact-intro h2 { margin-bottom: 1.5rem; }
.contact-intro p {
  max-width: 28rem;
  color: rgba(31, 46, 37, 0.7);
  margin-bottom: 1rem;
}
.contact-info {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .contact-info { grid-template-columns: repeat(2, 1fr); } }
.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(45, 74, 58, 0.1);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 1rem; height: 1rem; }
.contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(31, 46, 37, 0.55);
}
.contact-value {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: rgba(31, 46, 37, 0.85);
}

.contact-form {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.75rem;
  box-shadow: 0 4px 12px rgba(31, 46, 37, 0.05);
}
@media (min-width: 640px) { .contact-form { padding: 2rem; } }
.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-field label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(31, 46, 37, 0.65);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231f2e25' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.75rem;
  padding-right: 2rem;
}
.form-field textarea { resize: vertical; min-height: 100px; font-family: 'Inter', sans-serif; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45, 74, 58, 0.1);
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover { background: var(--forest-soft); }
.form-submit:disabled { opacity: 0.6; cursor: wait; }
.form-disclaimer {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(31, 46, 37, 0.5);
}

.toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
  z-index: 1000;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  max-width: 90vw;
  width: 400px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.toast-desc { font-size: 0.8rem; color: rgba(245, 239, 226, 0.8); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.footer-brand .italic { font-style: italic; font-weight: 400; }
.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(245, 239, 226, 0.6);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.footer-nav a {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 239, 226, 0.7);
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--terra); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 239, 226, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(245, 239, 226, 0.5);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom .italic { font-style: italic; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue-arrow { animation: none; }
}

/* WordPress core alignment */
.aligncenter { display: block; margin: 1rem auto; }
.alignleft { float: left; margin: 0 1rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1rem; }

/* WordPress caption */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; text-align: center; }
