/* =========================================
   MANDY FORRESTER CELEBRANT — Stylesheet
   ========================================= */

/* --- Fonts --- */
@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler_Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler_Light.otf') format('opentype');
  font-weight: 300;
}
@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler_Medium.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'Lexend';
  src: url('../fonts/Lexend-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
}
@font-face {
  font-family: 'LexendMega';
  src: url('../fonts/LexendMega-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
}

/* --- Variables --- */
:root {
  --dark:       #3a3427;
  --taupe:      #9c8b6a;
  --rose:       #c4afa0;
  --cream:      #e8dcc9;
  --cream-light:#f0e8dc;
  --white:      #faf7f4;
  --sage:       #c9d1b6;
  --sage-light: #dde4d0;
  --sage-dark:  #a8b594;

  --font-heading: 'Butler', Georgia, serif;
  --font-sub:     'LexendMega', sans-serif;
  --font-body:    'Lexend', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  line-height: 1.75;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section--sage    { background: var(--sage-light); }
.section--cream   { background: var(--cream-light); }
.section--dark    { background: var(--dark); color: var(--cream-light); }
.section--white   { background: var(--white); }

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

/* --- Divider --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--taupe);
  margin: 1.5rem auto;
  opacity: 0.5;
}

/* --- Button --- */
.btn {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid currentColor;
  transition: background 0.25s, color 0.25s;
}
.btn--dark {
  color: var(--dark);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn--light {
  color: var(--cream-light);
  border-color: var(--cream-light);
}
.btn--light:hover {
  background: var(--cream-light);
  color: var(--dark);
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(58, 52, 39, 0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(58,52,39,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav__links a:hover,
.nav__links a.active {
  border-color: var(--taupe);
  color: var(--taupe);
}

/* Dropdown */
.nav__links .has-dropdown { position: relative; }
.nav__links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(58,52,39,0.1);
  min-width: 200px;
  padding: 0.75rem 0;
  list-style: none;
  box-shadow: 0 8px 24px rgba(58,52,39,0.08);
}
.nav__links .has-dropdown:hover .dropdown { display: block; }
.nav__links .dropdown li a {
  display: block;
  padding: 0.6rem 1.4rem;
  border-bottom: none;
  font-size: 0.62rem;
}
.nav__links .dropdown li a:hover {
  background: var(--cream-light);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid rgba(58,52,39,0.08);
  padding: 1rem 2rem 1.5rem;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a, .nav__mobile summary {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(58,52,39,0.07);
  display: block;
}
.nav__mobile details a {
  padding-left: 1rem;
  font-size: 0.65rem;
  color: var(--taupe);
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

/* --- Centred nav variant --- */
.nav__inner--centred {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.nav__links--left {
  justify-content: flex-end;
}
.nav__links--right {
  justify-content: flex-start;
}
.nav__logo--centre img {
  height: 100px;
  width: auto;
}
@media (max-width: 860px) {
  .nav__inner--centred { grid-template-columns: 1fr auto; }
  .nav__links--left,
  .nav__links--right { display: none; }
  .nav__toggle { display: flex; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--cream-light);
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/floral-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 700px;
}

.hero__logo {
  width: min(340px, 80vw);
  margin: 0 auto 2.5rem;
}

.hero__tagline {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2rem;
}

.hero__text {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--dark);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* =========================================
   INTRO STRIP
   ========================================= */
.intro-strip {
  background: var(--sage);
  padding: 3rem 2rem;
  text-align: center;
}
.intro-strip p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================
   CARDS GRID
   ========================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.card {
  background: var(--cream-light);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.25s;
}
.card:hover { background: var(--sage-light); }

.card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--taupe);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.card p { font-size: 0.92rem; color: var(--dark); opacity: 0.8; }

/* =========================================
   TWO-COL SPLIT
   ========================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
@media (max-width: 700px) {
  .split { grid-template-columns: 1fr; }
  .split__image { order: -1; }
}

.split__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split__image img {
  width: 70%;
  height: auto;
  object-fit: contain;
}
.split__image--photo {
  position: relative;
  padding: 0;
}
.split__image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 220, 201, 0.45);
  pointer-events: none;
}

.split__text {
  padding: 4rem 3.5rem;
}
@media (max-width: 860px) {
  .split__text { padding: 3rem 2rem; }
}

.split__text .label { margin-bottom: 1rem; display: block; }
.split__text h2 { margin-bottom: 1.2rem; }
.split__text p { margin-bottom: 1rem; font-size: 0.95rem; opacity: 0.85; }
.split__text .btn { margin-top: 1.5rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--white);
  border-left: 3px solid var(--sage);
  padding: 2rem;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial__quote::before { content: '\201C'; }
.testimonial__quote::after  { content: '\201D'; }

.testimonial__attr {
  font-family: var(--font-sub);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* =========================================
   FEES TABLE
   ========================================= */
.fees-table {
  width: 100%;
  max-width: 600px;
  margin: 2.5rem auto 0;
  border-collapse: collapse;
}
.fees-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(58,52,39,0.1);
  font-size: 0.95rem;
}
.fees-table td:last-child {
  text-align: right;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.fees-table tr:last-child td { border-bottom: none; }

/* =========================================
   CEREMONY PAGE SECTIONS
   ========================================= */
.ceremony-hero {
  background: var(--sage-light);
  padding: 11rem 2rem 4rem;
  text-align: center;
}
.ceremony-hero .label { margin-bottom: 1rem; }
.ceremony-hero h1 { margin-bottom: 1.2rem; }
.ceremony-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  opacity: 0.82;
}

.ceremony-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid rgba(58,52,39,0.08);
  position: sticky;
  top: 74px;
  z-index: 50;
}

.tab-btn {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(58,52,39,0.2);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.ceremony-section {
  scroll-margin-top: 140px;
}

/* =========================================
   INCLUDED LIST
   ========================================= */
.included-list {
  list-style: none;
  margin: 1.5rem 0;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(58,52,39,0.07);
  font-size: 0.95rem;
}
.included-list li::before {
  content: '—';
  color: var(--taupe);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* =========================================
   PAGE HERO (interior pages)
   ========================================= */
.page-hero {
  background: var(--cream-light);
  padding: 11rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/floral-bg.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.07;
}
.page-hero__content { position: relative; }
.page-hero .label { margin-bottom: 1rem; }
.page-hero p {
  max-width: 600px;
  margin: 1.2rem auto 0;
  opacity: 0.8;
  font-size: 1rem;
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 700px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-info .label { margin-bottom: 0.75rem; display: block; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { font-size: 0.95rem; opacity: 0.82; margin-bottom: 0.6rem; }
.contact-info a { color: var(--taupe); }

.contact-roundel {
  width: 180px;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(58,52,39,0.2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--taupe);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  color: var(--cream-light);
  padding: 4rem 2rem 2rem;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__logo img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1.2rem;
}
.footer__tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  opacity: 0.7;
}

.footer__col h4 {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li {
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  opacity: 0.75;
}
.footer__col ul li a { transition: opacity 0.2s; }
.footer__col ul li a:hover { opacity: 1; }

.footer__bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  opacity: 0.45;
}

/* =========================================
   WHAT TO EXPECT — Steps
   ========================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
}
.step__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.step h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.step p { font-size: 0.9rem; opacity: 0.78; }

/* =========================================
   ABOUT — Values
   ========================================= */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.value {
  padding: 2rem;
  border-top: 2px solid var(--sage);
}
.value h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.value p { font-size: 0.9rem; opacity: 0.8; }

/* =========================================
   ABOUT — Video Carousel
   ========================================= */
.video-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.carousel-viewport {
  flex: 1;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s ease;
  will-change: transform;
}
.video-wrap {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--taupe);
  background: var(--white);
  color: var(--dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.carousel-btn:hover {
  background: var(--dark);
  color: var(--cream-light);
  border-color: var(--dark);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 768px) {
  .video-wrap { flex: 0 0 calc((100% - 1.25rem) / 2); }
}
@media (max-width: 480px) {
  .video-wrap { flex: 0 0 100%; }
}

/* =========================================
   FAQ
   ========================================= */
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(58,52,39,0.12);
}
.faq-item summary {
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--taupe);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding-bottom: 1.4rem;
  font-size: 0.94rem;
  opacity: 0.82;
  line-height: 1.7;
}

/* =========================================
   KEEPSAKES SECTION
   ========================================= */
.keepsakes-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.keepsake-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(58,52,39,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.keepsake-card__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.keepsake-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}
.keepsake-card p { font-size: 0.88rem; opacity: 0.78; }

/* Pocket Hugs quotes slider */
.hugs-quotes-section { padding: 4rem 0; }
.hugs-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.hugs-slider__viewport {
  overflow: hidden;
  flex: 1;
}
.hugs-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}
.hugs-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}
.hugs-slide__top {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
  opacity: 0.88;
}
.hugs-slide img {
  max-width: 320px;
  width: 100%;
  display: block;
}
.hugs-slide__bottom {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin: 1.25rem 0 0;
  opacity: 0.88;
}
.lightbox__buy {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 2rem;
  border: 1px solid rgba(255,255,255,0.8);
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.lightbox__buy:hover {
  background: rgba(255,255,255,0.9);
  color: var(--dark);
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open {
  display: flex;
}
.lightbox__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  border: 3px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox-trigger {
  cursor: zoom-in;
}

/* =========================================
   BLOG
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid rgba(58,52,39,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(58,52,39,0.1);
}
.blog-card__header {
  padding: 2rem 2rem 1.5rem;
  display: flex;
  align-items: flex-end;
  min-height: 90px;
}
.blog-card__header--sage  { background: var(--sage-light); }
.blog-card__header--cream { background: var(--cream); }
.blog-card__header--rose  { background: var(--rose); opacity: 0.85; }
.blog-card__header--dark  { background: var(--dark); }
.blog-card__body {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__date {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.6rem;
}
.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.9rem;
  color: var(--dark);
}
.blog-card__excerpt {
  font-size: 0.9rem;
  opacity: 0.78;
  line-height: 1.7;
  flex: 1;
}
.blog-card__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-sub);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.blog-card__link:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* =========================================
   SINGLE VIDEO EMBED
   ========================================= */
.video-single {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(58,52,39,0.15);
}
.video-single iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-single__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-single__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 72px;
  height: 72px;
  transition: transform 0.2s;
}
.video-single__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================
   BLOG POST PAGE
   ========================================= */
.blog-post {
  max-width: 720px;
  margin: 0 auto;
}
.blog-post h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin: 2.5rem 0 0.9rem;
}
.blog-post p {
  font-size: 0.97rem;
  line-height: 1.85;
  opacity: 0.85;
}
.blog-post__back {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(58,52,39,0.1);
}
.blog-post__video {
  margin: 2rem 0 2.5rem;
  max-width: 100%;
}

/* =========================================
   RESPONSIVE HELPERS
   ========================================= */
@media (max-width: 700px) {
  .section { padding: 3.5rem 0; }
  .split__text { padding: 2.5rem 1.5rem; }
  .footer__inner { gap: 2rem; }
}
