/* Intrak Valet — animated hero commercial. Vanilla CSS, no dependencies. */
.ihc-root {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  background: #0C1220;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.ihc-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.ihc-poster.ihc-hidden { opacity: 0; pointer-events: none; }

.ihc-frame {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  z-index: 2;
}
.ihc-frame-inner {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  transform-origin: center;
}

.ihc-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,18,32,0.15) 0%, rgba(12,18,32,0.05) 45%, rgba(12,18,32,0.55) 100%);
  z-index: 3;
  pointer-events: none;
}

.ihc-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 6;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2"/></filter><rect width="140" height="140" filter="url(%23n)"/></svg>');
}

.ihc-caption {
  position: absolute;
  left: 6%;
  bottom: 14%;
  z-index: 5;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  color: #F5F1E8;
  letter-spacing: 0.01em;
  max-width: 640px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.ihc-caption.ihc-gold { color: #D2B888; }
.ihc-caption.ihc-visible { opacity: 1; transform: translateY(0); }

.ihc-sms {
  position: absolute;
  left: 7%;
  top: 58%;
  z-index: 5;
  width: min(320px, 34vw);
  background: #101830;
  border: 1px solid rgba(183,154,107,0.35);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(24px) scale(0.97);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.ihc-sms.ihc-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  animation: ihc-glow 1.8s ease-in-out 0.4s 2;
}
.ihc-sms-sender {
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B79A6B;
  margin-bottom: 4px;
}
.ihc-sms-text {
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #F5F1E8;
}
@keyframes ihc-glow {
  0%, 100% { box-shadow: 0 20px 44px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 20px 44px rgba(0,0,0,0.4), 0 0 0 6px rgba(183,154,107,0.18); }
}

.ihc-logocard {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #0C1220;
  opacity: 0;
  transition: opacity 0.7s ease;
  text-align: center;
  padding: 0 24px;
}
.ihc-logocard.ihc-visible { opacity: 1; }
.ihc-logocard img { height: 64px; width: auto; margin-bottom: 4px; }
.ihc-logocard-word {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #F5F1E8;
}
.ihc-logocard-tag {
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #B79A6B;
}
.ihc-logocard-cta {
  margin-top: 8px;
  display: inline-block;
  background: #B79A6B;
  color: #0C1220;
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 2px;
  text-decoration: none;
}
.ihc-logocard-cta:hover { background: #D2B888; }

@media (max-width: 640px) {
  .ihc-root { min-height: 76svh; }
  .ihc-caption { left: 6%; right: 6%; bottom: 11%; max-width: none; font-size: clamp(1.5rem, 7vw, 2.1rem); }
  .ihc-sms { right: 6%; left: 6%; width: auto; top: 18%; padding: 13px 15px; }
  .ihc-logocard { gap: 16px; }
  .ihc-logocard img { height: 48px; }
  .ihc-logocard-word { font-size: 1.9rem; }
  .ihc-logocard-tag { font-size: 12px; letter-spacing: 0.18em; }
  .ihc-logocard-cta { padding: 14px 26px; font-size: 13px; }
}
