:root {
  --navy: #0F1C2E;
  --navy-deep: #080f1a;
  --navy-light: #1a2d45;
  --navy-mid: #132236;
  --gold: #C6A75C;
  --gold-light: #d4ba7a;
  --gold-dark: #a88b3d;
  --gold-glow: rgba(198,167,92,0.15);
  --cream: #F5F5F0;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-body: #4a4a4a;
  --text-light: #8a8a8a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
.skip-link {
  position: absolute; top: -100px; left: 16px; padding: 12px 24px;
  background: var(--gold); color: var(--navy); z-index: 10000;
  font-weight: 700; text-decoration: none; border-radius: 0 0 4px 4px;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
noscript .noscript-msg {
  background: var(--navy); color: var(--gold); text-align: center;
  padding: 16px; font-size: 14px;
}
body { font-family: 'Montserrat', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ===== UTILITIES ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ===== NAV ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px; height: 80px; display: flex; align-items: center; justify-content: space-between;
  background: transparent; transition: all 0.5s cubic-bezier(.16,1,.3,1);
}
.navbar.scrolled {
  height: 64px; background: rgba(15,28,46,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(198,167,92,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.nav-logo-text {
  font-family: 'Cinzel', serif; font-size: 28px; font-weight: 700; color: var(--gold);
  letter-spacing: 3px; transition: font-size 0.4s;
}
.navbar.scrolled .nav-logo-text { font-size: 24px; }
.nav-logo-sub {
  font-family: 'Cinzel', serif; font-size: 12px; font-weight: 600; color: var(--white);
  letter-spacing: 3px; text-transform: uppercase; opacity: 0.85; margin-top: -2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.75); text-decoration: none;
  letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
  background: var(--gold); transition: all 0.4s cubic-bezier(.16,1,.3,1); transform: translateX(-50%);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }
@media (max-width: 960px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0;
    background: rgba(15,28,46,0.98); backdrop-filter: blur(20px); padding: 32px; gap: 24px;
    border-bottom: 1px solid rgba(198,167,92,0.15);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 750px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy-deep);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s cubic-bezier(.16,1,.3,1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide-img {
  position: absolute; inset: -20px;
  background-size: cover; background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hero-slide:nth-child(2) .hero-slide-img { animation-delay: -3s; animation-direction: alternate-reverse; }
.hero-slide:nth-child(3) .hero-slide-img { animation-delay: -6s; }
.hero-slide:nth-child(4) .hero-slide-img { animation-delay: -9s; animation-direction: alternate-reverse; }
.hero-slide:nth-child(5) .hero-slide-img { animation-delay: -12s; }
.hero-slide:nth-child(6) .hero-slide-img { animation-delay: -15s; animation-direction: alternate-reverse; }
.hero-slide:nth-child(7) .hero-slide-img { animation-delay: -18s; }
.hero-slide:nth-child(8) .hero-slide-img { animation-delay: -2s; animation-direction: alternate-reverse; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8,15,26,0.55) 0%,
    rgba(15,28,46,0.15) 35%,
    rgba(15,28,46,0.10) 55%,
    rgba(8,15,26,0.70) 100%
  );
}
.hero-content {
  position: relative; z-index: 3; text-align: center; padding: 0 24px;
  animation: heroFadeIn 1.8s cubic-bezier(.16,1,.3,1);
}
@keyframes heroFadeIn { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
.hero-badge {
  display: inline-block; padding: 8px 24px;
  border: 1px solid rgba(198,167,92,0.35);
  font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--white); margin-bottom: 28px; border-radius: 2px;
  background: rgba(15,28,46,0.35); backdrop-filter: blur(10px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-logo {
  font-family: 'Cinzel', serif; font-size: clamp(48px, 10vw, 90px); font-weight: 800; color: var(--white);
  letter-spacing: 14px; line-height: 1; margin-bottom: 10px;
  text-shadow: 0 2px 60px rgba(0,0,0,0.4);
}
.hero-name {
  font-family: 'Cinzel', serif; font-size: clamp(16px, 3vw, 26px); font-weight: 400; color: var(--gold);
  letter-spacing: 6px; margin-bottom: 20px;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400; font-style: italic; color: rgba(255,255,255,0.75);
  letter-spacing: 1px; margin-bottom: 44px;
}
.hero-cta {
  display: inline-block; padding: 18px 52px; background: var(--gold);
  color: var(--navy); font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.5s cubic-bezier(.16,1,.3,1); border-radius: 2px;
  box-shadow: 0 4px 20px rgba(198,167,92,0.25);
}
.hero-cta:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(198,167,92,0.35); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; text-align: center;
  animation: float 3s ease-in-out infinite;
}
.hero-scroll-line { display: block; width: 1px; height: 40px; background: linear-gradient(transparent, var(--gold)); margin: 10px auto 0; }
@keyframes float { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }

.hero-indicators {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 12px;
}
.hero-dot {
  width: 32px; height: 3px; background: rgba(255,255,255,0.3); border: none;
  cursor: pointer; transition: all 0.5s; border-radius: 2px;
  padding: 20px 0; background-clip: content-box;
}
.hero-dot.active { background: var(--gold); width: 48px; background-clip: content-box; }

/* ===== SECTIONS ===== */
section { padding: 120px 60px; }
@media (max-width: 768px) { section { padding: 80px 24px; } }
.section-label {
  font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 5px;
  text-transform: uppercase; text-align: center; margin-bottom: 14px;
}
h2.section-title, .section-title {
  font-family: 'Cinzel', serif; font-size: clamp(28px, 4vw, 42px); font-weight: 600;
  text-align: center; margin-bottom: 18px; color: var(--navy);
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic;
  color: var(--text-light); text-align: center; margin-bottom: 16px;
}
.section-desc {
  font-size: 15px; color: var(--text-body); text-align: center;
  max-width: 620px; margin: 0 auto 64px; line-height: 1.9; font-weight: 300;
}
.gold-line {
  width: 50px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 36px;
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1200px; margin: 0 auto; align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-img-wrap { position: relative; }
.about-img {
  position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(15,28,46,0.12);
}
.about-img > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-img::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(198,167,92,0.2); border-radius: 4px;
}
.about-img-accent {
  position: absolute; top: -20px; right: -20px; width: 160px; height: 160px;
  border: 2px solid var(--gold); border-radius: 4px; opacity: 0.3; z-index: -1;
}
.about-img-badge {
  position: absolute; bottom: 24px; right: 24px; background: var(--navy);
  color: var(--gold); padding: 14px 24px; font-family: 'Cinzel', serif;
  font-size: 13px; letter-spacing: 2px; border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.about-text h2.about-heading {
  font-family: 'Cinzel', serif; font-size: 32px; color: var(--navy);
  margin-bottom: 8px; font-weight: 600; line-height: 1.3; text-align: left;
}
.about-text .about-italic {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic;
  color: var(--gold-dark); margin-bottom: 24px;
}
.about-text p { font-size: 15px; color: var(--text-body); line-height: 1.9; margin-bottom: 16px; font-weight: 300; }
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px;
  padding-top: 36px; border-top: 1px solid rgba(198,167,92,0.2);
}
@media (max-width: 520px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.about-stat-num {
  font-family: 'Cinzel', serif; font-size: 40px; font-weight: 700; color: var(--gold);
}
.about-stat-lbl { font-size: 12px; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* ===== EXPERIENCES ===== */
.experiences { background: var(--white); }
.experiences .exp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; column-gap: 20px;
  max-width: 100%; margin: 0 auto; padding: 0 40px;
}
@media (max-width: 900px) { .experiences .exp-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .experiences .exp-grid { grid-template-columns: 1fr; gap: 28px; } }
.exp-card {
  position: relative; border-radius: 16px; overflow: hidden; min-height: 420px;
  cursor: pointer; box-shadow: 0 4px 20px rgba(15,28,46,0.10);
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.5s cubic-bezier(.16,1,.3,1);
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15,28,46,0.18);
}
.exp-card .exp-card-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}
.exp-card:hover .exp-card-bg { transform: scale(1.06); }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,28,46,0.82) 100%);
  transition: background 0.4s;
}
.exp-card:hover .exp-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(15,28,46,0.90) 100%);
}
.exp-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2;
}
.exp-card-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 8px;
}
.exp-card-title {
  font-family: 'Cinzel', serif; font-size: 20px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.exp-card-text {
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6;
  max-height: 0; overflow: hidden; transition: max-height 0.5s, opacity 0.4s; opacity: 0;
}
.exp-card:hover .exp-card-text { max-height: 80px; opacity: 1; }

/* ===== PROPERTIES ===== */
.properties { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.properties::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, rgba(198,167,92,0.04), transparent 70%);
}
.properties .section-title { color: var(--white); }
.properties .section-desc { color: rgba(255,255,255,0.55); }
.properties .section-label { color: var(--gold); }
.properties .section-subtitle { color: rgba(198,167,92,0.6); }

.prop-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 56px; flex-wrap: wrap; }
.prop-tab {
  padding: 12px 32px; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border: 1px solid rgba(198,167,92,0.25); background: transparent;
  color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.4s; border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
}
.prop-tab:hover { border-color: var(--gold); color: var(--gold); }
.prop-tab.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.prop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px;
  max-width: 1260px; margin: 0 auto;
}
@media (max-width: 420px) { .prop-grid { grid-template-columns: 1fr; } }
.prop-card {
  position: relative; border-radius: 8px; overflow: hidden;
  background: var(--navy-mid); border: 1px solid rgba(198,167,92,0.08);
  transition: all 0.5s cubic-bezier(.16,1,.3,1); cursor: pointer;
  text-decoration: none; color: var(--white); display: block;
}
.prop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198,167,92,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.prop-card-img {
  height: 240px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
}
.prop-card:hover .prop-card-img { height: 260px; }
.prop-card-img::before {
  content: ''; position: absolute; inset: 0; background-size: inherit; background-position: inherit;
  background-image: inherit; transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}
.prop-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(transparent, rgba(8,15,26,0.85));
}
.prop-card-type {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 6px 14px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; background: var(--gold); color: var(--navy); border-radius: 2px;
}
.prop-card-stars {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  font-size: 12px; color: var(--gold); letter-spacing: 2px;
}
.prop-card-visit {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  padding: 8px 20px; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; background: rgba(198,167,92,0.9); color: var(--navy);
  border-radius: 2px; opacity: 0; transform: translateY(8px);
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
}
.prop-card:hover .prop-card-visit { opacity: 1; transform: translateY(0); }
.prop-card-body { padding: 24px; }
.prop-card-name {
  font-family: 'Cinzel', serif; font-size: 18px; font-weight: 600; margin-bottom: 6px;
  transition: color 0.3s;
}
.prop-card:hover .prop-card-name { color: var(--gold); }
.prop-card-loc {
  font-size: 12px; color: var(--gold-light); letter-spacing: 1.5px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.prop-card-loc::before { content: '\25C8'; font-size: 8px; }
.prop-card-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; }
.prop-card-divider { width: 30px; height: 1px; background: var(--gold); margin: 14px 0; opacity: 0.3; }
.prop-card-badge-soon {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,15,26,0.55); backdrop-filter: blur(2px);
  pointer-events: none;
}
.prop-card-badge-soon span {
  padding: 14px 36px; background: var(--gold); color: var(--navy);
  font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; border-radius: 2px;
  box-shadow: 0 8px 32px rgba(198,167,92,0.35);
  animation: pulseBadge 2.5s ease-in-out infinite;
}
@keyframes pulseBadge { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.04); } }
.prop-card.opening-soon { pointer-events: none; }
.prop-card.opening-soon .prop-card-visit { display: none; }

/* ===== EXPERIENCE ===== */
.experience { background: var(--navy-deep); position: relative; overflow: hidden; }
.experience .section-title { color: var(--white); }
.experience .section-label { color: var(--gold); }
.experience .section-subtitle { color: rgba(198,167,92,0.5); }
.experience .exp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 768px) { .experience .exp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .experience .exp-grid { grid-template-columns: 1fr; } }
.exp-item {
  padding: 48px 32px; text-align: center; position: relative;
  border-right: 1px solid rgba(198,167,92,0.08);
}
.exp-item:last-child { border-right: none; }
@media (max-width: 768px) {
  .exp-item { border-right: none; border-bottom: 1px solid rgba(198,167,92,0.08); }
  .exp-item:last-child { border-bottom: none; }
}
.exp-num { font-family: 'Cinzel', serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; }
.exp-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 10px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ===== TESTIMONIAL ===== */
.testimonial { background: var(--cream); position: relative; }
.testimonial-card {
  max-width: 800px; margin: 0 auto; text-align: center; padding: 0 40px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 3vw, 28px);
  font-style: italic; color: var(--navy); line-height: 1.7; margin-bottom: 32px;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C'; font-family: 'Cinzel', serif; font-size: 80px; color: var(--gold);
  position: absolute; top: -40px; left: 50%; transform: translateX(-50%); opacity: 0.3;
  line-height: 1;
}
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--navy); letter-spacing: 1px; }
.testimonial-role { font-size: 12px; color: var(--text-light); margin-top: 4px; letter-spacing: 1px; }
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-carousel { position: relative; max-width: 900px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(.16,1,.3,1); }
.testimonial-slide { min-width: 100%; padding: 0 40px; box-sizing: border-box; }
.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.testimonial-nav-dot {
  width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--gold);
  background: transparent; cursor: pointer; transition: all 0.3s; padding: 0;
  position: relative;
}
.testimonial-nav-dot::after {
  content: ''; position: absolute; inset: -15px;
}
.testimonial-nav-dot.active { background: var(--gold); }
.testimonial-arrows { display: flex; justify-content: center; gap: 20px; margin-top: 24px; }
.testimonial-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(198,167,92,0.3);
  background: transparent; cursor: pointer; font-size: 18px; color: var(--gold);
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info { font-style: normal; }
.contact-info h3 {
  font-family: 'Cinzel', serif; font-size: 24px; color: var(--navy); margin-bottom: 8px;
}
.contact-info .contact-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic;
  color: var(--text-light); margin-bottom: 32px;
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 18px; flex-shrink: 0;
  border: 1px solid rgba(198,167,92,0.15); transition: all 0.3s;
}
.contact-item:hover .contact-icon { background: var(--gold); color: var(--navy); }
.contact-item-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.contact-item-val { font-size: 15px; color: var(--text-dark); }
.contact-item-val a { color: var(--navy); text-decoration: none; transition: color 0.3s; }
.contact-item-val a:hover { color: var(--gold); }

.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-size: 12px; font-weight: 600; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 16px 18px; border: 1px solid #e0e0e0; border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--text-dark);
  transition: all 0.3s; background: var(--cream);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,167,92,0.1); }
.form-row textarea { height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }
.form-submit {
  padding: 16px 44px; background: var(--navy); color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--navy); cursor: pointer; transition: all 0.4s; border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}
.form-submit:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ===== CAREERS ===== */
.careers { background: var(--navy); color: var(--white); }
.careers .section-title { color: var(--white); }
.careers .section-label { color: var(--gold); }
.careers .section-subtitle { color: rgba(198,167,92,0.6); }
.careers .section-desc { color: rgba(255,255,255,0.55); }
.careers-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) { .careers-grid { grid-template-columns: 1fr; gap: 48px; } }
.careers-info h3 { font-family: 'Cinzel', serif; font-size: 24px; color: var(--white); margin-bottom: 8px; }
.careers-info .careers-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic;
  color: rgba(198,167,92,0.6); margin-bottom: 28px;
}
.careers-info p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.careers-perks { list-style: none; margin-top: 20px; }
.careers-perks li {
  font-size: 14px; color: rgba(255,255,255,0.65); padding: 10px 0;
  border-bottom: 1px solid rgba(198,167,92,0.1); display: flex; align-items: center; gap: 12px;
}
.careers-perks li::before { content: '\2605'; color: var(--gold); font-size: 12px; }
.careers-form .form-row label { color: rgba(255,255,255,0.6); }
.careers-form .form-row input,
.careers-form .form-row textarea,
.careers-form .form-row select {
  width: 100%; padding: 16px 18px; border: 1px solid rgba(198,167,92,0.2); border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--white);
  transition: all 0.3s; background: var(--navy-mid);
}
.careers-form .form-row input::placeholder,
.careers-form .form-row textarea::placeholder { color: rgba(255,255,255,0.3); }
.careers-form .form-row input:focus,
.careers-form .form-row textarea:focus,
.careers-form .form-row select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,167,92,0.15); }
.careers-form .form-row select { appearance: none; cursor: pointer; }
.careers-form .form-row select option { background: var(--navy-mid); color: var(--white); }
.careers-form .form-row textarea { height: 120px; resize: vertical; }
.careers-form .form-submit {
  background: var(--gold); color: var(--navy); border: 2px solid var(--gold);
}
.careers-form .form-submit:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.file-upload-wrap {
  position: relative; border: 2px dashed rgba(198,167,92,0.25); border-radius: 4px;
  padding: 28px; text-align: center; cursor: pointer; transition: all 0.3s;
  background: rgba(198,167,92,0.03);
}
.file-upload-wrap:hover { border-color: var(--gold); background: rgba(198,167,92,0.06); }
.file-upload-wrap input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%;
}
.file-upload-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.file-upload-label span { color: var(--gold); font-weight: 600; }

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  padding: 18px 36px; border-radius: 6px; font-size: 14px; font-weight: 500;
  z-index: 9999; opacity: 0; transition: all 0.5s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25); max-width: 500px; text-align: center;
  font-family: 'Montserrat', sans-serif;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }
.toast.error { background: #8b1a1a; color: #fff; border: 1px solid #cc4444; }
.form-submit:disabled {
  opacity: 0.6; cursor: not-allowed;
}
.form-submit .spinner {
  display: inline-block; width: 14px; height: 14px; border: 2px solid transparent;
  border-top-color: currentColor; border-radius: 50%; animation: spin 0.7s linear infinite;
  vertical-align: middle; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.5); padding: 80px 60px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
  max-width: 1200px; margin: 0 auto 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .footer { padding: 60px 24px 24px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-logo-text { font-size: 32px; }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-top: 16px; color: rgba(255,255,255,0.35); }
.footer h4 {
  font-family: 'Cinzel', serif; font-size: 13px; color: var(--gold);
  letter-spacing: 1.5px; margin-bottom: 24px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.3s; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 28px;
  border-top: 1px solid rgba(198,167,92,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; letter-spacing: 0.5px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(198,167,92,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.4s; color: rgba(255,255,255,0.5);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }