
:root{
  --black:#030303;
  --gold:#d4af37;
  --gold2:#f1d88b;
  --white:#f8f4ea;
  --muted:#c8bfae;
  --navy:#061423;
  --line:rgba(212,175,55,.35);
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#030303;color:var(--white);line-height:1.65}
a{text-decoration:none;color:inherit}
.nav{position:sticky;top:0;z-index:99;display:flex;justify-content:space-between;align-items:center;padding:14px 52px;background:rgba(0,0,0,.96);border-bottom:1px solid var(--line)}
.logo-img{height:64px;width:auto;display:block}
.navlinks a{color:var(--white);margin-left:22px;font-size:13px;letter-spacing:1px;text-transform:uppercase}
.navlinks a:hover{color:var(--gold)}
.hero-image{width:100%;display:block;border-bottom:1px solid var(--line)}
.hero-copy{text-align:center;padding:42px 28px 60px;background:linear-gradient(180deg,#050505,#061423)}
.hero-copy h1{color:var(--gold);font-size:38px;margin:0 0 12px;letter-spacing:2px}
.hero-copy p{max-width:900px;margin:0 auto 24px;color:var(--muted);font-size:18px}
.btn{display:inline-block;padding:13px 24px;border:1px solid var(--gold);color:var(--gold);margin:8px;text-transform:uppercase;letter-spacing:1.5px;font-size:12px}
.btn.primary{background:var(--gold);color:#000;font-weight:700}
section{padding:76px 52px;max-width:1220px;margin:auto}
.section-title{color:var(--gold);font-size:36px;text-align:center;margin:0 0 14px}
.section-intro{color:var(--muted);text-align:center;max-width:860px;margin:0 auto 42px;font-size:17px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:24px}
.card{background:linear-gradient(180deg,#121212,#070707);border:1px solid var(--line);border-radius:18px;padding:30px;min-height:210px}
.card h3{color:var(--gold);margin-top:0}.card p{color:var(--muted)}
.callout{max-width:none;background:linear-gradient(rgba(0,0,0,.84),rgba(0,0,0,.92)),linear-gradient(135deg,#061423,#000);border-top:1px solid var(--line);border-bottom:1px solid var(--line);text-align:center}
.page-hero{padding:86px 52px;background:linear-gradient(rgba(0,0,0,.80),rgba(0,0,0,.86)),radial-gradient(circle at top,rgba(212,175,55,.22),transparent 34%),linear-gradient(135deg,#000,#061423,#000);text-align:center;border-bottom:1px solid var(--line)}
.page-hero h1{color:var(--gold);font-size:48px;margin:0 0 12px}.page-hero p{color:var(--muted);max-width:820px;margin:auto}
.panel{background:linear-gradient(135deg,#0d0d0d,#081521);border:1px solid var(--line);border-left:5px solid var(--gold);padding:36px;border-radius:18px;color:var(--muted)}
.footer{background:#000;border-top:1px solid var(--line);text-align:center;padding:42px 24px;color:var(--muted)}
.footer-logo{height:82px;width:auto;margin-bottom:16px}
.footer strong{color:var(--gold)}
@media(max-width:900px){.nav{display:block;padding:18px}.logo-img{height:54px}.navlinks{margin-top:14px}.navlinks a{display:inline-block;margin:8px 14px 0 0}section{padding:54px 24px}.hero-copy h1{font-size:30px}}

.waterfront-card img{
  width:100%;
  height:220px;
  object-fit:contain;
  background:#000;
  border:1px solid rgba(212,175,55,.35);
  border-radius:10px;
  margin-bottom:18px;
}

/* V11 fixed hospitality image panes */
.motion-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:34px;
}
.motion-card{
  position:relative;
  min-height:360px;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(212,175,55,.36);
  background:#050505;
}
.motion-card img{
  width:100%;
  height:360px;
  display:block;
  object-fit:cover;
}
.motion-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.82));
}
.motion-card div{
  position:absolute;
  z-index:2;
  left:0;
  right:0;
  bottom:0;
  padding:24px;
}
.motion-card h3{
  color:#d4af37;
  margin:0 0 8px;
  font-size:23px;
}
.motion-card p{
  color:#f8f4ea;
  margin:0;
}
@media(max-width:950px){
  .motion-grid{grid-template-columns:1fr;}
}

/* V12 dynamic polish */
.hero-img{
  animation: heroReveal 1.4s ease-out both;
}
@keyframes heroReveal{
  from{opacity:.45; transform:scale(1.015);}
  to{opacity:1; transform:scale(1);}
}
.motion-card{
  transform:translateY(36px);
  opacity:0;
  transition:opacity .9s ease, transform .9s ease, box-shadow .5s ease, border-color .5s ease;
}
.motion-card.visible{
  opacity:1;
  transform:translateY(0);
}
.motion-card img{
  transition:transform 1.2s ease, filter .8s ease;
}
.motion-card:hover{
  border-color:#f3d88b;
  box-shadow:0 0 26px rgba(212,175,55,.22);
}
.motion-card:hover img{
  transform:scale(1.07);
  filter:saturate(1.12) contrast(1.08);
}
.card{
  transition:transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}
.card:hover{
  transform:translateY(-6px);
  border-color:#f3d88b;
  box-shadow:0 14px 35px rgba(0,0,0,.38);
}
.experience{
  transition:transform .45s ease, border-color .45s ease, background .45s ease;
}
.experience:hover{
  transform:translateY(-5px);
  border-color:#f3d88b;
  background:linear-gradient(135deg,#121212,#092139);
}

/* V13 enhanced dynamic effects */
.motion-card{
  perspective:900px;
  will-change:transform;
}
.motion-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-85%;
  width:65%;
  height:100%;
  z-index:3;
  background:linear-gradient(115deg, transparent, rgba(243,216,139,.22), transparent);
  transform:skewX(-18deg);
  transition:left .75s ease;
  pointer-events:none;
}
.motion-card:hover::before{
  left:125%;
}
.motion-card div{
  transform:translateY(10px);
  opacity:.92;
  transition:transform .45s ease, opacity .45s ease;
}
.motion-card:hover div{
  transform:translateY(0);
  opacity:1;
}
.motion-card:hover h3{
  text-shadow:0 0 14px rgba(212,175,55,.45);
}
.stats-section{
  max-width:none;
  background:linear-gradient(135deg,#030303,#061423,#030303);
  border-top:1px solid rgba(212,175,55,.36);
  border-bottom:1px solid rgba(212,175,55,.36);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
  max-width:1120px;
  margin:34px auto 0;
}
.stat-card{
  text-align:center;
  border:1px solid rgba(212,175,55,.36);
  border-radius:18px;
  padding:28px;
  background:rgba(0,0,0,.45);
}
.stat-number{
  color:#d4af37;
  font-size:46px;
  font-weight:700;
  letter-spacing:1px;
}
.stat-card p{
  color:#c9c0ae;
  margin:10px 0 0;
}
.spotlight-section{
  overflow:hidden;
}
.spotlight{
  overflow:hidden;
  border:1px solid rgba(212,175,55,.36);
  border-radius:20px;
  background:linear-gradient(135deg,#080808,#061423);
  max-width:1160px;
  margin:34px auto 0;
}
.spotlight-track{
  display:flex;
  width:max-content;
  animation:spotlightSlide 28s linear infinite;
}
.spotlight:hover .spotlight-track{
  animation-play-state:paused;
}
.spotlight-card{
  min-width:310px;
  padding:30px;
  border-right:1px solid rgba(212,175,55,.25);
}
.spotlight-card h3{
  color:#d4af37;
  margin:0 0 8px;
}
.spotlight-card p{
  color:#f8f4ea;
  margin:0;
}
@keyframes spotlightSlide{
  from{transform:translateX(0);}
  to{transform:translateX(-930px);}
}
@media(max-width:950px){
  .spotlight-card{min-width:260px;}
}

/* V14 dynamic fix: visible motion across all panes */
.motion-card:nth-child(1) img,
.motion-card:nth-child(3) img,
.motion-card:nth-child(4) img,
.motion-card:nth-child(5) img{
  animation: slowKenBurns 9s ease-in-out infinite alternate;
}
.motion-card:nth-child(2) img,
.motion-card:nth-child(6) img{
  animation: slowKenBurnsAlt 10s ease-in-out infinite alternate;
}
@keyframes slowKenBurns{
  0%{transform:scale(1) translateX(0);}
  100%{transform:scale(1.085) translateX(-10px);}
}
@keyframes slowKenBurnsAlt{
  0%{transform:scale(1.015) translateX(0);}
  100%{transform:scale(1.09) translateX(10px);}
}
.motion-card:hover img{
  transform:scale(1.14) !important;
}
.motion-card:nth-child(1){
  box-shadow:0 0 0 rgba(212,175,55,0);
  animation: panePulse 4.5s ease-in-out infinite;
}
@keyframes panePulse{
  0%,100%{box-shadow:0 0 0 rgba(212,175,55,0);}
  50%{box-shadow:0 0 28px rgba(212,175,55,.18);}
}

/* V14 complete venue scroll */
.spotlight-track{
  animation:spotlightSlideFull 52s linear infinite !important;
}
@keyframes spotlightSlideFull{
  from{transform:translateX(0);}
  to{transform:translateX(-3410px);}
}

/* V14 contact/regular cards zoom and gold framing */
.card,
.experience,
.stat-card,
.spotlight-card{
  transition:transform .55s ease, box-shadow .55s ease, border-color .55s ease, background .55s ease;
}
.card:hover,
.experience:hover,
.stat-card:hover,
.spotlight-card:hover{
  transform:scale(1.035) translateY(-4px);
  border-color:#f3d88b !important;
  box-shadow:0 0 28px rgba(212,175,55,.22);
}

/* V24 combined effect without breaking Hospitality In Motion */

/* Option 1: luxury animated header */
.nav{
  transition:padding .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.logo-img{
  transition:height .35s ease, filter .35s ease;
}
.nav::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:1px;
  background:linear-gradient(90deg, transparent, #f3d88b, #d4af37, transparent);
  opacity:.18;
  transition:opacity .35s ease, height .35s ease;
}
.nav.nav-scrolled{
  padding:8px 48px;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(12px);
  box-shadow:0 10px 35px rgba(0,0,0,.45);
  border-bottom-color:rgba(243,216,139,.55);
}
.nav.nav-scrolled .logo-img{
  height:50px;
  filter:drop-shadow(0 0 10px rgba(212,175,55,.35));
}
.nav.nav-scrolled::after{
  opacity:1;
  height:2px;
}

/* Option 3: hero text reveal */
.hero-reveal-strip{
  position:relative;
  background:linear-gradient(180deg,#030303,#061423);
  border-top:1px solid rgba(212,175,55,.30);
  border-bottom:1px solid rgba(212,175,55,.35);
  padding:54px 24px 58px;
  overflow:hidden;
}
.hero-reveal-inner{
  position:relative;
  z-index:2;
  max-width:1050px;
  margin:0 auto;
  text-align:center;
}
.hero-kicker{
  color:#f3d88b;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:13px;
  margin-bottom:14px;
  opacity:0;
  transform:translateY(18px);
  animation:revealUp .8s ease-out .15s forwards;
}
.hero-reveal-inner h1{
  color:#d4af37;
  font-size:44px;
  letter-spacing:1.8px;
  margin:0 0 14px;
  opacity:0;
  transform:translateY(22px);
  animation:revealUp .9s ease-out .45s forwards;
}
.hero-reveal-inner p{
  color:#c9c0ae;
  font-size:18px;
  max-width:870px;
  margin:0 auto 28px;
  opacity:0;
  transform:translateY(22px);
  animation:revealUp .9s ease-out .75s forwards;
}
.hero-reveal-actions{
  opacity:0;
  transform:translateY(22px);
  animation:revealUp .9s ease-out 1.05s forwards;
}
.hero-reveal-actions a{
  display:inline-block;
  border:1px solid #d4af37;
  color:#d4af37;
  padding:13px 24px;
  margin:7px;
  text-transform:uppercase;
  letter-spacing:1.4px;
  font-size:12px;
  transition:background .35s ease, color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.hero-reveal-actions a:hover{
  background:#d4af37;
  color:#000;
  transform:translateY(-3px);
  box-shadow:0 0 26px rgba(212,175,55,.25);
}
@keyframes revealUp{
  to{opacity:1; transform:translateY(0);}
}

/* Subtle gold atmosphere */
.gold-atmosphere{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}
.gold-atmosphere::before,
.gold-atmosphere::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(243,216,139,.16), rgba(212,175,55,.04) 42%, transparent 70%);
  filter:blur(4px);
  animation:goldFloat 12s ease-in-out infinite alternate;
}
.gold-atmosphere::before{left:8%; top:18%;}
.gold-atmosphere::after{right:10%; bottom:12%; animation-delay:1.8s; animation-duration:15s;}
@keyframes goldFloat{
  from{transform:translate3d(0,0,0) scale(.92); opacity:.42;}
  to{transform:translate3d(26px,-18px,0) scale(1.08); opacity:.85;}
}

/* Fail-safe: never let Hospitality In Motion go blank */
.motion-card{
  opacity:1;
}
.motion-card:not(.visible){
  opacity:1;
  transform:translateY(0);
}

@media(max-width:950px){
  .nav.nav-scrolled{padding:12px 18px;}
  .hero-reveal-inner h1{font-size:30px;}
}

/* V31 IHG Talent Network */
.talent-hero{
  background:
    linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.90)),
    radial-gradient(circle at top,rgba(212,175,55,.28),transparent 34%),
    linear-gradient(135deg,#000,#061423,#000);
}
.talent-intro .card h3{
  color:#d4af37;
}
.talent-form-section{
  max-width:1220px;
}
.talent-form{
  border:1px solid rgba(212,175,55,.36);
  border-radius:22px;
  padding:34px;
  background:linear-gradient(180deg,#101010,#050505);
  box-shadow:0 18px 55px rgba(0,0,0,.35);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.talent-form label{
  color:#f8f4ea;
  font-size:14px;
  letter-spacing:.3px;
}
.talent-form input,
.talent-form select,
.talent-form textarea{
  width:100%;
  margin-top:7px;
  padding:13px 14px;
  border:1px solid rgba(212,175,55,.35);
  border-radius:10px;
  background:#050505;
  color:#f8f4ea;
  font-size:14px;
}
.talent-form input:focus,
.talent-form select:focus,
.talent-form textarea:focus{
  outline:none;
  border-color:#f3d88b;
  box-shadow:0 0 16px rgba(212,175,55,.20);
}
.form-heading{
  color:#d4af37;
  font-size:28px;
  margin:34px 0 18px;
  text-align:center;
}
.position-groups{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:20px;
}
.position-groups fieldset{
  border:1px solid rgba(212,175,55,.32);
  border-radius:16px;
  padding:20px;
  background:rgba(0,0,0,.24);
}
.position-groups legend{
  color:#d4af37;
  font-weight:700;
  padding:0 8px;
}
.position-groups label{
  display:block;
  margin:10px 0;
  color:#c9c0ae;
}
.position-groups input[type="checkbox"],
.consent input[type="checkbox"]{
  width:auto;
  margin-right:9px;
}
.full-width{
  display:block;
  margin-top:20px;
}
.consent{
  display:block;
  margin-top:22px;
  color:#f8f4ea !important;
}
.form-note{
  color:#c9c0ae;
  font-size:13px;
  margin-top:18px;
}
.submit-btn{
  margin-top:18px;
  background:#d4af37;
  color:#000;
  border:none;
  padding:15px 26px;
  border-radius:999px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.2px;
  cursor:pointer;
  transition:transform .35s ease, box-shadow .35s ease;
}
.submit-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 0 26px rgba(212,175,55,.35);
}
.talent-cta-section{
  max-width:none;
  background:linear-gradient(135deg,#030303,#061423,#030303);
  border-top:1px solid rgba(212,175,55,.36);
  border-bottom:1px solid rgba(212,175,55,.36);
}
.talent-cta-box{
  max-width:820px;
  margin:0 auto;
  text-align:center;
  border:1px solid rgba(212,175,55,.36);
  border-radius:22px;
  padding:34px;
  background:rgba(0,0,0,.42);
}
.talent-cta-box h3{
  color:#d4af37;
  margin-top:0;
  font-size:28px;
}
.talent-cta-box p{
  color:#c9c0ae;
}
.talent-cta-btn{
  display:inline-block;
  margin-top:14px;
  background:#d4af37;
  color:#000;
  padding:14px 25px;
  border-radius:999px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.2px;
}
@media(max-width:850px){
  .form-grid,
  .position-groups{
    grid-template-columns:1fr;
  }
  .talent-form{
    padding:24px;
  }
}

/* V33 Embedded Zoho Talent Form */
.zoho-form-wrapper{
  max-width:1160px;
  margin:34px auto 0;
  border:1px solid rgba(212,175,55,.36);
  border-radius:22px;
  overflow:hidden;
  background:#ffffff;
  box-shadow:0 18px 55px rgba(0,0,0,.35);
}
.zoho-form-wrapper iframe{
  display:block;
  background:#ffffff;
}
