/* Xanadu Med Spa — Light Earth & Cream Wellness Aesthetic */
:root {
  --gold: #A68543;
  --gold-dark: #8C6B34;
  --earth-brown: #5C5245;
  --cream-bg: #FAF9F6;
  --cream-soft: #F2F0E9;
  --white: #FFFFFF;
  --gray-muted: #7A7A7A;
  --radius-sm: 4px;
  --radius-md: 8px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream-bg);
  color: var(--earth-brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

/* ── Navigation ──────────────────────────────── */
header {
  position: absolute;
  width: 100%;
  z-index: 100;
  padding: 2rem 0;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--earth-brown);
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--gold); }

.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--earth-brown);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.cta-btn {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}
.cta-btn:hover { background: var(--gold-dark); }

/* ── Hero ───────────────────────────────────── */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(250,249,246,0.6), rgba(250,249,246,0.6)), 
              url('https://images.unsplash.com/photo-1512290529224-26245645471c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 0 1.5rem;
}

.hero-inner { max-width: 900px; }

.hero-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  color: var(--earth-brown);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--earth-brown);
  max-width: 650px;
  margin: 0 auto 3rem;
  font-weight: 300;
  opacity: 0.8;
}

.hero-btns { display: flex; gap: 1.5rem; justify-content: center; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--earth-brown);
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--gold); color: var(--white); }

/* ── Gallery ───────────────────────────────── */
.section {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--earth-brown);
}

.section-sub {
  color: var(--gray-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.project-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card:hover .project-image { transform: scale(1.05); }

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(92,82,69,0.8));
  text-align: left;
}

.project-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.project-info p {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* ── Contact ────────────────────────────────── */
.contact-section {
  background: var(--cream-soft);
  padding: 8rem 2rem;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--earth-brown);
}

.contact-text p {
  color: var(--gray-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.form-row { display: flex; gap: 1rem; }
.form-row > * { flex: 1; }

#contact-form input, #contact-form select, #contact-form textarea {
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 1rem;
  color: var(--earth-brown);
  font-family: inherit;
  border-radius: var(--radius-sm);
  outline: none;
  transition: box-shadow 0.3s;
}

#contact-form input:focus, #contact-form select:focus, #contact-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(182, 133, 52, 0.2);
}

#contact-form textarea { min-height: 150px; }

/* ── Footer ────────────────────────────────── */
footer {
  padding: 4rem 2rem;
  border-top: 1px solid var(--gold);
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand .logo { font-size: 1.2rem; color: var(--earth-brown); }
.footer-brand p { color: var(--gray-muted); font-size: 0.85rem; margin-top: 0.5rem; }
.footer-copy { color: var(--gray-muted); font-size: 0.8rem; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .contact-container { grid-template-columns: 1fr; text-align: center; }
  .contact-text h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
