/* =============================================
   COSMETIC NURSE ALICIA — LUXURY AESTHETIC SITE
   Palette: Warm ivory, deep charcoal, gold accent
   Fonts: Cormorant Garamond (editorial) + Inter (body)
   ============================================= */

:root {
  --ivory: #f9f6f1;
  --ivory-dark: #f0ebe3;
  --charcoal: #1a1a18;
  --charcoal-mid: #2d2d2b;
  --gold: #b8975a;
  --gold-light: #d4b47a;
  --muted: #8a857d;
  --white: #ffffff;

  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-width: 1280px;
  --section-pad: 120px 24px;
  --section-pad-sm: 80px 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-editorial);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-full { width: 100%; text-align: center; }

/* === NAV === */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 24px;
}

#nav.scrolled {
  background: rgba(249, 246, 241, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  transition: color var(--transition);
}
#nav:not(.scrolled) .logo-name { color: var(--white); }
.logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
#nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 12px 28px;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--charcoal) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}
#nav.scrolled .nav-toggle span { background: var(--charcoal); }

/* === HERO === */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,18,16,0.75) 0%,
    rgba(20,18,16,0.35) 60%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* === PHILOSOPHY STRIP === */
#philosophy-strip {
  background: var(--charcoal);
  padding: 0 24px;
}
.strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 24px;
}
.strip-num {
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  min-width: 40px;
}
.strip-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.strip-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px 0;
}

/* === APPROACH === */
#approach {
  padding: var(--section-pad);
  background: var(--ivory);
}
.approach-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.approach-text h2 {
  margin-bottom: 28px;
}
.approach-body {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.approach-text .btn { margin-top: 20px; }

.approach-visual {
  position: relative;
}
.approach-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.approach-quote {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 28px 32px;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.approach-quote blockquote {
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.approach-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* === SERVICES === */
#services {
  padding: var(--section-pad);
  background: var(--ivory-dark);
}
.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 70px;
}
.services-header h2 { margin-top: 8px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--ivory);
  transition: var(--transition);
}
.service-card:hover {
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.service-card.featured {
  background: var(--charcoal);
}
.service-card.featured .service-card-inner h3,
.service-card.featured .service-card-inner p,
.service-card.featured .service-fits li {
  color: var(--white);
}
.service-card.featured .service-fits li::before {
  color: var(--gold);
}

.service-card-inner {
  padding: 44px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card.featured .service-badge { color: var(--gold-light); }

.service-card-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.service-card-inner p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-fits {
  flex: 1;
  margin-bottom: 28px;
}
.service-fits li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.service-fits li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 7px;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: letter-spacing var(--transition);
  margin-top: auto;
}
.service-link:hover { letter-spacing: 0.14em; }

.service-unsure {
  grid-column: span 1;
  background: var(--gold);
}
.service-unsure .service-card-inner h3 { color: var(--white); font-size: 1.8rem; }
.service-unsure .service-card-inner p { color: rgba(255,255,255,0.8); }
.service-unsure .btn-primary {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  margin-top: auto;
}
.service-unsure .btn-primary:hover {
  background: var(--charcoal-mid);
}

/* === RESULTS === */
#results {
  padding: var(--section-pad);
  background: var(--charcoal);
}
.results-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.results-header {
  text-align: center;
  margin-bottom: 60px;
}
.results-header h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.results-header p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  max-width: 440px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/* === TEAM === */
#team {
  padding: var(--section-pad);
  background: var(--ivory);
}
.team-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.team-img {
  overflow: hidden;
}
.team-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.team-img:hover img { transform: scale(1.03); }
.team-text h2 {
  margin-bottom: 24px;
}
.team-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.team-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* === TESTIMONIALS === */
#testimonials {
  padding: var(--section-pad);
  background: var(--ivory);
  text-align: center;
}
.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.testimonials-inner > .section-eyebrow {
  margin-bottom: 50px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--ivory-dark);
  padding: 44px 36px;
  text-align: left;
}
.testimonial-text {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.testimonial-card cite {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* === CONSULTATION === */
#consultation {
  padding: var(--section-pad);
  background: var(--ivory-dark);
}
.consultation-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.consultation-text h2 {
  margin-bottom: 20px;
}
.consultation-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Form */
.consultation-form {
  background: var(--white);
  padding: 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--ivory-dark);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

/* === BOOKING === */
#booking {
  padding: var(--section-pad);
  background: var(--ivory);
}
.booking-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.booking-header h2 {
  margin-bottom: 16px;
}
.booking-header p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.existing-client-btn {
  font-size: 0.75rem;
  padding: 13px 24px;
}
.booking-calendar {
  border: 1px solid var(--ivory-dark);
  overflow: hidden;
}
.footer-social {
  display: flex;
  gap: 20px;
}

/* === FOOTER === */
#footer {
  background: var(--charcoal);
  padding: 60px 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-inner .logo-name { color: var(--white); }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer-nav {
  display: flex;
  gap: 36px;
}
.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-social a {
  display: inline-flex;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  max-width: 560px;
  line-height: 1.6;
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .approach-inner { gap: 60px; }
  .consultation-inner { gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-unsure { grid-column: span 1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--ivory);
    padding: 100px 32px 32px;
    gap: 32px;
    z-index: 99;
    align-items: flex-start;
  }
  .nav-links.open a { color: var(--charcoal) !important; font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 101; }

  .strip-inner { flex-direction: column; }
  .strip-divider { display: none; }

  .approach-inner { grid-template-columns: 1fr; gap: 48px; }
  .approach-quote { position: static; margin-top: 20px; max-width: 100%; }
  .team-inner { grid-template-columns: 1fr; gap: 40px; }

  .services-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .consultation-inner { grid-template-columns: 1fr; gap: 40px; }
  .consultation-form { padding: 32px 24px; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: auto; }

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

  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 20px; }
}

@media (max-width: 480px) {
  .consultation-form { padding: 28px 20px; }
}
