/* ==========================================================================
   HOTEL DELUXE — Design tokens
   Palette: deep emerald ink + brass accent + warm ivory
   Type: Cormorant Garamond (display) / Manrope (body/utility)
   Signature: the arch — hotel entrance arch used as recurring motif
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --ink:        #0a0a0a;
  --ink-2:      #141414;
  --ink-3:      #1f1c14;
  --brass:      #cda449;
  --brass-soft: #ecd6a0;
  --ivory:      #f7f2e7;
  --ivory-2:    #efe7d6;
  --paper:      #fbf8f2;
  --charcoal:   #201b14;
  --stone:      #6e6558;
  --line:       rgba(205,164,73,0.35);
  --line-dark:  rgba(247,242,231,0.14);

  --display: 'Cormorant Garamond', serif;
  --body: 'Manrope', sans-serif;

  --arch-r: 240px;
  --container: 1180px;

  --ease: cubic-bezier(.22,.68,0,1);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--display); font-weight:600; margin:0; letter-spacing:0.005em; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow.on-light{ color:#9d7b34; }

/* ---------- Arch shapes (the signature element) ---------- */
.arch{
  border-radius: var(--arch-r) var(--arch-r) 0 0;
}
.arch-frame{
  position: relative;
  border-radius: var(--arch-r) var(--arch-r) 4px 4px;
  overflow:hidden;
  border: 1px solid var(--line);
}
.arch-icon{
  width:56px; height: 72px;
  border: 1.5px solid var(--brass);
  border-radius: 28px 28px 3px 3px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  background: rgba(199,162,82,0.06);
}
.arch-icon svg{ width:24px; height:24px; stroke:var(--brass); fill:none; }

.logo-mark{
  width: 30px; height: 38px;
  border: 1.5px solid var(--brass);
  border-radius: 15px 15px 2px 2px;
  display:inline-block;
  position:relative;
}
.logo-mark::after{
  content:"";
  position:absolute; inset: 6px 8px 0 8px;
  border: 1px solid var(--line);
  border-radius: 10px 10px 0 0;
}
.nav-logo-img{
  height: 77px;
  width: auto;
  display:block;
}

/* ---------- Nav ---------- */
.site-nav{
  position: sticky; top:0; z-index: 100;
  background: rgb(4 4 4);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.site-nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: 84px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  color: var(--ivory);
}
.brand-word{
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ivory);
}
.brand-word b{ color: var(--brass); font-weight:600; }

.nav-links{
  display:flex; align-items:center; gap:38px;
}
.nav-links a{
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,242,231,0.72);
  font-weight: 600;
  position:relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a:hover{ color: var(--ivory); }
.nav-links a.active{ color: var(--brass); }
.nav-links a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px;
  height:1px; background: var(--brass);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 30px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-brass{
  background: var(--brass);
  color: var(--ink);
}
.btn-brass:hover{ background: var(--brass-soft); transform: translateY(-1px); }
.btn-ghost-dark{
  border-color: rgba(247,242,231,0.35);
  color: var(--ivory);
}
.btn-ghost-dark:hover{ border-color: var(--brass); color: var(--brass); }
.btn-ghost-light{
  border-color: rgba(36,31,25,0.3);
  color: var(--charcoal);
}
.btn-ghost-light:hover{ border-color: var(--ink-3); background: var(--ink-3); color: var(--ivory); }

.nav-cta{ display:flex; align-items:center; gap:22px; }

.burger{
  display:none;
  width: 34px; height: 24px;
  position: relative;
  background:none; border:none;
}
.burger span{
  position:absolute; left:0; right:0; height:1.5px; background: var(--ivory);
  transition: all .3s var(--ease);
}
.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:11px; }
.burger span:nth-child(3){ top:22px; }
.burger.open span:nth-child(1){ transform: translateY(11px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform: translateY(-11px) rotate(-45deg); }

.mobile-panel{
  display:none;
  position: fixed; inset: 84px 0 0 0;
  background: var(--ink);
  z-index: 99;
  padding: 40px 32px;
  flex-direction: column;
  gap: 8px;
}
.mobile-panel.open{ display:flex; }
.mobile-panel a{
  font-family: var(--display);
  font-size: 30px;
  color: var(--ivory);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-panel a.active{ color: var(--brass); }
.mobile-panel .btn{ margin-top: 24px; align-self:flex-start; }

/* ---------- Sections generic ---------- */
section{ position: relative; }
.section-pad{ padding: 110px 0; }
.dark{ background: var(--ink); color: var(--ivory); }
.mid{ background: var(--ink-3); color: var(--ivory); }
.light{ background: var(--paper); color: var(--charcoal); }
.tint{ background: var(--ivory-2); color: var(--charcoal); }

.kicker-row{
  display:flex; align-items:flex-end; justify-content:space-between; gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.kicker-row h2{ font-size: clamp(32px, 4vw, 46px); }
.kicker-row p{ max-width: 380px; color: var(--stone); font-size: 15px; line-height:1.7; }
.dark .kicker-row p, .mid .kicker-row p{ color: rgba(247,242,231,0.66); }

.rule{
  width: 60px; height: 1px; background: var(--brass);
  margin: 18px 0;
}
.rule.center{ margin: 18px auto; }

/* ---------- Hero base ---------- */
.hero{
  min-height: 92vh;
  display:flex; align-items:center;
  background: radial-gradient(120% 140% at 15% 0%, #221c0e 0%, var(--ink) 55%, #050505 100%);
  position: relative;
  overflow:hidden;
  color: var(--ivory);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(199,162,82,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,162,82,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 20% 30%, black, transparent);
  opacity:.5;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items:center;
  width:100%;
  position:relative; z-index:2;
}
.hero h1{
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 500;
}
.hero h1 em{ font-style:normal; color: var(--brass); }
.hero-sub{
  margin-top: 26px;
  font-size: 17px;
  line-height:1.8;
  color: rgba(247,242,231,0.7);
  max-width: 460px;
}
.hero-cta{ display:flex; gap:16px; margin-top: 40px; flex-wrap: wrap; }

.hero-visual{
  position:relative;
  height: 480px;
}
.hero-arch{
  position:absolute; inset:0;
  border-radius: 280px 280px 6px 6px;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 30% 10%, rgba(205,164,73,0.35), transparent 55%),
    linear-gradient(200deg, #cda44920, #0a0a0a 70%);
  overflow:hidden;
}
.hero-arch::after{
  content:"";
  position:absolute; left:10%; right:10%; bottom:0; top:14%;
  border-radius: 240px 240px 4px 4px;
  border: 1px solid var(--line);
  background: repeating-linear-gradient(115deg, rgba(247,242,231,0.05) 0 2px, transparent 2px 26px);
}
.hero-stat-float{
  position:absolute; left:-18px; bottom:34px;
  background: var(--paper);
  color: var(--charcoal);
  padding: 20px 26px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  z-index:3;
  max-width: 210px;
}
.hero-stat-float .num{ font-family:var(--display); font-size: 34px; color: var(--ink-3); line-height:1; }
.hero-stat-float .lbl{ font-size:12px; color:var(--stone); margin-top:6px; letter-spacing:0.03em; }

.small-hero{
  min-height: 46vh;
  padding-top: 84px;
}
.small-hero h1{ font-size: clamp(40px, 6vw, 66px); }

/* ---------- Stats strip ---------- */
.stat-row{
  display:grid; grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.stat-card{
  text-align:center;
  padding: 40px 20px;
  border: 1px solid var(--line);
  border-radius: var(--arch-r) var(--arch-r) 6px 6px;
}
.stat-card .num{ font-family: var(--display); font-size: 44px; color: var(--brass); }
.stat-card .lbl{ margin-top:10px; font-size:13px; letter-spacing:0.05em; text-transform:uppercase; color: rgba(247,242,231,0.65); }

/* ---------- Cards: rooms ---------- */
.room-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.room-card{
  background: var(--paper);
  border: 1px solid rgba(36,31,25,0.09);
  border-radius: 6px;
  overflow:hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.room-card:hover{ transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(20,20,10,0.35); }
.room-media{
  height: 230px;
  border-radius: var(--arch-r) var(--arch-r) 0 0;
  margin: 18px 18px 0 18px;
  position: relative;
  overflow: hidden;
}
.room-media::after{
  content:"";
  position:absolute; left:14%; right:14%; bottom:-2px; top:10%;
  border-radius: 190px 190px 0 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}
.room-body{ padding: 24px 26px 28px; }
.room-body .tag{ font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--brass); font-weight:700; }
.room-body h3{ font-size: 26px; margin-top:8px; }
.room-meta{ display:flex; gap:16px; margin-top:10px; font-size:13px; color:var(--stone); }
.room-desc{ margin-top:14px; font-size:14.5px; line-height:1.7; color: #4d463c; }
.room-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:20px; padding-top:18px; border-top:1px solid rgba(36,31,25,0.09); }
.price{ font-family:var(--display); font-size:22px; }
.price span{ font-size:12px; font-family:var(--body); color:var(--stone); }
.link-arrow{ font-size:13px; font-weight:700; letter-spacing:0.04em; }
.link-arrow::after{ content:"→"; margin-left:6px; transition: margin .25s var(--ease); }
.link-arrow:hover::after{ margin-left:12px; }

/* room media gradient variants */
.gv1{ background: linear-gradient(150deg,#2a2416,#0a0a0a); }
.gv2{ background: linear-gradient(150deg,#332c1a,#1f1c14); }
.gv3{ background: linear-gradient(150deg,#cda44933,#1f1c14); }
.gv4{ background: linear-gradient(150deg,#1a170f,#050505); }
.gv5{ background: linear-gradient(150deg,#cda44955,#0a0a0a); }
.gv6{ background: linear-gradient(150deg,#241f13,#0f0d08); }

.room-media img, .arch-frame img, .spa-media img{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* ---------- Amenity grid ---------- */
.amenity-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.amenity-item{
  display:flex; flex-direction:column; gap:16px;
  padding: 30px 22px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.amenity-item:hover{ border-color: var(--brass); background: rgba(199,162,82,0.05); }
.amenity-item h4{ font-size: 20px; color: var(--ivory); }
.amenity-item p{ font-size: 13.5px; line-height:1.7; color: rgba(247,242,231,0.62); }

/* ---------- Quote ---------- */
.quote-block{ text-align:center; max-width: 760px; margin: 0 auto; }
.quote-block blockquote{
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height:1.5;
  color: var(--ivory);
}
.quote-block cite{ display:block; margin-top: 26px; font-style:normal; font-size:13px; letter-spacing:0.08em; text-transform:uppercase; color: var(--brass); }

/* ---------- CTA band ---------- */
.cta-band{
  display:flex; align-items:center; justify-content:space-between; gap:30px;
  flex-wrap:wrap;
  padding: 70px 0;
}
.cta-band h2{ font-size: clamp(30px,4vw,44px); max-width:560px; }

/* ---------- Footer ---------- */
footer{
  background: #040404;
  color: rgba(247,242,231,0.7);
  padding: 80px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid h5{
  font-size: 12px; letter-spacing:0.12em; text-transform:uppercase; color: var(--brass);
  margin-bottom: 20px; font-family:var(--body); font-weight:700;
}
.footer-grid p, .footer-grid a{ font-size:14px; line-height:2.1; color: rgba(247,242,231,0.62); }
.footer-grid a:hover{ color: var(--brass); }
.footer-brand p{ margin-top:18px; max-width:280px; line-height:1.8; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 26px; font-size:12.5px; color: rgba(247,242,231,0.45);
  flex-wrap:wrap; gap:10px;
}
.social-row{ display:flex; gap:16px; }
.social-row a{
  width:36px; height:36px; border:1px solid var(--line-dark); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.social-row svg{ width:15px; height:15px; stroke: rgba(247,242,231,0.7); fill:none; }
.social-row a:hover{ border-color: var(--brass); }
.social-row a:hover svg{ stroke: var(--brass); }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Misc components used across pages ---------- */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:center;
}
.pillar-row{ display:grid; grid-template-columns: repeat(4,1fr); gap:26px; }
.pillar{ text-align:center; }
.pillar p.lbl{ margin-top:16px; font-family:var(--display); font-size:22px; }
.pillar p.desc{ margin-top:8px; font-size:13.5px; color:var(--stone); line-height:1.6; }

.timeline{ display:grid; grid-template-columns: repeat(3,1fr); gap:30px; }
.tl-item{ border-top:1px solid var(--line); padding-top:20px; }
.tl-year{ font-family:var(--display); font-size:34px; color:var(--brass); }
.tl-item p{ margin-top:10px; font-size:14.5px; color: rgba(247,242,231,0.65); line-height:1.7; }

.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.filter-btn{
  padding: 10px 22px; border:1px solid rgba(36,31,25,0.2); border-radius:30px;
  font-size:12.5px; letter-spacing:0.06em; text-transform:uppercase; font-weight:700;
  background:transparent; color:var(--charcoal); transition: all .25s var(--ease);
}
.filter-btn.active, .filter-btn:hover{ background: var(--ink-3); border-color:var(--ink-3); color:var(--ivory); }

.feature-icons{ display:flex; gap:22px; flex-wrap:wrap; margin-top:16px; }
.feature-icons span{ font-size:12px; color:var(--stone); display:flex; align-items:center; gap:6px; }
.feature-icons b{ color: var(--brass); }

/* Amenities page specifics */
.amenity-detail{
  display:grid; grid-template-columns: 90px 1fr; gap:26px;
  padding: 34px 0; border-bottom: 1px solid rgba(36,31,25,0.1);
}
.amenity-detail h3{ font-size:24px; }
.amenity-detail .hrs{ font-size:12.5px; color:var(--brass); font-weight:700; letter-spacing:0.04em; margin-top:6px; display:block; }
.amenity-detail p.desc{ margin-top:10px; color:#4d463c; line-height:1.75; font-size:14.5px; max-width:640px; }

.spa-feature{
  display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center;
}
.spa-media{ height:380px; border-radius: var(--arch-r) var(--arch-r) 6px 6px; overflow:hidden; position:relative; background: linear-gradient(160deg,#2a2416,#0a0a0a); }

.hours-table{ width:100%; border-collapse: collapse; }
.hours-table td{ padding: 16px 0; border-bottom:1px solid var(--line-dark); font-size:14.5px; }
.hours-table td:last-child{ text-align:right; color: var(--brass); font-weight:600; }

/* Contact page */
.contact-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:60px; }
.form-field{ margin-bottom: 22px; }
.form-field label{ display:block; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--stone); margin-bottom:8px; font-weight:700; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding: 15px 16px; border:1px solid rgba(36,31,25,0.2); border-radius:3px;
  font-family: var(--body); font-size:15px; background: var(--paper); color: var(--charcoal);
  transition: border-color .25s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color: var(--ink-3); outline:none; }
.form-row-2{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-note{ font-size:12.5px; color:var(--stone); margin-top:14px; }

.info-card{ background: var(--ink); color: var(--ivory); border-radius:6px; padding: 40px; }
.info-card .arch-icon{ margin-bottom:16px; }
.info-line{ display:flex; gap:16px; padding: 18px 0; border-bottom:1px solid var(--line-dark); }
.info-line:last-child{ border-bottom:none; }
.info-line h5{ font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--brass); margin-bottom:6px; }
.info-line p{ font-size:14.5px; color: rgba(247,242,231,0.75); line-height:1.6; }
.map-plate{
  margin-top:26px; height:200px; border-radius: 6px;
  background: linear-gradient(160deg, rgba(199,162,82,0.18), transparent 60%), var(--ink-3);
  position:relative; overflow:hidden;
  border:1px solid var(--line-dark);
}
.map-plate::before{
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(247,242,231,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,231,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-pin{ position:absolute; left:50%; top:50%; transform:translate(-50%,-70%); width:16px;height:16px; background:var(--brass); border-radius:50% 50% 50% 0; rotate:-45deg; }

.faq-item{ border-bottom:1px solid rgba(36,31,25,0.12); }
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding: 24px 0; width:100%; background:none; border:none; text-align:left;
  font-family:var(--display); font-size:20px; color:var(--charcoal);
}
.faq-q .plus{ font-family:var(--body); font-size:20px; color:var(--brass); transition: transform .3s var(--ease); flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .35s var(--ease); }
.faq-a-inner{ padding-bottom:24px; font-size:14.5px; color:#4d463c; line-height:1.75; max-width:640px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ height: 340px; order:-1; }
  .room-grid{ grid-template-columns: repeat(2,1fr); }
  .amenity-grid{ grid-template-columns: repeat(2,1fr); }
  .pillar-row{ grid-template-columns: repeat(2,1fr); }
  .timeline{ grid-template-columns: repeat(1,1fr); }
  .two-col{ grid-template-columns: 1fr; gap:40px; }
  .spa-feature{ grid-template-columns:1fr; gap:30px; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap:36px; }
}

@media (max-width: 760px){
  .nav-links{ display:none; }
  .nav-cta .btn{ display:none; }
  .burger{ display:block; }
  .section-pad{ padding: 72px 0; }
  .stat-row{ grid-template-columns: 1fr; }
  .room-grid{ grid-template-columns: 1fr; }
  .amenity-grid{ grid-template-columns: 1fr; }
  .pillar-row{ grid-template-columns: 1fr 1fr; }
  .cta-band{ flex-direction:column; align-items:flex-start; }
  .footer-grid{ grid-template-columns: 1fr; gap:34px; }
  .form-row-2{ grid-template-columns: 1fr; }
  .hero{ min-height: auto; padding: 130px 0 70px; }
  .hero-stat-float{ position:static; margin-top:20px; max-width:none; }
  .wrap{ padding: 0 22px; }
  .kicker-row{ margin-bottom:36px; }
}

@media (max-width: 480px){
  .pillar-row{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes pageFade{ from{ opacity:0; } to{ opacity:1; } }
body{ animation: pageFade .5s var(--ease) both; }

@keyframes heroIn{
  from{ opacity:0; transform: translateY(26px); }
  to{ opacity:1; transform:none; }
}
@keyframes visualIn{
  from{ opacity:0; transform: translateY(20px) scale(.97); }
  to{ opacity:1; transform:none; }
}
@keyframes floatSlow{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-16px); }
}
@keyframes floatSlowReverse{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(14px); }
}
@keyframes shimmer{
  0%{ background-position: -200% 0; }
  100%{ background-position: 200% 0; }
}
@keyframes softPulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(205,164,73,0.35); }
  50%{ box-shadow: 0 0 0 10px rgba(205,164,73,0); }
}

/* Hero entrance choreography — full hero (home) */
.hero-grid > .reveal.in:first-child > .eyebrow{ opacity:0; animation: heroIn .8s var(--ease) .05s forwards; }
.hero-grid > .reveal.in:first-child > h1{ opacity:0; animation: heroIn .8s var(--ease) .18s forwards; }
.hero-grid > .reveal.in:first-child > .hero-sub{ opacity:0; animation: heroIn .8s var(--ease) .34s forwards; }
.hero-grid > .reveal.in:first-child > .hero-cta{ opacity:0; animation: heroIn .8s var(--ease) .5s forwards; }
.hero-grid > .hero-visual.reveal.in{ opacity:0; animation: visualIn .9s var(--ease) .3s forwards; }
.hero-stat-float{ animation: floatSlow 6s ease-in-out infinite; animation-delay: 1.2s; }

/* Hero entrance choreography — small-hero (inner pages) */
.small-hero .wrap > .eyebrow.reveal.in{ opacity:0; animation: heroIn .8s var(--ease) .05s forwards; }
.small-hero .wrap > h1.reveal.in{ opacity:0; animation: heroIn .8s var(--ease) .18s forwards; }
.small-hero .wrap > .hero-sub.reveal.in{ opacity:0; animation: heroIn .8s var(--ease) .34s forwards; }

/* Floating decorative arch in the hero background */
.hero::after{
  content:"";
  position:absolute;
  right:-140px; top:8%;
  width:320px; height:420px;
  border: 1px solid rgba(205,164,73,0.14);
  border-radius: 210px 210px 0 0;
  animation: floatSlow 8s ease-in-out infinite;
  pointer-events:none;
  z-index:1;
}
.small-hero::after{ width:220px; height:280px; top:4%; }

/* Reveal-on-scroll: slightly springier curve, used with JS-assigned stagger delays */
.reveal{ transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* Nav link underline animates in on hover, not just active */
.nav-links a{ overflow: visible; }
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:1px; background: var(--brass);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after{ width:100%; }
.nav-links a.active::after{ width:100%; }

/* Logo hover */
.brand{ transition: opacity .3s var(--ease); }
.nav-logo-img{ transition: transform .45s var(--ease); }
.brand:hover .nav-logo-img{ transform: scale(1.05) rotate(-1deg); }

/* Sticky nav gains depth once page scrolls */
.site-nav.scrolled{ box-shadow: 0 12px 30px -18px rgba(0,0,0,0.6); }

/* Scroll progress bar */
.scroll-progress{
  position: fixed; top:0; left:0; height: 2px; width:0%;
  background: linear-gradient(90deg, var(--brass), var(--brass-soft));
  z-index: 200;
  transition: width .1s linear;
}

/* Buttons: soft shine sweep + brass CTA pulse */
.btn{ position:relative; overflow:hidden; isolation:isolate; }
.btn::before{
  content:"";
  position:absolute; top:0; left:-60%; width:35%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg);
  transition: left .55s var(--ease);
  z-index:1;
  pointer-events:none;
}
.btn:hover::before{ left:130%; }
.btn-brass{ animation: softPulse 3.2s ease-in-out infinite; }
.btn-brass:hover{ animation: none; }

/* Image zoom on hover — rooms, about, spa/location feature */
.room-media{ overflow:hidden; }
.room-media img{ transition: transform .7s var(--ease); }
.room-card:hover .room-media img{ transform: scale(1.08); }

.arch-frame img{ transition: transform .8s var(--ease); }
.arch-frame:hover img{ transform: scale(1.06); }

.spa-media img{ transition: transform .8s var(--ease); }
.spa-feature:hover .spa-media img{ transform: scale(1.06); }

/* Icon micro-interactions */
.arch-icon{ transition: transform .35s var(--ease), border-color .3s var(--ease), background .3s var(--ease); }
.amenity-item:hover .arch-icon{ transform: translateY(-3px) scale(1.06); border-color: var(--brass); }
.pillar .arch-icon{ transition: transform .4s var(--ease); }
.pillar:hover .arch-icon{ transform: rotate(-6deg) scale(1.08); }

/* Stat numbers pop slightly as they reveal */
.stat-card{ transition: transform .3s var(--ease), border-color .3s var(--ease); }
.stat-card:hover{ transform: translateY(-4px); border-color: var(--brass); }
.stat-card .num{ display:inline-block; }

/* Quote mark flourish */
.quote-block blockquote{ position:relative; }
.quote-block blockquote::before{
  content:"“";
  display:block;
  font-size:64px;
  line-height:1;
  color: var(--brass);
  opacity:.5;
  margin-bottom:6px;
  animation: floatSlowReverse 5s ease-in-out infinite;
}

/* Timeline / pillar markers gently float */
.tl-year{ display:inline-block; animation: floatSlow 6s ease-in-out infinite; }

/* FAQ plus icon subtle hover */
.faq-q{ transition: color .25s var(--ease); }
.faq-q:hover{ color: var(--ink-3); }
.faq-q:hover .plus{ transform: rotate(90deg); }

/* Mobile panel link stagger */
.mobile-panel a{
  opacity:0; transform: translateX(14px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-panel.open a{ opacity:1; transform:none; }
.mobile-panel.open a:nth-child(1){ transition-delay:.05s; }
.mobile-panel.open a:nth-child(2){ transition-delay:.1s; }
.mobile-panel.open a:nth-child(3){ transition-delay:.15s; }
.mobile-panel.open a:nth-child(4){ transition-delay:.2s; }
.mobile-panel.open a:nth-child(5){ transition-delay:.25s; }
.mobile-panel.open a:nth-child(6){ transition-delay:.3s; }

@media (prefers-reduced-motion: reduce){
  body, .hero-grid > .reveal.in:first-child > *, .hero-grid > .hero-visual.reveal.in,
  .small-hero .wrap > .reveal.in, .hero-stat-float, .hero::after, .btn-brass,
  .quote-block blockquote::before, .tl-year{
    animation: none !important;
  }
}

@media (max-width: 760px){
  .hero::after{ display:none; }
}

