:root {
  color-scheme: dark;
  --black:    #080604;
  --charcoal: #12100E;
  --deep:     #1A1612;
  --panel:    #211D19;
  --gold:     #C9A84C;
  --gold-dim: #8B6914;
  --gold-pale:#F0D98B;
  --silver:   #D1D5DB;
  --amber:    #D4783A;
  --cream:    #E8D9C0;
  --smoke:    #9A9087;
  --fog:      #8A827A; /* Improved from #5C5650 for WCAG AA contrast (4.5:1+) */
  --line:     rgba(201,168,76,0.18);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
}

/* ── Custom cursor accessibility: hide native cursor only when JS is active and fine pointer is detected ── */
body.custom-cursor-enabled {
  cursor: none;
}
body.custom-cursor-enabled a,
body.custom-cursor-enabled button,
body.custom-cursor-enabled input,
body.custom-cursor-enabled select,
body.custom-cursor-enabled textarea {
  cursor: none;
}

/* ── Accessibility: Focus States ── */
a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

/* ── Custom cursor (desktop only) ── */
.cursor {
  position:fixed; z-index:9999; pointer-events:none;
  width:10px; height:10px; border-radius:50%;
  background:var(--silver); transform:translate(-50%,-50%);
  transition:width .2s, height .2s, opacity .2s;
  mix-blend-mode:screen;
  display: none; /* Shown dynamically via class */
}
body.custom-cursor-enabled .cursor {
  display: block;
}

.cursor-ring {
  position:fixed; z-index:9998; pointer-events:none;
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(209,213,219,0.5); /* Silver ring */
  transform:translate(-50%,-50%);
  transition:all .15s ease; mix-blend-mode:screen;
  display: none; /* Shown dynamically via class */
}
body.custom-cursor-enabled .cursor-ring {
  display: block;
}

@media(pointer:coarse){
  body,
  body.custom-cursor-enabled,
  body.custom-cursor-enabled a,
  body.custom-cursor-enabled button,
  body.custom-cursor-enabled input,
  body.custom-cursor-enabled select,
  body.custom-cursor-enabled textarea {
    cursor: auto !important;
  }
  a, button, select, textarea, input, .nav-cta, .form-submit {
    cursor: pointer !important;
  }
  .cursor, .cursor-ring {
    display: none !important;
  }
}

/* ── Grain overlay ── */
body::before {
  content:''; position:fixed; inset:0; z-index:1; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size:180px; opacity:0.55;
}

/* ══ NAV ══ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:110;
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 60px;
  background:linear-gradient(to bottom,rgba(8,6,4,0.95) 0%,transparent 100%);
  transition:background .4s;
}
nav.scrolled {
  background:rgba(8,6,4,0.97);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}
.nav-logo {
  font-family:'Cinzel',serif; font-size:1.6rem; font-weight:600;
  letter-spacing:0.3em; color:var(--gold); text-decoration:none;
  z-index:110; position:relative;
  display:flex; align-items:center; gap:12px;
}
.nav-logo span { color:var(--cream); opacity:.6; }
.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}
.nav-links { display:flex; gap:40px; list-style:none; }
.nav-links a {
  font-family:'Cinzel',serif; font-size:.68rem; letter-spacing:.22em;
  text-transform:uppercase; color:var(--smoke); text-decoration:none;
  transition:color .3s; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px;
  background:var(--silver); transition:width .3s;
}
.nav-links a:hover { color:var(--silver); }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  font-family:'Cinzel',serif; font-size:.68rem; letter-spacing:.22em;
  text-transform:uppercase; color:var(--black); background:var(--gold);
  border:none; padding:10px 24px; text-decoration:none;
  transition:background .3s, transform .2s;
}
.nav-cta:hover { background:var(--gold-pale); transform:translateY(-1px); }

/* ── Hamburger ── */
.hamburger {
  display:none; flex-direction:column; justify-content:center;
  gap:5px; background:none; border:none; cursor:pointer;
  padding:8px; z-index:110; position:relative;
}
.hamburger span {
  display:block; width:24px; height:2.5px; /* Increased from 1px for better visibility */
  background:var(--gold); transition:transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

/* ── Mobile nav overlay ── */
.mobile-nav {
  display:none; position:fixed; inset:0; z-index:105;
  background:rgba(8,6,4,0.98);
  flex-direction:column; align-items:center; justify-content:center; gap:40px;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-family:'Cinzel',serif; font-size:1.1rem; letter-spacing:.3em;
  text-transform:uppercase; color:var(--smoke); text-decoration:none; transition:color .3s;
}
.mobile-nav a:hover { color:var(--gold); }
.mobile-nav .mobile-cta {
  margin-top:16px; color:var(--black); background:var(--gold); padding:14px 36px;
}
.mobile-nav .mobile-cta:hover { background:var(--gold-pale); color:var(--black); }

/* ══ HERO ══ */
#hero {
  position:relative; height:100vh; min-height:600px;
  padding-top:90px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center; overflow:hidden;
}

/* ── 3D Canvas Container ── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Positive z-index is safe and doesn't slip behind the body background */
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(212,120,58,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 30% 40%, rgba(201,168,76,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 70% 70%, rgba(26,22,18,0.95) 0%, transparent 70%),
    var(--black);
  z-index: 0;
}
.blob { position:absolute; border-radius:50%; filter:blur(80px); pointer-events:none; animation:drift 12s ease-in-out infinite alternate; z-index: 0; }
.blob-1 { width:500px; height:500px; background:rgba(201,168,76,0.03); top:-100px; left:-150px; animation-duration:14s; }
.blob-2 { width:400px; height:400px; background:rgba(212,120,58,0.04); bottom:100px; right:-100px; animation-duration:18s; animation-delay:-6s; }
.blob-3 { width:300px; height:300px; background:rgba(209,213,219,0.02); top:30%; left:60%; animation-duration:10s; animation-delay:-3s; }
@keyframes drift { from{transform:translate(0,0) scale(1);} to{transform:translate(30px,20px) scale(1.08);} }

/* Content overlay elements on top of the 3D scene */
.hero-rule, .hero-tag, .hero-logo-wrap, .hero-est, .hero-sub, .hero-divider, .hero-scroll {
  position: relative;
  z-index: 5; /* Stacked clearly on top of the canvas (z-index 1) and background (z-index 0) */
}
.hero-rule { width:1px; height:70px; background:linear-gradient(to bottom,transparent,var(--gold),transparent); margin-bottom:40px; animation:fadeUp 1.2s ease both; }
.hero-tag { font-family:'Cinzel',serif; font-size:0.95rem; font-weight:600; letter-spacing:0.4em; color:var(--gold-pale); text-transform:uppercase; margin-bottom:28px; animation:fadeUp 1s ease 0.2s both; text-shadow: 0 2px 8px rgba(0,0,0,0.85); }
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s ease 0.4s both;
  margin: 10px 0;
}
.hero-logo-img {
  width: clamp(220px, 35vw, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(201,168,76,0.12)) drop-shadow(0 4px 15px rgba(0,0,0,0.7));
}
.hero-title { font-family:'Cinzel',serif; font-size:clamp(5rem,13vw,11rem); font-weight:500; line-height:.9; letter-spacing:.15em; color:var(--cream); animation:fadeUp 1s ease 0.4s both; text-shadow:0 0 40px rgba(0,0,0,0.8), 0 2px 12px rgba(0,0,0,0.9); }
.hero-title em { display:block; color:var(--silver); font-style:normal; text-shadow:0 0 80px rgba(209,213,219,0.15), 0 2px 10px rgba(0,0,0,0.9); }
.hero-est { font-family:'Cinzel',serif; font-size:0.9rem; font-weight:500; letter-spacing:0.4em; color:var(--silver); margin-top:20px; text-transform:uppercase; animation:fadeUp 1s ease 0.5s both; text-shadow: 0 2px 8px rgba(0,0,0,0.85); }
.hero-sub { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:400; font-style:italic; letter-spacing:.12em; color:var(--cream); margin-top:34px; animation:fadeUp 1s ease 0.6s both; text-shadow: 0 2px 8px rgba(0,0,0,0.9); }
.hero-divider { display:flex; align-items:center; gap:16px; margin-top:50px; animation:fadeUp 1s ease 0.8s both; }
.hero-divider-line { flex:1; max-width:80px; height:1px; background:var(--line); }
.hero-divider-dot { width:4px; height:4px; border-radius:50%; background:var(--gold); }
.hero-scroll { position:absolute; bottom:40px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; font-family:'Cinzel',serif; font-size:.6rem; letter-spacing:.3em; color:var(--smoke); animation:fadeIn 2s ease 1.5s both; text-shadow: 0 1px 4px rgba(0,0,0,0.9); }
.scroll-line { width:1px; height:50px; background:linear-gradient(to bottom,var(--silver),transparent); animation:scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:.4;} 50%{transform:scaleY(1.3);opacity:.8;} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

/* ══ SECTION SHARED ══ */
section { position:relative; z-index:2; }
.section-inner { max-width:1200px; margin:0 auto; padding:120px 60px; }
.section-label {
  font-family:'Cinzel',serif; font-size:.62rem; letter-spacing:.4em;
  color:var(--gold); text-transform:uppercase;
  display:flex; align-items:center; gap:16px; margin-bottom:20px;
}
.section-label::after { content:''; flex:1; max-width:60px; height:1px; background:var(--gold-dim); }

/* ══ ORNAMENT (Updated with Crescent Moon) ══ */
.ornament { display:flex; align-items:center; gap:16px; margin:24px 0; }
.ornament-line { flex:1; max-width: 60px; height:1px; background:var(--line); }
.ornament-moon { fill: var(--silver); opacity: 0.8; }

/* ══ INTRO ══ */
#intro { background:var(--charcoal); }
#intro .section-inner { display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:center; }
.intro-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,4vw,3.5rem); font-weight:300; line-height:1.25; color:var(--cream); margin-bottom:12px; }
.intro-text h2 em { color:var(--gold); font-style:italic; }
.intro-text p { font-size:1.05rem; font-weight:300; line-height:1.95; color:var(--smoke); margin-bottom:20px; }

/* ── Premium icon cards ── */
.intro-visual { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:12px; height:500px; }
.iv-card {
  background:var(--deep); border:1px solid var(--line);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px; padding:30px 20px;
  transition:border-color .4s, background .4s, transform .4s;
  position:relative; overflow:hidden;
}
.iv-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(to right,transparent,var(--silver),transparent);
  transform:scaleX(0); transition:transform .5s;
}
.iv-card:hover { border-color:var(--gold-dim); background:var(--panel); transform:translateY(-4px); }
.iv-card:hover::before { transform:scaleX(1); }
.iv-card:first-child { grid-row:1/3; }

.iv-icon-wrap {
  width:48px; height:48px;
  display:flex; align-items:center; justify-content:center;
  color:var(--silver); opacity:.7;
  transition:opacity .4s, color .4s;
}
.iv-card:hover .iv-icon-wrap { opacity:1; color:var(--gold); }
.iv-icon-wrap svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.2; stroke-linecap:round; stroke-linejoin:round; }

.iv-label { font-family:'Cinzel',serif; font-size:.65rem; letter-spacing:.25em; text-transform:uppercase; color:var(--smoke); }
.iv-sub { font-size:.82rem; font-weight:300; color:var(--smoke); text-align:center; line-height:1.6; }

/* ══ EXPERIENCE ══ */
#experience { background:var(--charcoal); }
.exp-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--line); margin-top:60px; }
.exp-item {
  background:var(--charcoal); padding:50px;
  display:flex; gap:30px; align-items:flex-start;
  transition:background .4s, border-color .4s; position:relative; overflow:hidden;
  cursor: pointer;
}
.exp-item::after { content:''; position:absolute; bottom:0; left:50px; right:50px; height:1px; background:linear-gradient(to right,transparent,var(--line),transparent); }
.exp-item:hover { background:var(--deep); }
.exp-item:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.exp-num { font-family:'Cinzel',serif; font-size:3rem; font-weight:400; color:var(--line); line-height:1; flex-shrink:0; transition:color .4s; }
.exp-item:hover .exp-num { color:var(--gold); }
.exp-body h3 { font-family:'Cinzel',serif; font-size:1rem; letter-spacing:.15em; color:var(--cream); margin-bottom:12px; }
.exp-body p { font-size:.95rem; font-weight:300; color:var(--smoke); line-height:1.85; }

.exp-view-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.exp-item:hover .exp-view-badge {
  opacity: 1;
  transform: translateX(4px);
  color: var(--gold-pale);
}

@media (min-width: 901px) {
  .exp-grid > .exp-item:last-child:nth-child(odd) {
    grid-column: span 2;
  }
}

/* ══ EXPERIENCE MODAL LIGHTBOX ══ */
.exp-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.exp-modal.active {
  opacity: 1;
  visibility: visible;
}
.exp-modal[hidden] {
  display: none;
}

.exp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.exp-modal-card {
  position: relative;
  z-index: 2001;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  background: var(--charcoal);
  border: 1px solid var(--gold-dim);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 168, 76, 0.12);
  display: flex;
  flex-direction: column;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.exp-modal.active .exp-modal-card {
  transform: scale(1) translateY(0);
}

.exp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2005;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.exp-modal-close:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.exp-modal-media {
  position: relative;
  width: 100%;
  height: 420px;
  background: #080706;
  overflow: hidden;
}
.exp-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.exp-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2002;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.exp-modal-nav:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.exp-modal-prev { left: 16px; }
.exp-modal-next { right: 16px; }

.exp-modal-info {
  padding: 28px 36px;
  background: var(--charcoal);
  overflow-y: auto;
}
.exp-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.exp-modal-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold);
}
.exp-modal-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--cream);
}
.exp-modal-info p {
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.75;
  margin-bottom: 12px;
}
.exp-modal-caption {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.8;
}

@media (max-width: 600px) {
  .exp-modal-media { height: 260px; }
  .exp-modal-info { padding: 20px 24px; }
  .exp-modal-nav { width: 36px; height: 36px; font-size: 1rem; }
}

/* ══ MOOD / GALLERY ══ */
#mood { background:var(--black); }
#mood .section-inner { text-align:center; }
.mood-heading { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4vw,3.2rem); font-weight:300; color:var(--cream); margin-bottom:60px; }
.mood-heading em { color:var(--silver); font-style:italic; }
.mood-masonry {
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:260px 260px;
  gap:8px;
}
.mood-card { position:relative; overflow:hidden; display:flex; align-items:flex-end; border: 1px solid var(--line); }
.mood-card:first-child { grid-row:1/3; }
.mood-bg {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  filter: grayscale(20%) brightness(0.8);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .mood-card:hover .mood-bg {
    transform:scale(1.06);
    filter: grayscale(0%) brightness(1);
  }
}

/* Carousel Layout */
.mood-carousel { position:relative; }
.carousel-slide {
  position:absolute; inset:0;
  width:100%; height:100%;
  opacity:0;
  z-index:0;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.carousel-slide.active {
  opacity:1;
  z-index:1;
}
@media (hover: hover) {
  .mood-carousel:hover .carousel-slide.active {
    transform:scale(1.06);
    filter: grayscale(0%) brightness(1);
  }
}

/* Dark overlay on top of image */
.mood-card::after {
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(to top, rgba(8,6,4,0.85) 0%, rgba(8,6,4,0.15) 60%, transparent 100%);
  transition:opacity .4s;
}
.mood-card:hover::after { opacity:.8; }

.mood-label {
  position:relative; z-index:2; padding:28px 24px;
  font-family:'Cinzel',serif; font-size:.65rem; letter-spacing:.3em;
  text-transform:uppercase; color:var(--gold-pale);
  display:flex; align-items:center; gap:10px; width:100%;
}
.mood-label::before { content:''; display:block; width:20px; height:1px; background:var(--silver); opacity:.6; }

/* ══ QUOTE ══ */
#quote { background:var(--deep); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
#quote .section-inner { padding:80px 60px; text-align:center; }
blockquote { font-family:'Cormorant Garamond',serif; font-size:clamp(1.6rem,3.5vw,2.8rem); font-weight:300; font-style:italic; line-height:1.5; color:var(--cream); max-width:800px; margin:0 auto; }
blockquote .qmark { color:var(--silver); }
blockquote cite { display:block; font-size:.75rem; font-style:normal; font-family:'Cinzel',serif; letter-spacing:.3em; color:var(--smoke); margin-top:28px; }

/* ══ APPLY / CONTACT ══ */
#apply { background:var(--black); }
#apply .section-inner { display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:start; }
.apply-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4vw,3.2rem); font-weight:300; color:var(--cream); margin-bottom:12px; line-height:1.2; }
.apply-text h2 em { color:var(--gold); font-style:italic; }
.apply-text p { font-size:.95rem; font-weight:300; color:var(--smoke); line-height:1.9; margin-bottom:20px; }
.apply-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 12px rgba(201,168,76,0.18)) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  display: block;
}
.apply-details { display:flex; flex-direction:column; gap:20px; margin-top:40px; }
.apply-detail { display:flex; gap:16px; align-items:center; padding-bottom:20px; border-bottom:1px solid var(--line); }
.apply-detail-icon { color:var(--silver); font-size:1.1rem; }
.apply-detail-info small { display:block; font-family:'Cinzel',serif; font-size:.58rem; letter-spacing:.3em; text-transform:uppercase; color:var(--smoke); margin-bottom:4px; opacity:0.8; }
.apply-detail-info span { font-size:.95rem; color:var(--smoke); }
.apply-detail-info a { color:var(--smoke); text-decoration:none; transition:color 0.3s; }
.apply-detail-info a:hover { color:var(--gold); }

/* Form */
form { display:flex; flex-direction:column; gap:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-group label { font-family:'Cinzel',serif; font-size:.6rem; letter-spacing:.3em; text-transform:uppercase; color:var(--smoke); opacity:0.8; }
.form-group input,
.form-group select,
.form-group textarea {
  background:var(--panel); border:1px solid var(--line);
  color:var(--cream); font-family:'Cormorant Garamond',serif;
  font-size:1rem; font-weight:300; padding:14px 16px; outline:none;
  transition:border-color .3s, box-shadow .3s; -webkit-appearance:none; border-radius:0; min-height:48px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #d4af37; /* Premium Accent Color */
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}
.form-group select option { background:var(--panel); color: var(--cream); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-submit {
  font-family:'Cinzel',serif; font-size:.68rem; letter-spacing:.25em;
  text-transform:uppercase; color:var(--black); background:var(--gold);
  border:none; padding:16px 40px; cursor:pointer;
  transition:background .3s, transform .2s; align-self:flex-start; min-height:48px;
}
.form-submit:hover { background:var(--gold-pale); transform:translateY(-1px); }
.form-submit:disabled { opacity:.5; cursor:not-allowed; transform:none; }

/* Form feedback */
.form-msg {
  font-family:'Cinzel',serif; font-size:.65rem; letter-spacing:.2em;
  padding:14px 18px; display:none;
}
.form-msg.success { background:rgba(201,168,76,0.1); border:1px solid var(--gold-dim); color:var(--gold-pale); display:block; }
.form-msg.error { background:rgba(180,60,60,0.1); border:1px solid rgba(180,60,60,0.4); color:#e09090; display:block; }

/* WhatsApp float button */
.whatsapp-btn {
  position:fixed; bottom:28px; right:28px; z-index:200;
  width:54px; height:54px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.35);
  transition:transform .3s, box-shadow .3s;
  text-decoration:none;
}
.whatsapp-btn:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width:28px; height:28px; fill:white; }

/* ══ FOOTER ══ */
footer { background:var(--charcoal); border-top:1px solid var(--line); }
.footer-inner { max-width:1200px; margin:0 auto; padding:60px 60px 40px; display:grid; grid-template-columns:2fr 1fr 1fr; gap:60px; }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6));
}
.footer-logo-text {
  font-family:'Cinzel',serif; font-size:2rem; letter-spacing:.3em; color:var(--gold);
}
.footer-tagline { font-size:.9rem; font-weight:300; font-style:italic; color:var(--smoke); line-height:1.7; }
.footer-col h4 { font-family:'Cinzel',serif; font-size:.62rem; letter-spacing:.3em; text-transform:uppercase; color:var(--silver); margin-bottom:20px; opacity:0.8; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:.9rem; font-weight:300; color:var(--smoke); text-decoration:none; transition:color .3s; }
.footer-col ul li a:hover { color:var(--cream); }
.footer-bottom { max-width:1200px; margin:0 auto; padding:20px 60px; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; }
.footer-bottom p { font-size:.78rem; color:var(--smoke); letter-spacing:.05em; }

/* ══ SCROLL PROGRESS BAR ══ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), var(--gold-pale));
  box-shadow: 0 0 10px rgba(201,168,76,0.5);
  z-index: 1000;
  transition: width 0.1s ease-out;
  pointer-events: none;
}

/* ══ ENHANCED SCROLL REVEAL ANIMATIONS ══ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ══ RESPONSIVE ══ */
@media(max-width:900px){
  nav { padding:20px 24px; }
  .nav-links,.nav-cta { display:none; }
  .hamburger { display:flex; }
  .section-inner { padding:80px 24px; }
  #intro .section-inner, #apply .section-inner { grid-template-columns:1fr; gap:60px; }
  .intro-visual { height:320px; }
  .exp-grid { grid-template-columns:1fr; }
  .exp-item { padding:36px 24px; }
  .mood-masonry { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .mood-card:first-child { grid-row:auto; grid-column:1/3; height:280px; }
  .mood-card { height:200px; }
  .footer-inner { grid-template-columns:1fr; gap:40px; padding:48px 24px 32px; }
  .footer-bottom { padding:20px 24px; flex-direction:column; gap:8px; text-align:center; }
  .form-row { grid-template-columns:1fr; }
  .form-submit { align-self:stretch; text-align:center; }
  #quote .section-inner { padding:60px 24px; }
  .whatsapp-btn { bottom:20px; right:20px; width:48px; height:48px; }
}

@media(max-width:480px){
  .hero-rule { height:40px; }
  .hero-tag { font-size:.55rem; letter-spacing:.3em; }
  .hero-sub { font-size:.95rem; }
  .section-inner { padding:64px 20px; }
  .exp-item { flex-direction:column; gap:12px; }
  .exp-num { font-size:2rem; }
  .mood-masonry { grid-template-columns:1fr; }
  .mood-card:first-child { grid-column:auto; height:260px; }
  .mood-card { height:180px; }
  blockquote { font-size:1.4rem; }
  .iv-card:first-child { grid-row:auto; }
  .intro-visual { grid-template-columns:1fr; grid-template-rows:auto; height:auto; gap:8px; }
  .iv-card { padding:22px 16px; min-height:100px; }
}

/* ══ UPDATES & EVENTS SECTION ══ */
#updates { padding:100px 0 80px; }

.updates-header { text-align:center; margin-bottom:48px; }
.updates-header h2 { font-size:clamp(2rem,5vw,3.4rem); }

.updates-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  max-width:860px;
  margin:0 auto;
}

.update-card {
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:16px;
  padding:36px 32px;
  display:flex;
  flex-direction:column;
  gap:16px;
  transition:border-color 0.4s ease, box-shadow 0.4s ease;
}
.update-card:hover {
  border-color:var(--gold-dim);
  box-shadow:0 0 30px rgba(201,168,76,0.08);
}

.update-card--featured {
  border-left:3px solid var(--gold);
  background:linear-gradient(135deg, var(--panel) 0%, rgba(201,168,76,0.04) 100%);
}

.update-badge {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 14px;
  border-radius:20px;
  font-family:'Outfit',sans-serif;
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  background:rgba(201,168,76,0.15);
  color:var(--gold);
  width:fit-content;
  animation:badgePulse 2.5s ease-in-out infinite;
}
.update-badge--default {
  background:rgba(209,213,219,0.1);
  color:var(--smoke);
  animation:none;
}

@keyframes badgePulse {
  0%,100% { box-shadow:0 0 0 0 rgba(201,168,76,0.3); }
  50%     { box-shadow:0 0 12px 4px rgba(201,168,76,0.12); }
}

.update-card h3 {
  font-family:'Cinzel',serif;
  font-size:1.35rem;
  color:var(--cream);
  line-height:1.3;
}

.update-card p {
  font-size:1.05rem;
  color:var(--fog);
  line-height:1.7;
}

.update-highlight {
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px 20px;
  background:rgba(201,168,76,0.08);
  border:1px solid rgba(201,168,76,0.18);
  border-radius:10px;
  font-size:1rem;
  color:var(--cream);
  line-height:1.6;
}
.update-highlight-icon { font-size:1.4rem; flex-shrink:0; margin-top:2px; }
.update-highlight strong { color:var(--gold-pale); }

.update-meta {
  font-family:'Outfit',sans-serif;
  font-size:0.78rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--smoke);
  margin-top:auto;
}

.update-cta {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:12px 24px;
  border:1px solid var(--gold-dim);
  border-radius:8px;
  color:var(--gold);
  font-family:'Outfit',sans-serif;
  font-size:0.9rem;
  font-weight:600;
  letter-spacing:0.06em;
  text-decoration:none;
  transition:all 0.3s ease;
  margin-top:auto;
  width:fit-content;
}
.update-cta:hover {
  background:var(--gold);
  color:var(--black);
  border-color:var(--gold);
}

@media(max-width:768px){
  .updates-grid { grid-template-columns:1fr; }
  .updates-grid > .update-card:last-child { grid-column: auto; }
  .update-card { padding:28px 22px; }
}

/* ── Touch target sizes for mobile ── */
@media(pointer:coarse){
  .nav-links a, .nav-cta { min-height:44px; display:flex; align-items:center; }
  .form-submit { min-height:52px; }
  .mobile-nav a { min-height:48px; display:flex; align-items:center; }
}

/* ══ REDUCED MOTION ACCESSIBILITY ══ */
@media (prefers-reduced-motion: reduce) {
  /* Disable hero entrance animations — show content instantly */
  .hero-rule, .hero-tag, .hero-logo-wrap, .hero-title, .hero-est, .hero-sub, .hero-divider, .hero-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Disable blob drift and scroll-line pulse */
  .blob { animation: none !important; }
  .scroll-line { animation: none !important; opacity: 0.6; }

  /* Disable scroll-reveal transitions */
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .scroll-progress { display: none !important; }

  /* Disable mood card hover scale animation */
  .mood-bg { transition: none !important; }

  /* Hide the Three.js canvas entirely */
  #hero-canvas { display: none !important; }
}
