/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--cream);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 64px 60px;
  position: relative; z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: -1px;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
}
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 14s ease;
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, rgba(249,246,241,.1) 30%);
}
.hero-bg-text {
  position: absolute;
  bottom: 80px; right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,16,42,.08);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: .68rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 26px;
  opacity: 0; animation: fadeUp .9s .4s ease forwards;
}
.h-line { width: 28px; height: 1px; background: var(--red); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300; line-height: 1.06;
  color: var(--charcoal); margin-bottom: 10px;
  opacity: 0; animation: fadeUp .9s .6s ease forwards;
}
.hero-h1 .italic-red { font-style: italic; color: var(--red); font-weight: 400; }
.hero-h1 .stroke-txt {
  -webkit-text-stroke: 1.5px var(--charcoal);
  color: transparent;
}
.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--rose-mid);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .9s .75s ease forwards;
}
.hero-desc {
  font-size: .95rem; font-weight: 300;
  color: var(--slate); line-height: 1.85;
  max-width: 400px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp .9s .9s ease forwards;
}
.hero-btns {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s 1.1s ease forwards;
}
.hero-stats {
  position: absolute; bottom: 0; left: 0;
  width: 50%;
  display: flex;
  border-top: 1px solid var(--border);
  z-index: 3;
  background: var(--cream);
}
.hs-item {
  flex: 1; padding: 18px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.hs-item:last-child { border-right: none; }
.hs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--charcoal); line-height: 1;
}
.hs-num em { color: var(--red); font-style: normal; }
.hs-lbl { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.hero-scroll-hint {
  position: absolute; bottom: 80px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
  opacity: 0; animation: fadeUp 1s 1.6s ease forwards;
}
.scroll-txt { font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: white; writing-mode: vertical-rl; }
.scroll-ln { width: 1px; height: 48px; background: linear-gradient(to bottom, white, transparent); animation: scrollAnim 2.2s infinite; }
@keyframes scrollAnim {
  0%,100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ─── TICKER ─── */
.ticker {
  background: var(--charcoal); padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 0;
  animation: tick 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.t-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 28px; flex-shrink: 0;
  font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.t-dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.t-item .hi { color: rgba(255,255,255,.9); }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── PAGES SECTION ─── */
#pages { background: var(--off-white); }
.pages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media(max-width:991px) { .pages-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px) { .pages-grid { grid-template-columns: 1fr; } }
.page-card {
  background: var(--off-white);
  padding: 42px 36px;
  text-decoration: none;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background .4s;
}
.page-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.page-card:hover { background: var(--cream); }
.page-card:hover::before { transform: scaleX(1); }
.pc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700;
  color: var(--rose-soft); line-height: 1;
  margin-bottom: 12px;
  transition: color .4s;
}
.page-card:hover .pc-num { color: var(--rose-mid); }
.pc-icon { font-size: 1.4rem; color: var(--red); margin-bottom: 12px; }
.pc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 8px;
}
.pc-desc { font-size: .82rem; font-weight: 300; color: var(--slate); line-height: 1.65; }
.pc-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red);
  margin-top: 20px; transition: gap .3s;
}
.page-card:hover .pc-arrow { gap: 12px; }

/* ─── SERVICES SHOWCASE ─── */
#services-preview { background: var(--cream); overflow: hidden; }
.svc-scroll-wrap {
  overflow-x: auto; scrollbar-width: none;
  padding-bottom: 12px;
}
.svc-scroll-wrap::-webkit-scrollbar { display: none; }
.svc-scroll-track {
  display: flex; gap: 2px;
  width: max-content;
}
.svc-slide {
  width: 320px; height: 480px; flex-shrink: 0;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.svc-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.svc-slide:hover img { transform: scale(1.08); }
.svc-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.9) 0%, rgba(26,26,26,.1) 50%, transparent 100%);
  transition: background .5s;
}
.svc-slide:hover .svc-slide-overlay {
  background: linear-gradient(to top, rgba(184,16,42,.88) 0%, rgba(184,16,42,.1) 55%, transparent 100%);
}
.svc-slide-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px;
}
.svc-idx { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--rose-soft); margin-bottom: 4px; }
.svc-name-slide {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500; color: white;
}
.svc-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--rose-soft);
  text-decoration: none; margin-top: 10px;
  opacity: 0; transform: translateY(10px);
  transition: all .35s var(--ease);
}
.svc-slide:hover .svc-more { opacity: 1; transform: none; }
.svc-drag-hint {
  display: flex; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 20px;
}
.svc-drag-hint i { color: var(--red); }

/* ─── ABOUT STRIP ─── */
#about-strip {
  background: var(--charcoal);
  padding: 80px 0;
}
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
}
@media(max-width:991px) { .about-strip-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; } }
.about-strip-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: white; line-height: 1.12;
}
.about-strip-h em { font-style: italic; color: var(--rose-mid); }
.about-strip-p {
  font-size: .9rem; font-weight: 300;
  color: rgba(255,255,255,.55); line-height: 1.85;
}
.about-strip-divider {
  width: 1px; height: 120px;
  background: rgba(255,255,255,.12);
}
@media(max-width:991px) { .about-strip-divider { width: 60px; height: 1px; margin: 0 auto; } }
.about-strip-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: white;
  text-decoration: none; margin-top: 24px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 4px;
  transition: border-color .3s, color .3s;
}
.about-strip-cta:hover { border-color: var(--red); color: var(--red); }

/* ─── GALLERY TEASE ─── */
#gallery-tease { background: var(--warm); }
.gt-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 280px;
  gap: 8px;
}
@media(max-width:767px) { .gt-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } }
@media(max-width:480px) { .gt-bento { grid-template-columns: 1fr; } }
.gt-cell {
  position: relative; overflow: hidden; border-radius: 4px; cursor: pointer;
}
.gt-cell.span2 { grid-row: span 2; }
.gt-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.gt-cell:hover img { transform: scale(1.07); }
.gt-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(184,16,42,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s;
}
.gt-cell:hover .gt-cell-overlay { opacity: 1; }
.gt-cell-overlay i { color: white; font-size: 1.8rem; }
.gt-view-more {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red);
  text-decoration: none; margin-top: 28px;
  transition: gap .3s;
}
.gt-view-more:hover { gap: 16px; }

/* ─── STATS SECTION ─── */
#stats-sec {
  background: var(--rose-pale);
  padding: 70px 0;
}
.stats-row { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-block {
  padding: 30px 48px; text-align: center;
  border-right: 1px solid var(--rose-soft);
  flex: 0 0 auto;
}
.stat-block:last-child { border-right: none; }
@media(max-width:575px) { .stat-block { border-right: none; border-bottom: 1px solid var(--rose-soft); width: 50%; } }
.st-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--charcoal); line-height: 1;
}
.st-num span { color: var(--red); }
.st-lbl {
  font-size: .65rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin-top: 6px;
}

/* ─── TESTIMONIAL STRIP ─── */
#testi-strip { background: var(--off-white); }
.testi-slide-wrap {
  position: relative; overflow: hidden;
}
.testi-slides { display: flex; transition: transform .6s var(--ease); }
.testi-slide {
  flex: 0 0 100%; padding: 0 10%;
  text-align: center;
}
.testi-quote-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic; font-weight: 400;
  color: var(--ink); line-height: 1.65;
  margin-bottom: 28px;
}
.testi-author-name { font-size: .9rem; font-weight: 500; color: var(--charcoal); }
.testi-author-role { font-size: .75rem; color: var(--muted); margin-top: 3px; }
.testi-stars { color: var(--gold); font-size: .85rem; margin-bottom: 20px; }
.testi-quote-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--rose-soft);
  line-height: .7; margin-bottom: 16px;
}
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose-soft); border: none; cursor: pointer;
  transition: all .3s;
}
.testi-dot.active { width: 24px; border-radius: 4px; background: var(--red); }

/* ─── NEW: INSTAGRAM FEED SECTION ─── */
#instagram-feed {
  background: var(--off-white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.insta-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.insta-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--charcoal);
  font-size: .9rem;
  font-weight: 500;
  transition: color .3s;
}
.insta-profile-link:hover {
  color: var(--red);
}
.insta-profile-link i {
  font-size: 1.6rem;
  color: var(--red);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media(max-width:991px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media(max-width:480px) {
  .insta-grid { grid-template-columns: 1fr; gap: 16px; }
}
.insta-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--warm);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  display: block;
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s var(--ease);
  padding: 24px;
  text-align: center;
  color: white;
}
.insta-card:hover img {
  transform: scale(1.08);
}
.insta-card:hover .insta-overlay {
  opacity: 1;
}
.insta-icon {
  font-size: 1.6rem;
  color: var(--rose-soft);
  margin-bottom: 12px;
  transform: scale(0.8);
  transition: transform .4s var(--ease);
}
.insta-card:hover .insta-icon {
  transform: scale(1);
}
.insta-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: .85rem;
  letter-spacing: .05em;
  font-weight: 500;
}
.insta-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.insta-stats i {
  color: var(--red);
}
.insta-caption {
  font-size: .75rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ─── NEW: YOUTUBE VIDEO SECTION ─── */
#youtube-showcase {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.yt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media(max-width:991px) {
  .yt-grid { grid-template-columns: 1fr; gap: 40px; }
}
.yt-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #000;
}
.yt-player-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  z-index: 1;
}
.yt-thumbnail-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s var(--ease);
}
.yt-thumbnail-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 6s ease;
}
.yt-thumbnail-overlay:hover img {
  transform: scale(1.04);
}
.yt-play-btn {
  position: absolute;
  width: 76px;
  height: 76px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
  box-shadow: 0 8px 30px rgba(184,16,42,0.25);
  transition: all .4s var(--ease);
  z-index: 3;
}
.yt-play-btn::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  animation: pulsePlay 2s infinite;
}
@keyframes pulsePlay {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
.yt-thumbnail-overlay:hover .yt-play-btn {
  background: var(--red);
  color: white;
  transform: scale(1.08);
  box-shadow: var(--red-glow);
}
.yt-details-card {
  background: var(--off-white);
  padding: 48px;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
@media(max-width:575px) {
  .yt-details-card { padding: 32px 24px; }
}
.yt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 18px;
}
.yt-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.yt-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.25;
}
.yt-desc {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 30px;
}
.yt-meta-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.yt-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.yt-meta-label {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.yt-meta-value {
  font-size: .85rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ─── YOUTUBE PLAYLIST ─── */
.yt-playlist-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.yt-playlist-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
}
.yt-playlist-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: all 0.4s var(--ease);
}
.yt-playlist-item:hover img {
  filter: brightness(0.85);
  transform: scale(1.04);
}
.yt-playlist-item.active {
  border-color: var(--red);
  box-shadow: var(--red-glow);
}
.yt-playlist-item.active img {
  filter: brightness(0.8);
}
.yt-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}
.yt-playlist-item:hover .yt-item-overlay {
  transform: scale(1.1);
  color: var(--red);
}

/* ─── BOOKING BANNER ─── */
#booking-cta {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
#booking-cta::before {
  content: 'BOOK';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(255,255,255,.04);
  white-space: nowrap; user-select: none;
}
.cta-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300; color: white; line-height: 1.1;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.cta-h em { font-style: italic; opacity: .85; }
.cta-p {
  font-size: .9rem; font-weight: 300;
  color: rgba(255,255,255,.75); max-width: 400px;
  margin: 0 auto 36px; line-height: 1.75; position: relative; z-index: 1;
}
.btn-white-fill {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--red);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 34px; border-radius: 2px;
  text-decoration: none; border: 1.5px solid white;
  transition: all .35s; position: relative; z-index: 1;
}
.btn-white-fill:hover { background: transparent; color: white; }

/* ─── HERO RESPONSIVE OVERWRITES ─── */
@media(max-width:991px) {
  #hero { grid-template-columns: 1fr; min-height: auto; padding-top: 90px; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 50px 24px 40px; }
  .hero-left::after { display: none; }
  .hero-bg-text { display: none; }
  .hero-stats { width: 100%; position: static; }
}
@media(max-width:767px) {
  .hs-item { padding: 12px 10px; }
  .hs-num { font-size: 1.2rem; }
}
