/* ============================================================
   Simpson Productions — Main Stylesheet
   css/style.css
   ============================================================ */

/* --- Google Fonts (loaded in header.php <head>) ---
   Playfair Display: headings
   Lora: body text
   Inter: labels, nav, UI
   --------------------------------------------------- */

/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
  --cream: #F7EEDF;
  --cream-dark: #EBDECA;
  --warm-white: #FDF6EC;
  --dusty-rose: #C4918A;
  --dusty-rose-light: #E8CEC9;
  --dusty-rose-pale: #F3E4E1;
  --dusty-rose-deep: #A87078;
  --gold: #C9A96E;
  --gold-light: #E5D5B0;
  --gold-pale: #F0E8D5;
  --sage: #9CAF93;
  --sage-light: #C8D5C0;
  --charcoal: #3A3335;
  --warm-gray: #6B5E62;
  --light-gray: #B5A8AB;
  --text-body: #4A3F42;
  --shadow-soft: 0 2px 20px rgba(58,51,53,0.08);
  --shadow-medium: 0 4px 30px rgba(58,51,53,0.12);
  --shadow-hover: 0 8px 40px rgba(58,51,53,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }


/* ==========================================================
   NAVIGATION
   ========================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,252,247,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,51,53,0.08);
  transition: box-shadow 0.3s ease, background 0.4s ease;
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(58,51,53,0.1);
  background: rgba(255,253,250,0.98);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.35rem 2rem;
  transition: padding 0.4s ease;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 80px;
  width: auto;
  transition: height 0.4s ease;
}

/* Shrunk state on scroll */
nav.scrolled .nav-inner { padding: 0.15rem 2rem; }
nav.scrolled .nav-logo img { height: 48px; }
.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--dusty-rose);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--charcoal); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ==========================================================
   PAGE HERO BANNER (About / Contact inner pages)
   ========================================================== */
.page-hero {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A3F42 50%, #5C4A4F 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
}
.page-hero .subtitle {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  position: relative;
}
.hero-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--dusty-rose), var(--gold));
  margin: 1.25rem auto 0;
  border-radius: 2px;
  position: relative;
}


/* ==========================================================
   SHARED SECTION STYLES
   ========================================================== */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dusty-rose);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-header p {
  max-width: 650px; margin: 0 auto;
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--dusty-rose), var(--gold));
  margin: 1.25rem auto 0;
  border-radius: 2px;
}


/* ==========================================================
   HOMEPAGE — HERO BOOK SHOWCASE
   ========================================================== */
.hero {
  margin-top: 68px;
  position: relative;
  z-index: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A3F42 40%, #5C4A4F 100%);
  overflow: hidden;
  padding: 5rem 2rem;
  min-height: 520px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* Left — static text */
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.hero-text h1 em {
  color: var(--dusty-rose-light);
  font-style: italic;
}
.hero-text p {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 420px;
}
.hero-text .cta-btn {
  font-size: 0.78rem;
}

/* Right — book showcase */
.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.showcase-book {
  position: absolute;
  opacity: 0;
  transform: scale(0.93) translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.showcase-book.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.showcase-book img {
  max-height: 400px;
  width: auto;
  border-radius: 4px;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.2),
    8px 8px 0 rgba(0,0,0,0.08);
}

/* Subtle glow behind active book */
.hero-showcase::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(196,145,138,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}
.slide-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent; cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.slide-dots button.active {
  background: var(--dusty-rose);
  border-color: var(--dusty-rose);
  transform: scale(1.2);
}
.slide-dots button:hover {
  border-color: rgba(255,255,255,0.6);
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero { padding: 3rem 1.25rem; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-showcase { height: 300px; }
  .showcase-book img { max-height: 280px; }
  .slide-dots { position: relative; bottom: auto; margin-top: 1.5rem; }
}


/* ==========================================================
   HOMEPAGE — INTRO STRIP
   ========================================================== */
.intro-strip {
  background: var(--warm-white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 4rem 2rem;
  text-align: center;
}
.intro-strip .tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--charcoal);
  font-weight: 400;
  max-width: 750px; margin: 0 auto 1.5rem;
  line-height: 1.5;
}
.intro-strip .tagline em { color: var(--dusty-rose); font-style: italic; }
.intro-strip .sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}


/* ==========================================================
   HOMEPAGE — SERVICE CARDS
   ========================================================== */
.services-overview { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--dusty-rose-light);
}
.service-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.service-card:nth-child(1) .service-icon { background: var(--dusty-rose-pale); }
.service-card:nth-child(2) .service-icon { background: var(--gold-pale); }
.service-card:nth-child(3) .service-icon { background: var(--sage-light); }
.service-card:nth-child(4) .service-icon { background: var(--dusty-rose-pale); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.7;
}


/* ==========================================================
   HOMEPAGE — PORTFOLIO GRIDS
   ========================================================== */
.portfolio-section { background: var(--warm-white); }
.portfolio-section:nth-of-type(even) { background: var(--cream); }

.portfolio-grid {
  display: grid; gap: 1.25rem;
}
.portfolio-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.portfolio-grid.cols-3 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.portfolio-grid.cols-4 {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  cursor: pointer;
}
.portfolio-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img {
  transform: scale(1.03);
}

/* Book Covers (portrait) */
.covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cover-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--cream-dark);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  cursor: pointer;
}
.cover-item:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: var(--shadow-hover);
}
.cover-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cover-item:hover img {
  transform: scale(1.03);
}

/* Full spread covers (front + back) */
.covers-spread-grid {
  margin-top: 2rem;
}
.covers-spread-grid .portfolio-item {
  aspect-ratio: 3/2;
}

/* Sub-divider between grids within a section */
.portfolio-sub-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--dusty-rose), var(--gold));
  margin: 3rem auto;
  border-radius: 2px;
}


/* ==========================================================
   HOMEPAGE — TRANSCRIPTION CTA
   ========================================================== */
.transcription-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A3F42 50%, #5C4A4F 100%);
  color: #fff;
  text-align: center;
}
.transcription-section .section-label { color: var(--gold-light); }
.transcription-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600; color: #fff;
  margin-bottom: 1.25rem;
}
.transcription-section p {
  max-width: 650px; margin: 0 auto 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem; line-height: 1.8;
}


/* ==========================================================
   SHARED CTA BUTTON
   ========================================================== */
.cta-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  background: var(--gold-light);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.cta-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}


/* ==========================================================
   ABOUT PAGE — CONTENT
   ========================================================== */
.about-section {
  background: var(--warm-white);
}
.about-inner {
  max-width: 820px; margin: 0 auto;
}
.about-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
}
.about-lead em { color: var(--dusty-rose); font-style: italic; }

.about-body {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
}
.about-body p { margin-bottom: 1.5rem; }

.about-highlight {
  background: var(--cream);
  border-left: 3px solid var(--dusty-rose);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}


/* ==========================================================
   ABOUT PAGE — VALUES STRIP
   ========================================================== */
.values-strip {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.values-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.value-item .value-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.value-item:nth-child(1) .value-icon { background: var(--dusty-rose-pale); }
.value-item:nth-child(2) .value-icon { background: var(--gold-pale); }
.value-item:nth-child(3) .value-icon { background: var(--sage-light); }

.value-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 280px; margin: 0 auto;
}


/* ==========================================================
   ABOUT PAGE — TESTIMONIALS
   ========================================================== */
.testimonials-section { background: var(--warm-white); }
.testimonials-inner { max-width: 1000px; margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--dusty-rose-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1.25rem;
}
.author-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--dusty-rose-light);
}
.author-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}
.author-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--light-gray);
  font-style: normal;
}


/* ==========================================================
   ABOUT PAGE — CTA BAND
   ========================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, #4A3F42 50%, #5C4A4F 100%);
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff; font-weight: 400;
  margin-bottom: 0.75rem;
}
.cta-band h2 em { color: var(--dusty-rose-light); font-style: italic; }
.cta-band p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}


/* ==========================================================
   CONTACT PAGE — LAYOUT
   ========================================================== */
.contact-section { background: var(--warm-white); }
.contact-inner {
  max-width: 1050px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* Form */
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--charcoal);
  font-weight: 600; margin-bottom: 0.5rem;
}
.contact-form-wrap .form-subtitle {
  font-size: 1rem;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: var(--dusty-rose); margin-left: 2px; }

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--text-body);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 0.9rem 1.15rem;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--dusty-rose-light);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(196,145,138,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light-gray);
  font-style: italic;
}
.form-group textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.7;
}

/* Honeypot — visually hidden */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.submit-btn {
  display: inline-flex;
  align-items: center; gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  background: var(--dusty-rose);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.submit-btn:hover {
  background: var(--dusty-rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196,145,138,0.35);
}
.submit-btn svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Sidebar info cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.info-card:hover { box-shadow: var(--shadow-soft); }

.info-card .info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.info-card:nth-child(1) .info-icon { background: var(--dusty-rose-pale); }
.info-card:nth-child(2) .info-icon { background: var(--gold-pale); }
.info-card:nth-child(3) .info-icon { background: var(--sage-light); }

.info-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light-gray);
  margin-bottom: 0.6rem;
}
.info-card a,
.info-card p.info-value {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  text-decoration: none;
  line-height: 1.6;
  display: block;
}
.info-card a:hover { color: var(--dusty-rose); }
.info-card .secondary {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-top: 0.25rem;
}

.response-note {
  background: linear-gradient(135deg, var(--cream), var(--gold-pale));
  border: 1px solid var(--gold-light);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  text-align: center;
}
.response-note p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.response-note strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* Form flash messages */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}
.form-message.success {
  background: var(--sage-light);
  color: #2d5a27;
  border: 1px solid var(--sage);
}
.form-message.error {
  background: var(--dusty-rose-pale);
  color: #8b3a3a;
  border: 1px solid var(--dusty-rose-light);
}


/* ==========================================================
   LIGHTBOX
   ========================================================== */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(58,51,53,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.4);
  transform: scale(0.92);
  transition: transform 0.35s ease;
}
.lightbox-overlay.active img {
  transform: scale(1);
}

/* Close button */
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* Prev / Next arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}

/* Counter */
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; font-size: 1.1rem; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
}


/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand .footer-logo-text span { color: var(--dusty-rose-light); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--dusty-rose-light); }
.footer-col .footer-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-sidebar { order: -1; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0.75rem 1.25rem; }
  .nav-links { 
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  section { padding: 3.5rem 1.25rem; }
  .hero { height: 60vh; min-height: 400px; }
  .page-hero { padding: 3.5rem 1.25rem; }
  .values-inner { grid-template-columns: 1fr; gap: 2rem; }
  .covers-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom {
    flex-direction: column; gap: 0.5rem; text-align: center;
  }
}