/* Home page */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 18px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 12px;
}

.hero-img {
  overflow: hidden;
  background: #eee;
  border-radius: 14px;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-left, .hero-img-right, .hero-img-center { aspect-ratio: 3/4; }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 10px; padding: 18px 16px 10px; }
  .hero-img-center { order: -1; }
}

.slogan-section {
  text-align: center;
  padding: 18px 16px 40px;
  border-top: 1px solid var(--border);
}

.slogan-section .slogan {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.slogan-section .slogan .script {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

.slogan-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  gap: 16px;
}

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

.service-card {
  padding: 24px;
  border-radius: 14px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.service-card p { margin: 0; color: var(--text-muted); }

.split {
  display: grid;
  gap: 18px;
  align-items: start;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr 0.9fr; gap: 26px; }
}

.about-box {
  padding: 24px;
  border-radius: 14px;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.featured-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.featured-header a { color: var(--text-muted); }
.featured-header a:hover { color: var(--text); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 700px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

.featured-item {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
  position: relative;
  cursor: pointer;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.20);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.featured-item:hover::after {
  opacity: 0.85;
  background: linear-gradient(
    rgba(233, 183, 179, 0.25),
    rgba(0, 0, 0, 0.25)
  );
}


.featured-item::before {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  text-align: center;
  line-height: 52px;
  font-size: 18px;
  color: #333;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
  pointer-events: none;
}

.featured-item:hover::before { opacity: 1; }

/* Modal */
.reel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 999;
  display: none;
}

.reel-overlay.active { display: block; }

.reel-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;

  /* Match IG embed width better */
  width: min(92vw, 540px);
  max-height: 82vh;

  background: transparent;   /* ✅ removes black box background */
  border-radius: 14px;
  overflow: visible;         /* embed will manage its own height */
  box-shadow: 0 22px 60px rgba(0,0,0,0.5);
}


.reel-popup.active { display: block; }

.reel-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

.reel-close:hover { background: rgba(0,0,0,0.75); }

.reel-embed {
  width: 100%;
  max-height: 82vh;
  overflow: auto;

  background: transparent;   /* ✅ removes black space */
  padding: 0;                /* ✅ remove padding that can create gaps */

  display: flex;             /* ✅ center the embed */
  justify-content: center;
  align-items: flex-start;
}

/* Force the Instagram embed to use full available width */
.reel-embed blockquote.instagram-media {
  margin: 0 !important;
  width: 100% !important;
  max-width: 540px !important;
}

