:root {
  --bg: #050505;
  --ink: #f8f3eb;
  --accent: #d4af37;
  --accent-hover: #e2c05a;
  --muted: rgba(248,243,235,0.65);
  --border: rgba(255,255,255,0.1);
  --card: #111111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(8,8,8,0.35);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav.scrolled {
  background: rgba(0,0,0,0.88);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 7.5rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-cta {
  background: var(--accent);
  color: #050505;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* MOBILE NAV */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* TYPOGRAPHY */

.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-heading {
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-copy {
  margin-top: 1.25rem;
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(248,243,235,0.68);
}

/* BUTTONS */

.btn-primary,
.btn-submit {
  background: var(--accent);
  color: #050505;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover,
.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid rgba(248,243,235,0.35);
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* FORMS */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--ink);
  padding: 1rem;
  border-radius: 12px;
  width: 100%;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(248,243,235,0.45);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form option {
  background: #111;
  color: var(--ink);
}

.form-success {
  display: none;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: #dcfce7;
  font-size: 0.9rem;
}

.form-success.show {
  display: block;
}

/* CARDS */

.portal-mockup,
.luxury-card {
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
}

.portal-body {
  padding: 2rem;
}

/* FOOTER */

footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.5);
  padding: 4rem;
  font-size: 0.825rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img {
  height: 5.4rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }

  .nav-links,
  nav > .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
  }

  .logo img {
    height: 6rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 4.5rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-ghost,
  .btn-submit {
    width: 100%;
  }

  footer {
    padding: 2.5rem 1.25rem;
  }
}
.page-cta-panel {
  max-width: 1180px;
  margin: 4rem auto 6rem;
  padding: 4rem 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,0.14), transparent 42%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 1.75rem;
  box-shadow: 0 35px 100px rgba(0,0,0,0.38);
}

.page-cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.page-cta-panel p {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  color: rgba(248,243,235,0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 700px) {
  .page-cta-panel {
    margin: 3rem 1rem 4rem;
    padding: 3rem 1.25rem;
    border-radius: 1.25rem;
  }
}
