:root{
  --bg:#050806;
  --surface: rgba(255,255,255,.07);
  --surface2: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.14);
  --text: rgba(234,242,230,.92);
  --muted: rgba(185,198,179,.88);
  --green:#6FAF3B;
  --gold:#C9A44A;
  --shadow: 0 22px 70px rgba(0,0,0,.35);
  --shadow2: 0 18px 55px rgba(15,42,27,.22);
  --radius: 22px;
  --max: 1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 12% 0%, rgba(111,175,59,.18), transparent 58%),
              radial-gradient(1100px 550px at 88% 10%, rgba(201,164,74,.14), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, #020402 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Arial, sans-serif;
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4{
  font-family: ui-serif, "Playfair Display", Georgia, "Times New Roman", serif;
  line-height:1.15;
  margin:0 0 10px 0;
  letter-spacing: .2px;
}
p{margin:0 0 14px 0; color: var(--muted)}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:56px 0}
.section-tight{padding:40px 0}
@media (max-width: 900px){ .section{padding:44px 0}}
@media (max-width: 640px){ .section{padding:32px 0}}

.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(234,242,230,.88);
  font-size: 13px;
}
.badge .dot{width:8px;height:8px;border-radius:50%;background:var(--green); box-shadow: 0 0 0 4px rgba(111,175,59,.18)}
.kicker{color: rgba(201,164,74,.95); font-weight:600; letter-spacing:.08em; text-transform:uppercase; font-size:12px}

.glass{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.card{padding:18px}
.card:hover{background:var(--surface2)}
.hover-lift{transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease}
.hover-lift:hover{transform: translateY(-6px); box-shadow: var(--shadow)}
.grid{display:grid; gap:16px}
.grid-2{grid-template-columns: repeat(2, minmax(0,1fr))}
.grid-3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid-4{grid-template-columns: repeat(4, minmax(0,1fr))}
@media (max-width: 960px){ .grid-3,.grid-4{grid-template-columns: repeat(2, minmax(0,1fr))} }
@media (max-width: 640px){ .grid-2,.grid-3,.grid-4{grid-template-columns: 1fr} }

.img{
  width:100%; height:100%;
  object-fit: cover;
  border-radius: 18px;
  display:block;
}
.img-frame{
  position:relative;
  overflow:hidden;
  border-radius: 18px;
  line-height:0;
}

/* Remove the "boxed" padding effect when images/rotators appear inside padded cards */
.card .img-frame.bleed{
  margin:-18px -18px 14px;
  border-radius:18px;
}
.card .img-frame.bleed .media-rotator{
  border:0;
  background:transparent;
}

/* Ensure media fully fills its frame (no weird inner gaps) */
.img-frame .media-rotator,
.img-frame img{
  width:100%;
  height:100%;
  border-radius:18px;
}
.img-frame img{
  display:block;
  object-fit:cover;
}
.img-zoom img{transition: transform .6s ease}
.img-zoom:hover img{transform: scale(1.06)}

.btnrow{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(234,242,230,.95);
  font-weight: 650;
  letter-spacing:.2px;
  transition: transform .25s ease, filter .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.10)}
.btn-primary{
  background: linear-gradient(135deg, rgba(111,175,59,.95), rgba(0,128,128,.75));
  border-color: rgba(111,175,59,.55);
  box-shadow: 0 16px 38px rgba(111,175,59,.18);
}
.btn-primary:hover{filter: brightness(1.04)}
.btn-ghost{background: rgba(255,255,255,.03)}
.small{font-size: 13px; color: rgba(185,198,179,.85)}
.hr{height:1px; background: rgba(255,255,255,.12); margin:18px 0}

header{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  background: rgba(5,8,6,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  min-width: 220px;
}
.brand img{width:42px;height:42px;border-radius: 10px}
.brand b{font-family: ui-serif, "Playfair Display", Georgia, serif; letter-spacing:.3px}
.brand span{display:block; font-size:12px; color: rgba(185,198,179,.85); margin-top:2px}

.menu{
  display:flex; gap: 10px; align-items:center; flex-wrap:nowrap;
}
.menu a{
  font-size: 13px;
  color: rgba(234,242,230,.84);
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.menu a:hover{background: rgba(255,255,255,.06)}
.menu a.active{background: rgba(201,164,74,.12); color: rgba(234,242,230,.92); border: 1px solid rgba(201,164,74,.22)}


.dd{position:relative; display:inline-flex; align-items:center}
.dd-btn{display:inline-flex; align-items:center; gap:6px}
.chev{font-size:12px; opacity:.8}
.dd-menu{
  position:absolute;
  top: 110%;
  left:0;
  min-width: 220px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(8,12,9,.88);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  display:none;
  z-index: 60;
}
.dd-menu a{
  display:block;
  width:100%;
  padding: 10px 10px;
  border-radius: 12px;
}
.dd-menu a:hover{background: rgba(255,255,255,.08)}
.dd:hover .dd-menu{display:block}
.dd:focus-within .dd-menu{display:block}

.nav-actions{display:flex; gap:10px; align-items:center}
.burger{display:none}
@media (max-width: 980px){
  .nav{gap:10px}
  .brand{
    min-width:0;
    flex:1;
  }
  .brand b{
    display:block;
    font-size:15px;
    line-height:1.1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width: 100%;
  }
  .brand span{display:none}
  .brand img{width:38px;height:38px}
  .burger{display:inline-flex}
  .nav-actions{display:none}
  .menu{display:none; position:absolute; left:0; right:0; top:100%; padding: 12px 18px 18px; background: rgba(5,8,6,.88); border-bottom:1px solid rgba(255,255,255,.10)}
  .menu.open{display:flex; flex-direction:column; align-items:flex-start}
  .menu a{width:100%}
}
@media (max-width: 480px){
  .brand b{font-size:14px}
  .brand img{width:34px;height:34px}
}

.hero{
  position: relative;
  min-height: 86vh;
  display:flex;
  align-items: stretch;
}
.hero-media{
  position:absolute; inset:0;
  overflow:hidden;
}
.hero-media .slide{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: scale(1.05);
  transition: opacity 1.2s ease;
}
.hero-media .slide.active{opacity:1}
.hero-media .kenburns{animation: kenburns 18s ease-in-out infinite}
@keyframes kenburns{
  0%{transform: scale(1.05)}
  50%{transform: scale(1.12)}
  100%{transform: scale(1.05)}
}
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 20% 0%, rgba(111,175,59,.20), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.80) 100%);
}
.hero-content{
  position:relative;
  width:100%;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  align-items:end;
  padding: 56px 0 40px;
}
@media (max-width: 900px){ .hero-content{grid-template-columns:1fr; padding: 44px 0 34px} .hero{min-height: 78vh}}
.hero h1{font-size: clamp(36px, 4.6vw, 62px)}
.hero .lead{font-size: 17px; color: rgba(234,242,230,.86); max-width: 52ch}
.hero .hero-card{padding: 18px}
@media (max-width: 640px){
  .hero-content{
    gap:12px;
    padding: 30px 0 24px;
  }
  .hero-content > [data-reveal]:first-child{
    padding:14px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(3,6,4,.36);
  }
  .hero h1{font-size: clamp(30px, 9vw, 40px)}
  .hero .lead{
    font-size:15px;
    line-height:1.55;
    max-width:100%;
  }
}

.feature-row{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items:center;
}
.feature-row.reverse{grid-template-columns: .95fr 1.05fr}
@media (max-width: 900px){ .feature-row,.feature-row.reverse{grid-template-columns:1fr} }

.gallery{
  columns: 3 240px;
  column-gap: 16px;
}
.gallery a{
  display:block;
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .25s ease, border-color .25s ease;
}
.gallery a:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.18)}
.gallery img{width:100%; display:block}

.modal{
  position: fixed; inset:0;
  display:none;
  background: rgba(0,0,0,.85);
  z-index: 100;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.modal.open{display:flex}
.modal img{max-width: min(1100px, 96vw); max-height: 86vh; border-radius: 18px; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow)}
.modal .close{
  position:absolute; top: 14px; right: 14px;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color: rgba(255,255,255,.9);
}

.form input, .form textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(234,242,230,.92);
  outline:none;
}
.form textarea{min-height: 120px; resize: vertical}
.form label{font-size: 13px; color: rgba(185,198,179,.90); display:block; margin: 10px 0 8px}
.footer{
  padding: 44px 0 18px;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer .bottom{
  display:flex; justify-content:space-between; gap: 14px; flex-wrap:wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 18px;
  color: rgba(185,198,179,.75);
  font-size: 12px;
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  color: rgba(234,242,230,.88);
}

/* === Conference quote calculator additions (inherits site tokens) === */
.form select{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(234,242,230,.92);
  outline:none;
}
.form select option, .form select optgroup{background: #0a120c; color: rgba(234,242,230,.96);}
.checkrow{display:flex; gap:12px; align-items:flex-start; margin-top: 10px}
.checkrow input{margin-top: 4px; width:16px; height:16px}
.note{padding:12px 14px; border-radius: 16px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: rgba(255,255,255,.78)}
.quote-box{margin-top:12px; padding:14px; border-radius: 18px; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05)}
.quote-row{display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap}
.quote-row small{color: rgba(255,255,255,.58)}
.quote-total{margin-top:10px; padding-top:10px; border-top: 1px solid rgba(255,255,255,.12)}
.quote-total strong{color: var(--gold)}
.placeholder{
  border-radius: 22px;
  border:1px dashed rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  min-height: 140px;
  display:flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,.55);
  text-align:center;
}

/* ============================
   MEDIA ROTATORS (sitewide)
   ============================ */
.media-rotator{
  position:relative;
  width:100%;
  aspect-ratio: var(--rotator-ratio, 4 / 3);
  min-height: clamp(190px, 28vw, 320px);
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.img-frame.bleed .media-rotator{ --rotator-ratio: 16 / 10; }
.media-rotator.has-custom-height{
  aspect-ratio:auto;
  min-height:0;
}
.media-rotator::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(800px 420px at 20% 10%, rgba(214,179,92,.12), transparent 55%),
              radial-gradient(800px 420px at 80% 0%, rgba(31,191,117,.10), transparent 60%);
  pointer-events:none;
  opacity:.75;
}
.mr-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  opacity:0;
  transition: opacity 850ms ease, transform 2200ms ease;
}
.mr-slide.is-active{ opacity:1; transform: scale(1.00); }
.mr-slide.is-fadeout{ opacity:0; }
.mr-dots{
  position:absolute;
  z-index:4;
  left:14px;
  bottom:14px;
  display:flex;
  gap:8px;
  align-items:center;
  pointer-events:auto;
}
.mr-dot{
  appearance:none;
  -webkit-appearance:none;
  padding:0;
  margin:0;
  width:7px; height:7px;
  border-radius:999px;
  background: rgba(255,255,255,.38);
  border:1px solid rgba(255,255,255,.20);
  box-shadow: 0 10px 20px rgba(0,0,0,.40);
  cursor:pointer;
}
.mr-dot.is-on{ background: rgba(214,179,92,.92); border-color: rgba(214,179,92,.55); }
.mr-dot:focus-visible{
  outline:2px solid rgba(214,179,92,.95);
  outline-offset: 2px;
}

/* quick hover micro-interactions */
.media-rotator:hover .mr-slide.is-active{ transform: scale(1.04); }

/* Booking actions */
.booking-launcher{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding:14px;
}
.booking-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.booking-actions .btn{
  padding:9px 14px;
  font-size:13px;
}
.booking-note{margin-top:10px}
@media (max-width: 720px){ .booking-actions{gap:8px} }
@media (max-width: 560px){
  .booking-actions .btn{
    width:100%;
    justify-content:center;
  }
}

/* Embedded video */
.video-embed{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
}
.video-embed iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.video-embed video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  background:#000;
}
