/* ============================================================
   HOME.CSS — Complete Redesign v2
   Soft Luxury · Warm · Personal · Editorial
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --cream: #FAF7F2;
  --beige: #F0E8D8;
  --warm: #E8D5B7;
  --brown: #4A2C0A;
  --brown-lt: #7B5135;
  --gold: #C8963E;
  --gold-lt: #E6B96A;
  --text: #3D2B1F;
  --text-muted: #8B6B52;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(74, 44, 10, 0.08);
  --shadow-md: 0 8px 40px rgba(74, 44, 10, 0.12);
  --shadow-lg: 0 20px 60px rgba(74, 44, 10, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset for home body ───────────────────────────────────── */
.body-home {
  background: var(--cream);
}

/* ── Scroll Progress ───────────────────────────────────────── */
#home-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ══════════════════════════════════════════════════════════════
   CLEAN PHOTO HERO — No Text, Main + Thumbnails
══════════════════════════════════════════════════════════════ */

/* Section wrapper */
.h-hero-photo {
  background: var(--beige);
  padding: 20px 0 24px;
}

/* ── Large Main Photo ── */
.h-photo-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
  border-radius: 12px;
}

.h-photo-main__img {
  width: 100%;
  display: block;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  transition: transform 0.6s ease;
}

.h-photo-main__img:hover {
  transform: scale(1.01);
}

.h-photo-main__placeholder {
  width: 100%;
  height: 540px;
  background: var(--beige);
  border-radius: 12px;
}

/* ── Thumbnail Row ── */
.h-photo-thumbs {
  max-width: 1240px;
  margin: 12px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.h-photo-thumb {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.h-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease, filter 0.3s ease;
  filter: brightness(0.88);
}

.h-photo-thumb:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.h-photo-thumb.active img {
  filter: brightness(1);
}

/* Responsive */
@media (max-width: 900px) {
  .h-photo-main__img,
  .h-photo-main__placeholder {
    height: 340px;
  }
  .h-photo-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .h-hero-photo {
    padding: 12px 0 16px;
  }
  .h-photo-main {
    padding: 0 12px;
  }
  .h-photo-main__img,
  .h-photo-main__placeholder {
    height: 240px;
  }
  .h-photo-thumbs {
    padding: 0 12px;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* ══════════════════════════════════════════════════════════════
   NEW EDITORIAL HERO — Full-Width Magazine Layout
══════════════════════════════════════════════════════════════ */

.h-hero-new {
  background: var(--brown);
  width: 100%;
}

/* ── Main Photo Frame ── */
.h-hero-new__main {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.h-hero-new__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}

.h-hero-new:hover .h-hero-new__bg-img {
  transform: scale(1.03);
}

/* ── Gradient Overlay ── */
.h-hero-new__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 12, 4, 0.08) 0%,
    rgba(30, 12, 4, 0.18) 30%,
    rgba(30, 12, 4, 0.55) 65%,
    rgba(30, 12, 4, 0.82) 100%
  );
  pointer-events: none;
}

/* ── Content Block (overlaid on photo) ── */
.h-hero-new__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 56px;
  box-sizing: border-box;
}

/* Eyebrow tag */
.h-hero-new__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(200, 150, 62, 0.35);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  width: fit-content;
}

.h-hero-new__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-lt);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

/* Main heading */
.h-hero-new__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  max-width: 750px;
}

.h-hero-new__heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-lt);
  display: block;
}

/* Sub-paragraph */
.h-hero-new__para {
  font-family: 'Lora', serif;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 32px;
}

/* ── CTA Buttons ── */
.h-hero-new__ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.h-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  border-radius: 8px;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  box-shadow: 0 8px 28px rgba(200, 150, 62, 0.45);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.h-hero-btn-primary:hover {
  background: #b8851f;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(200, 150, 62, 0.55);
  color: #fff;
}

.h-hero-btn-primary svg {
  transition: transform 0.2s ease;
}

.h-hero-btn-primary:hover svg {
  transform: translateX(4px);
}

.h-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.h-hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Stats Strip (overlaid bottom) ── */
.h-hero-new__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  padding: 16px 28px;
  width: fit-content;
  gap: 28px;
}

.h-hero-new__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.h-hero-new__stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.h-hero-new__stat span {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: var(--gold-lt);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.h-hero-new__stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   HERO THUMBNAIL STRIP
══════════════════════════════════════════════════════════════ */
.h-hero-new__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #1a0d05;
}

.h-hero-new__thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  border-right: 2px solid rgba(255,255,255,0.06);
}

.h-hero-new__thumb:last-child {
  border-right: none;
}

.h-hero-new__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.72) saturate(0.85);
  transition: filter 0.4s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.h-hero-new__thumb:hover img {
  filter: brightness(1) saturate(1.1);
  transform: scale(1.06);
}

.h-hero-new__thumb-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,4,0,0.5) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.h-hero-new__thumb:hover .h-hero-new__thumb-shine {
  opacity: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .h-hero-new__main {
    height: 72vh;
    min-height: 440px;
  }
  .h-hero-new__content {
    padding: 0 24px 40px;
  }
  .h-hero-new__heading {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .h-hero-new__strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .h-hero-new__main {
    height: 80vh;
    min-height: 420px;
  }
  .h-hero-new__content {
    padding: 0 20px 32px;
  }
  .h-hero-new__heading {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }
  .h-hero-new__para {
    font-size: 0.95rem;
  }
  .h-hero-new__stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 14px 20px;
  }
  .h-hero-new__stat-div {
    display: none;
  }
  .h-hero-new__ctas {
    gap: 12px;
  }
  .h-hero-btn-primary,
  .h-hero-btn-outline {
    padding: 12px 24px;
    font-size: 0.68rem;
  }
  .h-hero-new__strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════════
   2. INTRO HERO — Compact Split Layout
══════════════════════════════════════════════════════════════ */
.h-intro {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F3E9 40%, #E8D5B7 100%);
  box-sizing: border-box;
}

.h-intro .h-container {
  width: 100%;
}

.h-intro__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* ── Left Column ── */
.h-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  background: rgba(200, 150, 62, 0.08);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(200, 150, 62, 0.18);
  width: fit-content;
}

.h-intro__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.h-intro__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--brown);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.h-intro__heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
}

.h-intro__para {
  font-family: 'Lora', serif;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
  opacity: 0.9;
  max-width: 480px;
  margin-bottom: 38px;
  border-left: 3px solid rgba(200, 150, 62, 0.35);
  padding-left: 18px;
}

.h-intro__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(200, 150, 62, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(4px);
  width: fit-content;
}

.h-intro__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.h-intro__stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  letter-spacing: -0.5px;
}

.h-intro__stat span {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.h-intro__stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(200, 150, 62, 0.35), transparent);
  flex-shrink: 0;
}

/* CTA Buttons */
.h-intro__ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.h-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brown), #2c1a0e);
  color: #F5ECD7;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  box-shadow: 0 10px 30px rgba(74, 44, 10, 0.15);
}

.h-btn-primary:hover {
  background: linear-gradient(135deg, #2c1a0e, var(--brown));
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(74, 44, 10, 0.25);
  color: #fff;
}

.h-btn-primary svg {
  transition: transform 0.2s;
}

.h-btn-primary:hover svg {
  transform: translateX(4px);
}

.h-btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 8px;
  background: transparent;
  color: var(--brown);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--brown);
  transition: var(--transition);
}

.h-btn-outline-hero:hover {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
  transform: translateY(-3px);
}

/* Keep old ghost for other sections */
.h-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.h-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   PHOTO COLLAGE — Right Column
══════════════════════════════════════════════════════════════ */
.h-intro__right {
  position: relative;
}

.h-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
  position: relative;
}

.h-collage__item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--beige);
  box-shadow: 0 6px 24px rgba(74, 44, 10, 0.10);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.h-collage__item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(74, 44, 10, 0.16);
  z-index: 2;
}

.h-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.97) contrast(1.02) saturate(1.05);
  transition: transform 0.6s ease;
}

.h-collage__item:hover img {
  transform: scale(1.07);
}

/* Shimmer overlay — makes low-quality photos look cleaner */
.h-collage__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%,
      rgba(74, 44, 10, 0.04) 100%);
  pointer-events: none;
  border-radius: 14px;
}

/* Layout size variants */
.h-collage__img--tall {
  grid-row: span 2;
}

.h-collage__img--wide {
  grid-column: span 2;
}

.h-collage__img--square {
  grid-row: span 1;
  grid-column: span 1;
}

/* Decorative elements */
.h-collage__deco {
  position: absolute;
  pointer-events: none;
}

.h-collage__deco--ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(200, 150, 62, 0.3);
  bottom: -20px;
  left: -20px;
  animation: pulse-ring 4s ease-in-out infinite;
}

.h-collage__deco--dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-lt);
  top: -10px;
  right: 30px;
  opacity: 0.6;
  animation: floatDot 3s ease-in-out infinite;
}

@keyframes pulse-ring {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ══════════════════════════════════════════════════════════════
   3. SHARED SECTION STYLES
══════════════════════════════════════════════════════════════ */
.h-section {
  padding: 100px 0;
}

.h-section--beige {
  background: var(--beige);
}

.h-section--cream {
  background: var(--cream);
}

.h-section--white {
  background: var(--white);
}

.h-section__header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 64px;
}

.h-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.h-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.h-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 0;
}

.h-title em {
  font-style: italic;
  color: var(--gold);
}

.h-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 560px;
}

#reflections .h-subtitle {
  max-width: none;
}

.h-section__header--center {
  text-align: center;
}

.h-section__header--center .h-label {
  justify-content: center;
}

.h-section__header--center .h-label::before {
  display: none;
}

.h-section__header--center .h-subtitle {
  margin: 16px auto 0;
}

.h-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Reveal animation */
.h-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.h-reveal.delay-1 {
  transition-delay: 0.1s;
}

.h-reveal.delay-2 {
  transition-delay: 0.2s;
}

.h-reveal.delay-3 {
  transition-delay: 0.3s;
}

/* ══════════════════════════════════════════════════════════════
   4. EDITORIAL BLOG SECTION — Magazine Style
══════════════════════════════════════════════════════════════ */
.h-blog__editorial {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ── Hero Post ─────────────────────────────────────────────── */
.h-blog__hero-post {
  display: block;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(74, 44, 10, 0.09);
  border: 1px solid rgba(74, 44, 10, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.h-blog__hero-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(74, 44, 10, 0.14);
}

.h-blog__hero-fig {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--beige);
  line-height: 0;
}

.h-blog__hero-fig img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.h-blog__hero-post:hover .h-blog__hero-fig img {
  transform: scale(1.03);
}

.h-blog__hero-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--beige);
  color: var(--warm);
}

.h-blog__hero-body {
  padding: 44px 52px 52px;
}

/* ── Secondary Cards Grid ──────────────────────────────────── */
.h-blog__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.h-blog__card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(74, 44, 10, 0.07);
  border: 1px solid rgba(74, 44, 10, 0.05);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

.h-blog__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(74, 44, 10, 0.13);
  border-color: rgba(200, 150, 62, 0.22);
}

.h-blog__card-fig {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--beige);
  flex-shrink: 0;
  line-height: 0;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Black background when figure contains a video */
.h-blog__card-fig:has(video) {
  background: #000;
}

.h-blog__card-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--beige);
}

.h-blog__card-video {
  background: #000;
  object-fit: contain;
}

.h-blog__play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(74, 44, 10, 0.16);
  z-index: 2;
  transition: opacity 0.25s ease;
}

.h-blog__card:hover .h-blog__play {
  opacity: 0;
}

.h-blog__card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--beige);
  color: var(--warm);
}

.h-blog__card-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

/* ── Shared: Category Badge ────────────────────────────────── */
.h-blog__cat-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(58, 34, 8, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FAF7F2;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: background 0.35s ease, color 0.35s ease;
  z-index: 2;
}

.h-blog__hero-post:hover .h-blog__cat-badge,
.h-blog__card:hover .h-blog__cat-badge {
  background: var(--gold);
  color: var(--white);
}

/* ── Shared: Post Meta ─────────────────────────────────────── */
.h-blog__post-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.h-blog__post-date {
  color: var(--gold);
}

.h-blog__post-read::before {
  content: '·';
  margin: 0 10px;
  color: var(--warm);
  font-size: 0.9rem;
}

/* ── Shared: Titles ────────────────────────────────────────── */
.h-blog__hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.28;
  margin: 0 0 20px;
  transition: color 0.3s ease;
}

.h-blog__hero-post:hover .h-blog__hero-title {
  color: var(--gold);
}

.h-blog__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.4;
  margin: 0 0 12px;
  transition: color 0.3s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.h-blog__card:hover .h-blog__card-title {
  color: var(--gold);
}

/* ── Shared: Excerpt ───────────────────────────────────────── */
.h-blog__post-excerpt {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin: 0 0 30px;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Shared: Read Link ─────────────────────────────────────── */
.h-blog__post-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.3px;
  transition: color 0.3s ease, gap 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
}

.h-blog__post-link svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.h-blog__hero-post:hover .h-blog__post-link,
.h-blog__card:hover .h-blog__post-link {
  color: var(--gold);
  gap: 14px;
}

.h-blog__hero-post:hover .h-blog__post-link svg,
.h-blog__card:hover .h-blog__post-link svg {
  transform: translateX(4px);
}

.h-blog__viewall {
  text-align: center;
  margin-top: 48px;
}

.h-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid var(--brown);
  color: var(--brown);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.h-btn-outline:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   5. BOOKS / PERSONAL WORKS SECTION
══════════════════════════════════════════════════════════════ */
.h-books__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: center;
}

.h-books__intro .h-title {
  margin-bottom: 16px;
}

.h-books__intro p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Horizontal slider */
.h-books__slider-wrap {
  overflow: hidden;
  margin-right: calc(-1 * max(40px, calc((100vw - 1200px) / 2 + 40px)));
}

.h-books__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 24px;
  padding-right: max(40px, calc((100vw - 1200px) / 2 + 40px));
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--warm) transparent;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.h-books__track:active {
  cursor: grabbing;
}

.h-books__track::-webkit-scrollbar {
  height: 4px;
}

.h-books__track::-webkit-scrollbar-track {
  background: transparent;
}

.h-books__track::-webkit-scrollbar-thumb {
  background: var(--warm);
  border-radius: 2px;
}

.h-book-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.h-book-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.h-book-card__cover {
  position: relative;
  height: 340px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.h-book-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.6s ease;
}

.h-book-card:hover .h-book-card__cover img {
  transform: scale(1.04);
}

.h-book-card__cover-placeholder {
  font-size: 4rem;
  color: var(--warm);
}

.h-book-card__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.h-book-card:hover .h-book-card__shimmer {
  transform: translateX(100%);
}

.h-book-card__body {
  padding: 22px;
}

.h-book-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}

.h-book-card__desc {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.h-book-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   6. VERTICAL TIMELINE — PERSONAL JOURNEY
══════════════════════════════════════════════════════════════ */
.v-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

/* Timeline Item */
.v-timeline__item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  z-index: 2;
}

.v-timeline__item:last-child {
  margin-bottom: 0;
}

/* Individual Segment Line (connects from center of this node to next) */
.v-timeline__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: calc(100% + 60px);
  /* 100% of item + margin-bottom */
  background: rgba(214, 150, 39, 0.45);
  /* Darker line */
  transform: translateX(-50%);
  z-index: -1;
}

.v-timeline__item:last-child::after {
  display: none;
}

/* Node (Center Pin) */
.v-timeline__node-wrap {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  z-index: 5;
}

.v-timeline__node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--node-color, var(--gold));
  border: none;
  /* Remove default browser button border */
  box-shadow: 0 0 0 8px rgba(200, 150, 62, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: default;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.2px;
  outline: none;
}

.v-timeline__node--has-media {
  cursor: default;
}

.v-timeline__item.is-active .v-timeline__node--has-media {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(200, 150, 62, 0.25), 0 8px 20px rgba(200, 150, 62, 0.4);
}

/* Content & Media Layout */
.v-timeline__content,
.v-timeline__media {
  flex: 1;
  width: 50%;
  min-width: 0;
}

/* Right Side Content (Alternating) */
.v-timeline__item--right .v-timeline__content {
  order: 3;
  padding-left: 40px;
  text-align: left;
}

.v-timeline__item--right .v-timeline__node-wrap {
  order: 2;
}

.v-timeline__item--right .v-timeline__media {
  order: 1;
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
}

/* Left Side Content (Alternating) */
.v-timeline__item--left .v-timeline__content {
  order: 1;
  padding-right: 40px;
  text-align: right;
}

.v-timeline__item--left .v-timeline__node-wrap {
  order: 2;
}

.v-timeline__item--left .v-timeline__media {
  order: 3;
  padding-left: 40px;
  display: flex;
  justify-content: flex-start;
}

/* Content Styling */
.v-timeline__chapter {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.v-timeline__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown, #361f06);
  margin-bottom: 8px;
  line-height: 1.3;
}

.v-timeline__divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 12px;
}

.v-timeline__item--left .v-timeline__divider {
  margin-left: auto;
}

.v-timeline__desc {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  /* no year below it anymore */
}

/* Media Styling (Hidden by default, shown as its milestone scrolls into focus) */
.v-timeline__media {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.v-timeline__item.is-active .v-timeline__media {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.v-timeline__media-frame {
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  overflow: hidden;
}

.v-timeline__media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .v-timeline__item {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .v-timeline__item::after {
    left: 40px;
    /* Aligned to the center of the mobile node wrap */
    height: calc(100% + 40px);
    /* Adjust for mobile margin */
  }

  .v-timeline__node-wrap {
    width: 80px;
    justify-content: center;
  }

  .v-timeline__node {
    width: 56px;
    height: 56px;
    box-shadow: 0 0 0 6px rgba(200, 150, 62, 0.15), 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 0.65rem;
  }

  .v-timeline__content,
  .v-timeline__media {
    width: calc(100% - 80px);
  }

  /* Force everything to Left Side layout on mobile */
  .v-timeline__item--right .v-timeline__content,
  .v-timeline__item--left .v-timeline__content {
    order: 2;
    padding-left: 20px;
    padding-right: 0;
    text-align: left;
  }

  .v-timeline__item--right .v-timeline__node-wrap,
  .v-timeline__item--left .v-timeline__node-wrap {
    order: 1;
  }

  .v-timeline__item--right .v-timeline__media,
  .v-timeline__item--left .v-timeline__media {
    order: 3;
    padding-left: 100px;
    /* 80px node + 20px padding */
    padding-right: 0;
    margin-top: 20px;
    justify-content: flex-start;
  }

  .v-timeline__item--left .v-timeline__divider {
    margin-left: 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   7. CHERISHED MEMORIES SECTION
══════════════════════════════════════════════════════════════ */
.h-memories__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-top: 16px;
  padding-bottom: 32px;
  padding-left: max(40px, calc((100vw - 1200px) / 2 - 160px));
  padding-right: max(40px, calc((100vw - 1200px) / 2 + 40px));
  scroll-padding-left: max(40px, calc((100vw - 1200px) / 2 - 160px));
  scroll-snap-type: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  overscroll-behavior-x: contain;
}

.h-memories__track:active {
  cursor: grabbing;
}

.h-memories__track::-webkit-scrollbar {
  display: none;
}

.h-mem-card {
  flex: 0 0 380px;
  scroll-snap-align: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 12px 32px rgba(74, 44, 10, 0.04);
  backface-visibility: hidden;
  contain: paint;
}


.h-mem-card:hover {
  transform: none;
  border-color: rgba(200, 150, 62, 0.18);
  box-shadow: 0 18px 44px rgba(74, 44, 10, 0.08);
}

.h-mem-card__icon {
  color: var(--gold-lt);
  opacity: 0.55;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: -12px;
}

.h-mem-card__icon svg {
  width: 36px;
  height: 28px;
  display: block;
}

.h-mem-card__quote {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.h-mem-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--beige);
  padding-top: 16px;
}

.h-mem-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--beige);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  flex-shrink: 0;
}

.h-mem-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h-mem-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
}

.h-mem-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.h-memories__empty {
  text-align: center;
  padding: 60px 40px;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════════════════════════
   8. RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* New intro hero */
  .h-intro {
    min-height: auto;
    display: block;
    padding: 60px 0 40px;
  }

  .h-intro__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .h-intro__right {
    order: -1;
  }

  /* photos first on mobile */
  .h-collage {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 120px;
    gap: 8px;
  }

  .h-intro__heading {
    font-size: 2.4rem;
  }

  .h-intro__stats {
    gap: 20px;
  }

  .h-section {
    padding: 72px 0;
  }

  .h-section__header {
    padding: 0 24px;
    margin-bottom: 44px;
  }

  .h-container {
    padding: 0 24px;
  }

  .h-blog__cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .h-blog__hero-body {
    padding: 32px 36px 40px;
  }

  .h-books__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .h-books__slider-wrap {
    margin-right: -24px;
  }

  .h-books__track {
    padding-right: 24px;
  }

  /* Storymap — tablet */



  .h-mem-card {
    flex: 0 0 300px;
  }

  .h-memories__track {
    padding: 16px 48px 32px;
    scroll-padding-left: 48px;
  }
}

@media (max-width: 640px) {
  .h-intro {
    min-height: auto;
    display: block;
    padding: 40px 0 32px;
  }

  .h-intro__wrap {
    gap: 28px;
  }

  .h-intro__heading {
    font-size: 2rem;
  }

  .h-intro__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .h-intro__stat-divider {
    display: none;
  }

  .h-intro__ctas {
    flex-direction: column;
  }

  .h-btn-primary,
  .h-btn-outline,
  .h-btn-outline-hero,
  .h-btn-ghost {
    justify-content: center;
    text-align: center;
  }

  .h-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 8px;
  }

  /* On very small screens simplify spans */
  .h-collage__img--wide {
    grid-column: span 2;
  }

  .h-collage__img--tall {
    grid-row: span 1;
  }

  .h-mem-card {
    flex: 0 0 85vw;
  }

  .h-memories__track {
    padding-left: 24px;
    padding-right: 24px;
    scroll-padding-left: 24px;
  }

  .h-book-card {
    flex: 0 0 220px;
  }

  .h-blog__editorial {
    gap: 24px;
  }

  .h-blog__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .h-blog__hero-body {
    padding: 24px 22px 28px;
  }

  .h-blog__hero-title {
    font-size: 1.5rem;
  }

  .h-blog__post-excerpt {
    margin-bottom: 20px;
  }


}
