/* ============================================
   TATIANA CARTER — LUXURY COMPANION WEBSITE
   Dark Navy / Maroon / Gold Palette
   ============================================ */

:root {
  --navy:       #0d1220;
  --navy-mid:   #131929;
  --navy-light: #1c2540;
  --maroon:     #5c1a25;
  --maroon-mid: #7a2232;
  --gold:       #c9a84c;
  --gold-light: #e2c26f;
  --gold-pale:  #f5e8c0;
  --cream:      #f8f3ea;
  --white:      #ffffff;
  --text-light: rgba(255,255,255,0.82);
  --text-muted: rgba(255,255,255,0.45);
  --border:     rgba(201,168,76,0.2);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ─────────────────────────── */

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.section-label i { font-size: 0.65rem; }
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
  position: relative;
}
.gold-rule::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 3px;
  background: var(--gold);
  top: -1px;
}
.gold-rule.centered { margin: 0 auto 2rem; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .gold-rule {
  margin: 0 auto 1.5rem;
}

/* ── BUTTONS ─────────────────────────────── */

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold.full-width { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ── NAVIGATION ─────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(13, 18, 32, 0.96);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.logo-t { color: var(--white); }
.logo-c { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.8rem;
}
.nav-link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100%;
  background: var(--navy-mid);
  border-left: 1px solid var(--border);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 5rem 2.5rem;
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; }
.mob-link {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}
.mob-link:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ── HERO ────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.55);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,18,32,0.4) 0%, transparent 30%, transparent 60%, rgba(13,18,32,0.9) 100%),
    linear-gradient(to right, rgba(13,18,32,0.3), transparent 50%, rgba(13,18,32,0.3));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-name em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-size: 0.4rem;
}
.hero-ornament span {
  display: block;
  width: 50px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.7;
  animation: bounce 2.2s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── ABOUT ───────────────────────────────── */

.about {
  padding: 7rem 0;
  background: var(--navy-mid);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 620px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-img-main img { transition: transform 0.8s ease; }
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  overflow: hidden;
  border: 3px solid var(--navy-mid);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-img-accent img { transition: transform 0.8s ease; }
.about-img-accent:hover img { transform: scale(1.04); }

.about-text p {
  font-size: 0.97rem;
  color: rgba(248,243,234,0.75);
  margin-bottom: 1.2rem;
}
.about-attributes {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.attr {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.attr i { color: var(--gold); width: 14px; text-align: center; font-size: 0.9rem; }

/* ── GALLERY ─────────────────────────────── */

.gallery-section {
  padding: 7rem 0;
  background: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
}
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(6) { grid-column: span 2; }
.g-item:nth-child(13) { grid-column: span 2; }

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-light);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.88);
}
.g-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}
.g-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(201,168,76,0.12);
}
.g-overlay i { color: var(--gold); font-size: 1.4rem; }
.g-item:hover .g-overlay { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,8,18,0.97);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lb-inner {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-inner img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 46px; height: 46px;
  border-radius: 0;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lb-close:hover { background: var(--gold); color: var(--navy); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 50px; height: 50px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--navy); }

.lb-counter {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ── RATES ───────────────────────────────── */

.rates-section {
  padding: 7rem 0;
  background: var(--navy-mid);
  position: relative;
}
.rates-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 3rem;
}
.rate-card {
  background: var(--navy-light);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s;
}
.rate-card:hover { border-color: rgba(201,168,76,0.5); }

.rate-featured {
  background: var(--navy);
  border-color: var(--gold);
  transform: scaleY(1.02);
  z-index: 1;
}
.rate-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  white-space: nowrap;
}
.rate-header { margin-bottom: 1.8rem; }
.rate-duration {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.rate-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.rate-price {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 0.4rem;
}
.amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.rate-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.rate-features li {
  font-size: 0.85rem;
  color: rgba(248,243,234,0.7);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.rate-features li i { color: var(--gold); font-size: 0.65rem; }

.rates-note {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.rates-note i { color: var(--gold); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.rates-note p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── CONTACT ─────────────────────────────── */

.contact-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg-img {
  filter: brightness(0.18) saturate(0.6);
}
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,18,32,0.95) 40%, rgba(92,26,37,0.3) 100%);
}
.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.contact-desc {
  font-size: 0.95rem;
  color: rgba(248,243,234,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-item i { color: var(--gold); width: 16px; text-align: center; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(13,18,32,0.7);
  border: 1px solid var(--border);
  padding: 2.8rem;
  backdrop-filter: blur(8px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--navy-mid); color: var(--cream); }

.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-note i { color: var(--gold); font-size: 0.65rem; }

.form-success {
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-success i { font-size: 3rem; color: var(--gold); }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
}
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ── FOOTER ──────────────────────────────── */

.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-nav {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}
.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ──────────────────────────── */

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 460px; }
  .rates-grid { grid-template-columns: 1fr; gap: 1rem; }
  .rate-featured { transform: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
  .g-item:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .g-item:nth-child(1) { grid-column: span 2; }
  .g-item:nth-child(6) { grid-column: span 1; }
  .g-item:nth-child(13) { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem; }
  .about-images { height: 380px; }
}
