/* ============================================
   BEAUTY BY JAS KAUR — Homepage Styles
   home.css — all 8 homepage sections
   ============================================ */

/* ============================================
   1. HERO SECTION
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--sealskin);
}

/* Background image layer */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

/* Gradient overlay — dark at bottom for text legibility */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(30, 26, 24, 0.82) 0%, rgba(30, 26, 24, 0.15) 55%, transparent 100%),
    linear-gradient(to right, rgba(30, 26, 24, 0.25) 0%, transparent 60%);
}

/* Fallback gradient when no image */
.hero__bg:not(:has(img))::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--cacao) 0%, var(--espresso) 50%, var(--taupe) 100%);
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 6% 10vh;
  max-width: 900px;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__content .eyebrow {
  color: var(--oat);
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero__deco {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 0.12em;
  margin-bottom: 0.05em;
  width: clamp(18px, 2vw, 32px);
  pointer-events: none;
  line-height: 0;
}

.hero__deco svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero__content h1 {
  color: var(--ivory);
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.hero__content h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--silk);
}

.hero__sub {
  color: rgba(235, 222, 212, 0.7);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  display: block;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll cue */
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 6%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  writing-mode: vertical-rl;
}

.hero__scroll-hint::before {
  content: 'Scroll';
  font-family: var(--font-sans);
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(235, 222, 212, 0.5);
}

.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(235,222,212,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   2. FEATURED STRIP — 4-image seamless gallery
============================================ */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.featured-strip__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* ============================================
   2b. FEATURED PORTFOLIO GRID
============================================ */
.featured-grid {
  padding-top: 100px;
  padding-bottom: 80px;
}

.featured-grid__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 72px;
}

.featured-grid__header h2 {
  color: var(--sealskin);
}

/* Asymmetric 4-image grid — inspired by Artistry by Jasmine */
.featured-grid__images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  grid-template-rows: auto;
  gap: 10px;
  align-items: start;
}

.featured-grid__item {
  overflow: hidden;
  position: relative;
}

.featured-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46, 43, 40, 0);
  transition: background 0.45s var(--ease);
}

.featured-grid__item:hover::after {
  background: rgba(46, 43, 40, 0.12);
}

.featured-grid__item img,
.featured-grid__item .img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.featured-grid__item--tall img,
.featured-grid__item--tall .img-placeholder {
  aspect-ratio: 3 / 5;
}

.featured-grid__item:hover img {
  transform: scale(1.04);
}

/* Stagger vertical offsets for editorial feel */
.featured-grid__item:nth-child(2) { margin-top: 60px; }
.featured-grid__item:nth-child(3) { margin-top: 28px; }

.featured-grid__cta {
  text-align: center;
  margin-top: 52px;
}

/* Image placeholder style */
.img-placeholder,
.img-block {
  background: linear-gradient(160deg, var(--silk) 0%, var(--oat) 100%);
  width: 100%;
  aspect-ratio: 3/4;
}

.img-placeholder--tall,
.img-block--tall  { aspect-ratio: 3/5; }
.img-placeholder--portrait { aspect-ratio: 2/3; }

/* ============================================
   3. ABOUT TEASER
============================================ */
.about-teaser {
  background-color: var(--silk);
  padding: 48px 0;
}

.about-teaser__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser__image {
  position: relative;
}

.about-teaser__image img,
.about-teaser__image .img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Decorative offset border — removed */

.about-teaser__image img,
.about-teaser__image .img-placeholder {
  position: relative;
  z-index: 1;
}

/* Photo placeholder — replace <div class="about-photo"> with <img> when ready */
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--silk) 0%, var(--oat) 60%, var(--taupe) 100%);
  display: block;
  position: relative;
  z-index: 1;
}

.about-teaser__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-teaser__text h2 {
  color: var(--sealskin);
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.about-teaser__text h2 em {
  font-style: italic;
  color: var(--espresso);
}

.about-teaser__text .divider {
  margin: 20px 0 22px;
}

.about-teaser__text p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--espresso);
  max-width: 440px;
}

.about-teaser__text .btn {
  margin-top: 2.2rem;
}

/* ============================================
   4. SERVICES PREVIEW
============================================ */
.services-preview {
  background: var(--white);
  overflow: hidden;
  padding: 48px 0;
}

.services-preview__header {
  text-align: center;
  margin-bottom: 56px;
}

.services-preview__header h2 {
  color: var(--sealskin);
}

/* Slider wrapper clips overflow */
.services-slider__wrapper {
  position: relative;
  overflow: hidden;
}

.services-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Service card */
.service-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 260px;
  padding: 52px 40px;
  border: 2px solid var(--taupe);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  cursor: default;
}

.service-card:hover {
  border-color: var(--oat);
  box-shadow: 0 8px 40px rgba(30, 27, 25, 0.07);
}

.service-card__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--oat);
  font-weight: 400;
}

.service-card h3 {
  font-size: 1.75rem;
  color: var(--sealskin);
  font-weight: 300;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--taupe);
  line-height: 1.75;
}

.service-card__time {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--oat);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--silk);
  text-transform: uppercase;
}

.service-card__link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-top: 4px;
  position: relative;
}

.service-card__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--espresso);
  transition: width 0.3s var(--ease);
}

.service-card:hover .service-card__link::after {
  width: 100%;
}

/* Service card bottom meta — time + CTA stacked */
.service-card__meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--silk);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card__time-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--oat);
  text-transform: uppercase;
}

.service-card__cta {
  font-family: var(--font-sans);
  font-size: 0.60rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.service-card__cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--espresso);
  transition: width 0.3s var(--ease);
}

.service-card:hover .service-card__cta::after {
  width: 100%;
}

/* Slider nav buttons */
.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--oat);
  background: transparent;
  color: var(--sealskin);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.slider-btn:hover {
  background: var(--sealskin);
  color: var(--ivory);
  border-color: var(--sealskin);
}

.services-preview__cta {
  text-align: center;
  margin-top: 24px;
}

/* ============================================
   5. FEATURED IN
============================================ */
.featured-in {
  background: var(--ivory);
  padding: 72px 5%;
}

.featured-in__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.featured-in__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.featured-in__logos span,
.featured-in__logos img {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--oat);
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
  filter: grayscale(1) opacity(0.5);
  cursor: default;
}

.featured-in__logos span:hover,
.featured-in__logos img:hover {
  color: var(--taupe);
  filter: grayscale(0.3) opacity(0.8);
}

/* ============================================
   6. CLIENT REVIEWS
============================================ */
.reviews {
  background: var(--sealskin);
  padding: 48px 5%;
}

.reviews .container {
  max-width: 820px;
}

.reviews__header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews__header h2 {
  color: var(--ivory);
}

/* Carousel — full-width sliding */
.reviews__carousel {
  position: relative;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.review {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  gap: 24px;
}

/* Opening quotation mark removed from ::before — now wraps the quote text */
.review::before { content: ''; }

.review__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.6;
  max-width: 680px;
}

.review__quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 1.1em;
  opacity: 0.7;
  margin-right: 2px;
}

.review__quote::after {
  content: '\201D';
  font-family: var(--font-serif);
  font-size: 1.1em;
  opacity: 0.7;
  margin-left: 2px;
}

.review__stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 4px 0;
}

.review__stars span {
  font-size: 0.9rem;
  color: var(--oat);
  letter-spacing: 3px;
}

.review__author {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
}

/* Dot navigation */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}

.reviews__dot {
  width: 24px;
  height: 1px;
  border: none;
  background: rgba(203, 191, 175, 0.3);
  cursor: pointer;
  transition: background 0.35s var(--ease), width 0.35s var(--ease);
  padding: 0;
}

.reviews__dot.active {
  background: var(--oat);
  width: 40px;
}

/* ============================================
   7. INSTAGRAM FEED
============================================ */
.instagram {
  padding: 56px 5%;
  background: var(--silk);
}

.instagram__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 0;
}

.instagram__handle {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--sealskin);
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease);
  text-decoration: none;
}

.instagram__handle:hover {
  color: var(--espresso);
}

.instagram__handle::before {
  content: '';
}

/* 4-column square grid */
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.ig-slot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.ig-slot img,
.ig-slot .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  display: block;
  transition: transform 0.5s var(--ease);
  background: linear-gradient(135deg, var(--silk), var(--oat));
}

.ig-slot:hover img {
  transform: scale(1.06);
}

/* Hover overlay with Instagram icon hint */
.ig-slot::after {
  content: '♡';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ivory);
  background: rgba(46, 43, 40, 0);
  transition: background 0.35s var(--ease);
  pointer-events: none;
}

.ig-slot:hover::after {
  background: rgba(46, 43, 40, 0.3);
}

.instagram__cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   8. CALL TO ACTION BANNER
============================================ */
.booking-banner {
  background: var(--sealskin);
  padding: 130px 5%;
  position: relative;
  overflow: hidden;
}

/* Decorative large letter watermark */
.booking-banner::before {
  content: 'JK';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 28vw;
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.booking-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.booking-banner__inner h2 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  margin-bottom: 8px;
}

.booking-banner__inner h2 em {
  font-style: italic;
  color: var(--oat);
}

.booking-banner__inner p {
  color: var(--taupe);
  font-size: 0.9rem;
  max-width: 420px;
  margin-top: 12px;
}

.booking-banner__inner .btn {
  margin-top: 2.4rem;
}

/* ============================================
   RESPONSIVE — HOMEPAGE
============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .featured-grid__images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .featured-grid__item:nth-child(2) { margin-top: 0; }
  .featured-grid__item:nth-child(3) { margin-top: 0; }

  .about-teaser__inner {
    gap: 48px;
  }

  .service-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 220px;
  }

  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram__grid .ig-slot:nth-child(n+5) {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero__content {
    padding: 0 5% 8vh;
  }

  .hero__content h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero__scroll-hint {
    display: none;
  }

  .featured-grid__images {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .featured-grid__item--tall .img-placeholder,
  .featured-grid__item--tall img {
    aspect-ratio: 3/4;
  }

  .about-teaser__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-teaser__image::before {
    display: none;
  }

  .service-card {
    flex: 0 0 calc(85vw);
    min-width: 260px;
    padding: 32px 28px;
  }

  .slider-controls {
    justify-content: center;
  }

  .featured-in__logos {
    gap: 32px;
  }

  .review__quote {
    font-size: 1rem;
  }

  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .instagram__grid .ig-slot:nth-child(n+5) {
    display: none;
  }

  .booking-banner::before {
    font-size: 50vw;
    opacity: 0.03;
  }
}

@media (max-width: 480px) {
  .featured-grid__images {
    grid-template-columns: 1fr;
  }

  .featured-grid__item:nth-child(n+3) {
    display: none;
  }

  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram__grid .ig-slot:nth-child(n+5) {
    display: none;
  }
}

/* ============================================
   FEATURED STRIP — responsive
============================================ */
@media (max-width: 768px) {
  .featured-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   ADDITIONAL HOMEPAGE COMPONENT STYLES
============================================ */

/* Hero fallback gradient (when no image uploaded) */
.hero__bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--cacao) 0%, #4a3830 35%, var(--espresso) 65%, var(--taupe) 100%);
}

.hero__bg-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 65%, rgba(91,74,62,0.45) 0%, transparent 65%);
}

/* Ghost / outline-warm button variants */
.btn--ghost {
  color: rgba(246, 242, 236, 0.8);
  border-color: rgba(246, 242, 236, 0.4);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(246, 242, 236, 0.1);
  color: var(--ivory);
  border-color: rgba(246, 242, 236, 0.7);
}

.btn--outline-warm {
  color: var(--espresso);
  border-color: var(--espresso);
  background: transparent;
}

.btn--outline-warm:hover {
  background: var(--espresso);
  color: var(--ivory);
}

/* Hero scroll label */
.hero__scroll-label {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(235, 222, 212, 0.42);
  writing-mode: vertical-rl;
}

/* About teaser eyebrow */
.about-teaser__eyebrow {
  margin-top: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
}

/* About teaser second paragraph */
.about-p2 {
  margin-top: 14px;
}

/* About signature */
.about-signature {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--espresso);
  opacity: 0.3;
  margin-top: 28px;
  display: block;
  letter-spacing: 0.02em;
}

/* Service card number (alias for label) */
.service-card__num {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--oat);
  font-weight: 500;
}

/* Services CTA */
.services-preview__cta {
  text-align: center;
  margin-top: 24px;
}

/* Featured in pub items */
.pub {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--oat);
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
  cursor: default;
}

.pub:hover {
  color: var(--taupe);
}

/* Review opening mark */
.review__mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--espresso);
  line-height: 0.6;
  opacity: 0.5;
  display: block;
  margin-bottom: 8px;
}

/* Social icons row — evenly aligned */
.instagram__socials {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  margin-top: 28px;
}

.instagram__social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--sealskin);
  transition: color 0.3s var(--ease);
  width: 72px;
}

.instagram__social-link:hover {
  color: var(--espresso);
}

.instagram__social-link svg {
  flex-shrink: 0;
}

.instagram__social-link span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: var(--taupe);
}

/* Instagram handle arrow */
.instagram__handle-arrow {
  font-style: normal;
  font-size: 0.7em;
  color: var(--taupe);
  margin-right: 6px;
  font-family: var(--font-sans);
}

/* IG slot label (heart on hover) */
.ig-slot-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: 2;
}

.ig-slot:hover .ig-slot-label {
  opacity: 1;
}

/* Booking banner italic */
.booking-banner__inner h2 em {
  font-style: italic;
  color: var(--oat);
}

.booking-banner__inner p {
  color: var(--taupe);
  font-size: 0.9rem;
  max-width: 420px;
  margin-top: 12px;
  line-height: 1.8;
}

/* Footer additional classes */
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__nav   { display: flex; flex-direction: column; }
.footer__contact p { font-size: 0.85rem; color: rgba(246, 242, 236, 0.6); line-height: 2.1; }
.footer__contact a { color: rgba(246, 242, 236, 0.6); transition: color 0.3s; display: block; }
.footer__contact a:hover { color: var(--ivory); }
