/**
 * Favero's Hair Salon - Complete Stylesheet
 * Converted from Tailwind CSS design tokens to standard CSS
 */

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  --background: hsl(30, 25%, 97%);
  --foreground: hsl(220, 15%, 15%);
  --card: hsl(30, 20%, 95%);
  --card-foreground: hsl(220, 15%, 15%);
  --primary: hsl(30, 8%, 25%);
  --primary-foreground: hsl(30, 25%, 97%);
  --secondary: hsl(30, 15%, 90%);
  --secondary-foreground: hsl(220, 15%, 15%);
  --muted: hsl(30, 12%, 92%);
  --muted-foreground: hsl(220, 10%, 45%);
  --accent: hsl(35, 30%, 78%);
  --border: hsl(30, 15%, 88%);
  --input: hsl(30, 15%, 88%);
  --champagne: hsl(38, 40%, 82%);
  --champagne-foreground: hsl(220, 15%, 15%);
  --gold: hsl(40, 50%, 55%);
  --gold-foreground: hsl(30, 25%, 97%);
  --blush: hsl(10, 30%, 90%);
  --warm-white: hsl(35, 30%, 98%);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Raleway', system-ui, sans-serif;
  --radius: 0.75rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); line-height: 1.15; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: hsl(30, 10%, 55%); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ─── Layout ─── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.content-narrow { max-width: 48rem; margin-left: auto; margin-right: auto; }
.content-md { max-width: 56rem; margin-left: auto; margin-right: auto; }
.content-sm { max-width: 28rem; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }

/* ─── Section ─── */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.bg-secondary { background: var(--secondary); }
.bg-primary { background: var(--primary); }

/* ─── Typography ─── */
.text-muted { color: var(--muted-foreground); line-height: 1.7; }
.text-light { color: var(--primary-foreground); }
.text-light-muted { color: hsla(30, 25%, 97%, 0.7); margin-bottom: 2rem; }

.heading-lg { font-size: 1.875rem; font-weight: 600; margin-bottom: 1.5rem; }
.heading-md { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.heading-xl { font-size: 1.875rem; font-weight: 600; margin-bottom: 1.5rem; }
@media (min-width: 768px) {
  .heading-lg { font-size: 2.25rem; }
  .heading-xl { font-size: 3rem; }
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.6;
  margin-top: 2rem;
}
@media (min-width: 768px) { .quote { font-size: 1.5rem; } }

.text-stack { display: flex; flex-direction: column; gap: 1rem; }

/* ─── Section Heading ─── */
.section-heading { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label--light { color: var(--champagne); }
.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.15;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-desc { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.7; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn--round { border-radius: 9999px; }
.btn--sm { padding: 0.625rem 1.5rem; }
.btn--xs { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--primary { background: var(--primary); color: var(--primary-foreground); }
.btn--primary:hover { opacity: 0.9; }
.btn--champagne { background: var(--champagne); color: var(--champagne-foreground); }
.btn--champagne:hover { opacity: 0.9; }
.btn--outline { border: 1px solid hsla(220, 15%, 15%, 0.2); color: var(--foreground); }
.btn--outline:hover { background: var(--foreground); color: var(--background); }
.btn--outline-light { border: 1px solid hsla(30, 25%, 97%, 0.3); color: var(--primary-foreground); }
.btn--outline-light:hover { background: hsla(30, 25%, 97%, 0.1); }

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

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.link-gold:hover { opacity: 0.8; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsla(30, 25%, 97%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--foreground);
}
@media (min-width: 768px) { .site-logo { font-size: 1.875rem; } }
.site-logo img { max-height: 3rem; width: auto; }

.desktop-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link--active { color: var(--gold); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: flex; align-items: center; gap: 1rem; } }
.desktop-only { display: none; }
@media (min-width: 1024px) { .desktop-only { display: flex; } }

.mobile-controls { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .mobile-controls { display: none; } }

.mobile-menu-toggle { padding: 0.25rem; color: var(--foreground); }

.mobile-menu {
  display: none;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu--open { display: block; }
.mobile-menu-nav { display: flex; flex-direction: column; padding: 1rem 1.5rem; gap: 0.25rem; }
.mobile-menu-nav .nav-link { padding: 0.75rem 0; display: block; }

/* ─── Page Content (offset for fixed header) ─── */
.page-content { padding-top: 5rem; }

/* ─── Hero (Front Page) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero.hero-gradient-bg {
  background: linear-gradient(135deg, hsl(30, 8%, 18%) 0%, hsl(30, 10%, 22%) 25%, hsl(35, 12%, 26%) 50%, hsl(38, 15%, 24%) 75%, hsl(30, 8%, 20%) 100%);
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-glow-orb--champagne {
  top: 25%; left: 25%; width: 600px; height: 600px;
  background: hsla(38, 40%, 82%, 0.1);
}
.hero-glow-orb--gold {
  bottom: 25%; right: 16%; width: 400px; height: 400px;
  background: hsla(40, 50%, 55%, 0.08);
  filter: blur(100px);
}
.hero-glow-orb--blush {
  top: 50%; right: 33%; width: 300px; height: 300px;
  background: hsla(10, 30%, 90%, 0.1);
  filter: blur(80px);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(220, 15%, 15%, 0.8), hsla(220, 15%, 15%, 0.5), transparent);
}

/* About branded panel */
.about-branded-panel {
  background: linear-gradient(145deg, hsl(30, 8%, 22%) 0%, hsl(35, 12%, 28%) 50%, hsl(30, 10%, 20%) 100%);
}

/* Team photo placeholder */
.team-photo-placeholder {
  background: linear-gradient(135deg, hsl(30, 8%, 20%) 0%, hsl(35, 12%, 26%) 40%, hsl(38, 14%, 24%) 70%, hsl(30, 8%, 18%) 100%);
}

/* Footer social links stack */
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-content {
  position: relative;
  padding: 8rem 1.5rem;
  max-width: 36rem;
}
.hero-eyebrow {
  color: var(--champagne);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--champagne); }
@media (min-width: 768px) { .hero-headline { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-headline { font-size: 3.75rem; } }

.hero-lead {
  color: hsla(35, 30%, 98%, 0.8);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 28rem;
}

/* ─── Hero Banner (Sub-pages) ─── */
.hero-banner {
  padding: 6rem 0 6rem;
  background: var(--primary);
  color: var(--primary-foreground);
}
@media (min-width: 768px) { .hero-banner { padding: 8rem 0 8rem; } }
.hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-subtitle {
  color: hsla(30, 25%, 97%, 0.7);
  max-width: 32rem;
  margin: 0 auto;
}

/* ─── Cards ─── */
.card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
}
.card-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.card-stack { display: flex; flex-direction: column; gap: 1.5rem; }

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08); }
.feature-icon { color: var(--gold); margin-bottom: 1rem; }
.feature-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover { border-color: hsla(40, 50%, 55%, 0.4); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.service-name { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.service-price { color: var(--gold); font-weight: 500; font-size: 0.875rem; }

/* ─── Team Preview ─── */
.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) { .team-preview-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-preview-grid { grid-template-columns: repeat(5, 1fr); } }

.team-preview-item { text-align: center; }
.team-preview-avatar {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  overflow: hidden;
  background: hsla(38, 40%, 82%, 0.5);
}
.team-preview-avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.team-preview-item:hover .team-preview-avatar img { transform: scale(1.05); }
.team-preview-name { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; }
.team-preview-role {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.team-preview-spec { color: var(--muted-foreground); font-size: 0.75rem; margin-top: 0.5rem; line-height: 1.6; }

/* ─── Gallery Preview ─── */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .gallery-preview-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-preview-grid { grid-template-columns: repeat(6, 1fr); } }

.gallery-preview-item {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 0.5s;
}
.gallery-preview-item:hover img { transform: scale(1.05); }

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.stars { display: flex; gap: 0.25rem; }
.star-icon { color: var(--gold); }
.testimonial-date { color: var(--muted-foreground); font-size: 0.75rem; }
.testimonial-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.5rem; }
.testimonial-avatar {
  width: 1.5rem; height: 1.5rem;
  border-radius: 9999px;
  background: hsla(40, 50%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-name { font-family: var(--font-serif); font-weight: 600; font-size: 0.875rem; }

/* ─── Pricing Cards ─── */
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}
.pricing-card-header { background: var(--secondary); padding: 1.25rem 2rem; }
.pricing-card-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; }
.pricing-card-body { }
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  font-weight: 500;
}
.pricing-price { color: var(--gold); font-weight: 600; white-space: nowrap; margin-left: 1rem; }

/* ─── Callouts ─── */
.callout { border-radius: 1rem; padding: 2rem; margin-top: 2.5rem; }
.callout--champagne { background: hsla(38, 40%, 82%, 0.3); border: 1px solid var(--champagne); }
.callout--blush { background: var(--blush); border: 1px solid var(--blush); }
.callout-inner { display: flex; align-items: flex-start; gap: 1rem; }
.callout-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; }

/* ─── Team Page Cards ─── */
.team-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.team-card:hover { box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08); }
.team-card-inner { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .team-card-inner { flex-direction: row; align-items: flex-start; } }
.team-avatar {
  width: 6rem; height: 6rem;
  flex-shrink: 0;
  border-radius: 9999px;
  overflow: hidden;
  background: hsla(38, 40%, 82%, 0.5);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-info { flex: 1; }
.team-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; }
@media (min-width: 768px) { .team-name { font-size: 1.875rem; } }
.team-role {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0.25rem 0 1rem;
}
.team-specialties { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.tag {
  background: var(--secondary);
  color: var(--muted-foreground);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

/* ─── Two Column Grid ─── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .two-col-grid { grid-template-columns: 1fr 1fr; } }

.rounded-image { border-radius: 1rem; overflow: hidden; }
.rounded-image img { width: 100%; height: auto; object-fit: cover; }

/* ─── Gallery Page ─── */
.filter-bar { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.filter-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--secondary);
  color: var(--muted-foreground);
  transition: all 0.2s;
}
.filter-btn:hover { background: var(--accent); }
.filter-btn--active { background: var(--primary); color: var(--primary-foreground); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item { }
.gallery-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 0.5s;
}
.gallery-thumb:hover img { transform: scale(1.05); }

/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: hsla(220, 15%, 15%, 0.9);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox--open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--warm-white);
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--champagne); }
#lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

/* ─── Contact Page ─── */
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  background: hsla(38, 40%, 82%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  font-weight: 500;
}
.contact-value { font-weight: 600; color: var(--foreground); }
a.contact-item:hover .contact-value { color: var(--gold); }

.map-embed { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); margin-top: 2rem; }
.map-embed iframe { display: block; }

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}
@media (min-width: 768px) { .form-card { padding: 2.5rem; } }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: box-shadow 0.2s;
}
.form-input::placeholder { color: var(--muted-foreground); }
.form-input:focus { outline: none; box-shadow: 0 0 0 2px hsla(40, 50%, 55%, 0.5); }
.form-textarea { resize: none; }

/* ─── Footer ─── */
.site-footer { background: var(--primary); color: var(--primary-foreground); }
.site-footer .container { padding-top: 4rem; padding-bottom: 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 600; margin-bottom: 1rem; }
.footer-text { color: hsla(30, 25%, 97%, 0.7); font-size: 0.875rem; line-height: 1.7; }
.footer-heading { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 1rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.875rem;
  color: hsla(30, 25%, 97%, 0.7);
  transition: color 0.2s;
  display: block;
}
.footer-link:hover { color: var(--champagne); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(30, 25%, 97%, 0.7);
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--champagne); }
.footer-contact-item svg { flex-shrink: 0; }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(30, 25%, 97%, 0.7);
  transition: color 0.2s;
}
.footer-social:hover { color: var(--champagne); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(30, 25%, 97%, 0.1);
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: hsla(30, 25%, 97%, 0.5); }

/* ─── Post Cards ─── */
.post-card {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.post-card h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.post-card h2 a { transition: color 0.2s; }
.post-card h2 a:hover { color: var(--gold); }
.post-meta { font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.post-excerpt { color: var(--muted-foreground); line-height: 1.7; }
.post-featured-image { border-radius: 1rem; overflow: hidden; margin-bottom: 2rem; }
.post-featured-image img { width: 100%; height: auto; }

.page-body { line-height: 1.8; color: var(--foreground); }
.page-body p { margin-bottom: 1.25rem; }
.page-body h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.page-body h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.page-body img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ─── Scroll Animations ─── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── WordPress specific ─── */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.5rem; }
