/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #050e0a;
  color: #f5f0e8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: #d4a017; color: #050e0a; padding: 8px 16px; border-radius: 4px; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --emerald-deep:    #064e3b;
  --emerald-mid:     #065f46;
  --emerald-light:   #059669;
  --gold:            #d4a017;
  --gold-light:      #f0c040;
  --gold-dim:        #b8860b;
  --cream:           #f5f0e8;
  --cream-dim:       #e8e0d0;
  --bg-dark:         #050e0a;
  --bg-card:         #0a1f16;
  --bg-card-hover:   #0d2a1e;
  --text-muted:      #a0b8ad;
  --radius:          12px;
  --radius-lg:       20px;
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5, 14, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.12);
  transition: background var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}
.nav__logo { color: var(--gold); }
.nav__name { display: none; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__menu a:hover { color: var(--cream); }
.nav__menu a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #050e0a;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.45);
}
.btn--outline {
  border: 1.5px solid rgba(245, 240, 232, 0.4);
  color: var(--cream);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline-light {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 14, 10, 0.65) 0%,
    rgba(5, 14, 10, 0.55) 50%,
    rgba(5, 14, 10, 0.90) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 72px;
}
.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--emerald-deep);
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-dim);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ─── GRID ─── */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.08);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card__img {
  height: 200px;
  overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card__img img { transform: scale(1.06); }
.card__body {
  padding: 28px;
}
.card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.card__body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── STEPS ─── */
.how { background: var(--bg-card); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--emerald-light), var(--gold));
  opacity: 0.4;
}
.step { text-align: center; padding: 0 12px; }
.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── ABOUT ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about__img-main img { width: 100%; height: 500px; object-fit: cover; display: block; }
.about__img-float {
  position: absolute;
  bottom: -40px; right: -32px;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--bg-dark);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.about__img-float img { width: 100%; height: 165px; object-fit: cover; display: block; }
.about__text .section-lead { margin-bottom: 20px; }
.about__text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about__list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--cream-dim);
}
.about__list svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ─── CTA ─── */
.cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
}
.cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.92), rgba(5, 14, 10, 0.88));
}
.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}
.cta__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── VISIT ─── */
.visit { background: var(--bg-card); }
.grid--2 { grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-dark);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 160, 23, 0.08);
  transition: var(--transition);
}
.info-card:hover {
  border-color: rgba(212, 160, 23, 0.25);
  transform: translateX(4px);
}
.info-card__icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 12px;
}
.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.info-card p, .info-card a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.info-card a:hover { color: var(--gold); text-decoration: underline; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(212, 160, 23, 0.12);
  padding: 56px 0 32px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}
.footer__logo svg { color: var(--gold); }
.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.footer__brand a:hover { color: var(--gold); }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.8rem;
  color: rgba(160, 184, 173, 0.5);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 48px; }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(5, 14, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu a { font-size: 1.2rem; }
  .nav__toggle { display: flex; }
  .nav__name { display: block; }

  .hero__content { padding-top: 96px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .trust-bar__inner { gap: 20px; }
  .trust-item { font-size: 0.82rem; }

  .section { padding: 72px 0; }

  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }

  .about__grid { grid-template-columns: 1fr; }
  .about__img-float { right: 0; bottom: -24px; }
  .about__img-main img { height: 360px; }

  .cta { padding: 72px 0; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .map-wrap { min-height: 260px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.9rem; }
  .card__body { padding: 20px; }
  .info-card { flex-direction: column; gap: 12px; padding: 20px; }
}
