/* ===== CSS VARIABLES ===== */
:root {
  --white: #fefcfa;
  --blush: #e8c4c4;
  --camel: #8B7355;
  --rose: #7D5454;
  --text: #2c2424;
  --light: #f9f5f2;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

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

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

/* ===== SKIP NAV ===== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--text);
  color: var(--white);
  padding: 12px 24px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 0;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

/* Remove default focus ring when not using keyboard */
:focus:not(:focus-visible) {
  outline: none;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(254, 252, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 28px;
  box-shadow: 0 1px 20px rgba(44, 36, 36, 0.06);
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s ease;
}

.nav.scrolled .nav-logo {
  color: var(--text);
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 102;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1px;
}

.nav.scrolled .nav-hamburger span {
  background: var(--text);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu overlay */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: right 0.5s var(--transition-smooth);
  z-index: 101;
}

.nav-menu.open {
  right: 0;
}

.nav-menu a {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--rose);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 36, 36, 0.35) 0%,
    rgba(44, 36, 36, 0.45) 40%,
    rgba(44, 36, 36, 0.40) 60%,
    rgba(44, 36, 36, 0.50) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 720px;
}

.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 2.5vw, 17px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.92;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.25);
}

.hero-stats {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.25);
}

.hero-stats span {
  margin: 0 6px;
  opacity: 0.5;
}

.btn-primary {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 44px;
  background: #8A5C5C;
  color: var(--white);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: #6B4747;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(158, 107, 107, 0.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  animation: scrollHint 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 300;
}

.hero-scroll-hint svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}

@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION SHARED ===== */
.section {
  padding: 80px 24px;
}

.section-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 15px;
  color: var(--rose);
  text-align: center;
  max-width: 440px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== BOOK NOW SECTION ===== */
.book-section {
  background: var(--light);
}

.book-layout {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.book-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(44, 36, 36, 0.06), 0 0 0 1px rgba(196, 168, 130, 0.1);
  overflow: hidden;
}

.book-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.book-card-left {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(196, 168, 130, 0.15);
}

.book-card-left h3 {
  font-family: 'Lora', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.book-card-left h3 em {
  font-style: italic;
  color: var(--rose);
}

.book-card-tagline {
  font-size: 14px;
  color: var(--rose);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}

.book-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.book-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.book-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.book-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--camel);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.book-divider {
  width: 40px;
  height: 1px;
  background: var(--camel);
  opacity: 0.4;
}

.book-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--rose);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.book-trust svg {
  width: 14px;
  height: 14px;
  stroke: var(--camel);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.book-card-right {
  padding: 8px;
  display: flex;
  align-items: stretch;
}

.book-card-right iframe {
  border-radius: 8px;
  background: var(--white);
  flex: 1;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .book-card-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .book-card-left {
    border-right: none;
    border-bottom: 1px solid rgba(196, 168, 130, 0.15);
    padding: 36px 28px;
  }

  .book-card-right {
    padding: 8px;
  }

  .book-card-right iframe {
    height: 640px;
  }
}

/* Wider screens: more breathing room */
@media (min-width: 1280px) {
  .book-layout {
    max-width: 960px;
  }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--white);
  padding-bottom: 60px;
}

.masonry {
  max-width: 1200px;
  margin: 0 auto;
  columns: 1;
  column-gap: 14px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--transition-smooth);
}

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0 rgba(158, 107, 107, 0);
  transition: box-shadow 0.4s ease;
  border-radius: 4px;
  pointer-events: none;
}

.masonry-item:hover img {
  transform: scale(1.03);
}

.masonry-item:hover::after {
  box-shadow: inset 0 0 0 2px rgba(158, 107, 107, 0.25), 0 12px 40px rgba(44, 36, 36, 0.1);
}

@media (min-width: 520px) {
  .masonry { columns: 2; }
}

@media (min-width: 900px) {
  .masonry { columns: 3; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(254, 252, 250, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 1002;
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--text);
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}

.lightbox-close:hover svg {
  stroke: var(--rose);
}

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(44, 36, 36, 0.12);
  transition: opacity 0.3s ease;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid rgba(232, 196, 196, 0.4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1001;
}

.lightbox-nav:hover {
  background: var(--light);
  box-shadow: 0 4px 20px rgba(44, 36, 36, 0.08);
}

.lightbox-nav svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  stroke-width: 1.5;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--rose);
}

@media (max-width: 600px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--light);
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  border: 1px solid #C4A0A0;
  padding: 20px 16px 8px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 2px;
  -webkit-appearance: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(232, 196, 196, 0.15);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--camel);
  pointer-events: none;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.form-group textarea ~ label {
  top: 20px;
  transform: translateY(0);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  transform: translateY(0);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.btn-submit {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 44px;
  background: #8A5C5C;
  color: var(--white);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  align-self: center;
}

.btn-submit:hover {
  background: #6B4747;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(158, 107, 107, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(196, 168, 130, 0.15);
}

.footer-socials {
  margin-bottom: 16px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, 0.3);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-socials a:hover {
  border-color: var(--rose);
  background: rgba(158, 107, 107, 0.06);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: var(--text);
  transition: fill 0.3s ease;
}

.footer-socials a:hover svg {
  fill: var(--rose);
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--camel);
}

/* ===== MOBILE STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid rgba(232, 196, 196, 0.3);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: none;
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 -4px 20px rgba(44, 36, 36, 0.06);
}

.sticky-cta.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-cta-btn {
  display: block;
  width: 100%;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px;
  background: #8A5C5C;
  color: var(--white);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease;
}

.sticky-cta-btn:hover {
  background: #6B4747;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }

  .section {
    padding: 64px 20px;
  }

  .hero-content {
    padding: 0 20px;
  }

  body {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (min-width: 768px) {
  .section {
    padding: 100px 40px;
  }

  .nav {
    padding: 24px 40px;
  }

  .nav.scrolled {
    padding: 16px 40px;
  }
}

@media (min-width: 1280px) {
  .section {
    padding: 120px 60px;
  }

  .nav {
    padding: 28px 60px;
  }

  .nav.scrolled {
    padding: 18px 60px;
  }
}

/* ===== DESKTOP NAVIGATION BAR ===== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.nav-desktop a:hover {
  opacity: 1;
  color: var(--blush);
}

.nav.scrolled .nav-desktop a {
  color: var(--text);
}

.nav.scrolled .nav-desktop a:hover {
  color: var(--rose);
}

@media (min-width: 769px) {
  .nav-desktop {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }
}

/* ===== FORM VALIDATION ===== */
.form-error {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #c0392b;
}

.form-group.has-error .form-error {
  display: block;
}

/* ===== GALLERY KEYBOARD ACCESS ===== */
.masonry-item:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg img {
    will-change: auto;
  }
}

/* ===== BLOG CARD GRID ===== */
.blog-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(44, 36, 36, 0.06), 0 0 0 1px rgba(196, 168, 130, 0.1);
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 36, 36, 0.1), 0 0 0 1px rgba(196, 168, 130, 0.15);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-category {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--rose);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--camel);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-meta-sep {
  opacity: 0.4;
}

/* ===== BLOG LISTING CTA ===== */
.blog-cta {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.blog-cta-title {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.blog-cta-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--rose);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===== BLOG POST — SINGLE ARTICLE ===== */
.blog-post {
  max-width: 100%;
}

.blog-post-header {
  background: var(--light);
  padding: 140px 24px 60px;
  text-align: center;
}

.blog-post-header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post-back {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.blog-post-back:hover {
  color: var(--rose);
}

.blog-post-category {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 16px;
}

.blog-post-title {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-post-meta {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--camel);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-post-meta-sep {
  opacity: 0.4;
}

/* Featured image */
.blog-post-featured {
  max-width: 900px;
  margin: -30px auto 0;
  padding: 0 24px;
}

.blog-post-featured img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(44, 36, 36, 0.1);
}

/* Post body — magazine-style article */
.blog-post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.85;
}

.blog-post-body h2 {
  font-family: 'Lora', serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 500;
  color: var(--text);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.blog-post-body h3 {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin: 36px 0 12px;
  line-height: 1.3;
}

.blog-post-body p {
  margin-bottom: 24px;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 24px 24px;
}

.blog-post-body li {
  margin-bottom: 8px;
}

.blog-post-body a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.blog-post-body a:hover {
  color: var(--camel);
}

.blog-post-body blockquote {
  border-left: 3px solid var(--blush);
  margin: 32px 0;
  padding: 16px 24px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--rose);
  line-height: 1.7;
  background: var(--light);
  border-radius: 0 4px 4px 0;
}

.blog-post-body img {
  border-radius: 6px;
  margin: 32px 0;
}

/* Social share buttons */
.blog-post-share {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(196, 168, 130, 0.2);
  padding-top: 32px;
}

.blog-post-share-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--camel);
  white-space: nowrap;
}

.blog-post-share-buttons {
  display: flex;
  gap: 10px;
}

.blog-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, 0.3);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.blog-share-btn:hover {
  border-color: var(--rose);
  background: rgba(158, 107, 107, 0.06);
}

.blog-share-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--text);
  transition: fill 0.3s ease;
}

.blog-share-btn:hover svg {
  fill: var(--rose);
}

/* Related posts */
.blog-related {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 60px;
}

.blog-related-title {
  font-family: 'Lora', serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 32px;
}

.blog-grid-related {
  max-width: 900px;
}

/* Book CTA at bottom of post */
.blog-book-cta {
  background: var(--light);
  padding: 80px 24px;
}

.blog-book-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.blog-book-cta-title {
  font-family: 'Lora', serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.blog-book-cta-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--rose);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===== BODY LOCK (menu open) ===== */
body.menu-open {
  overflow: hidden;
}

/* ===== LEAD MAGNET MODAL ===== */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(44, 36, 36, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lead-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lead-modal {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(44, 36, 36, 0.18), 0 0 0 1px rgba(196, 168, 130, 0.1);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  position: relative;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s var(--transition-smooth);
}

.lead-modal-overlay.active .lead-modal {
  transform: translateY(0) scale(1);
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--camel);
  transition: color 0.3s ease;
}

.lead-modal-close:hover {
  color: var(--rose);
}

.lead-modal-close svg {
  width: 20px;
  height: 20px;
}

.lead-modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.lead-modal-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--camel);
}

.lead-modal-title {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.lead-modal-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--rose);
  line-height: 1.7;
  margin-bottom: 28px;
  padding: 0 8px;
}

.lead-modal-desc em {
  font-style: italic;
  font-weight: 400;
}

.lead-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.lead-modal-field {
  position: relative;
}

.lead-modal-field input {
  width: 100%;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  border: 1px solid #C4A0A0;
  padding: 20px 16px 8px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 2px;
  -webkit-appearance: none;
}

.lead-modal-field input:focus {
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(232, 196, 196, 0.15);
}

.lead-modal-field label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--camel);
  pointer-events: none;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.lead-modal-field input:focus ~ label,
.lead-modal-field input:not(:placeholder-shown) ~ label {
  top: 6px;
  transform: translateY(0);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}

.lead-modal-submit {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 44px;
  background: #8A5C5C;
  color: var(--white);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 4px;
}

.lead-modal-submit:hover {
  background: #6B4747;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(158, 107, 107, 0.3);
}

.lead-modal-dismiss {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--camel);
  letter-spacing: 0.5px;
  padding: 8px;
  transition: color 0.3s ease;
}

.lead-modal-dismiss:hover {
  color: var(--rose);
}

/* Lead modal success state */
.lead-modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.lead-modal-success.visible {
  display: block;
}

.lead-modal-success h3 {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.lead-modal-success p {
  font-size: 14px;
  font-weight: 300;
  color: var(--rose);
  line-height: 1.7;
}

@media (max-width: 480px) {
  .lead-modal {
    padding: 32px 20px 24px;
  }

  .lead-modal-title {
    font-size: 20px;
  }

  .lead-modal-desc {
    font-size: 13px;
    padding: 0;
  }
}
