/* ==========================================================================
   Skincare Solutions by Tania — Stylesheet
   Palette: cream, white, black
   ========================================================================== */

:root {
  --cream: #faf8f4;
  --cream-warm: #f0ece6;
  --cream-soft: #ede9e2;
  --white: #ffffff;
  --black: #0e0e0e;
  --black-soft: #1a1a1a;
  --gray-dark: #3a3530;
  --gray-mid: #7a7060;
  --gray-light: #9a9080;
  --gray-pale: #c8c0b4;
  --border: #e4dfd6;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --section-pad-y: 80px;
  --section-pad-x: 32px;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--gray-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.01em;
}
.section-title-light { color: var(--white); }
.section-title em { font-style: italic; }

.section-sub {
  font-size: 15px;
  color: var(--gray-mid);
  max-width: 460px;
  margin: 16px auto 0;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0.5px solid transparent;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: transparent;
  color: var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-pale);
}
.btn-outline:hover {
  border-color: var(--black);
  background: var(--white);
}
.btn-large {
  padding: 18px 40px;
  font-size: 12px;
}

.nav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-main {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
}
.nav-logo-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  letter-spacing: 0.16em !important;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: all 0.3s ease;
}

.hero {
  padding: 100px 32px 80px;
  background: var(--cream);
  text-align: center;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gray-dark);
}
.hero-sub {
  font-size: 16px;
  color: var(--gray-mid);
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.section { padding: var(--section-pad-y) var(--section-pad-x); }
.section-light { background: var(--white); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.section-cream { background: var(--cream-warm); }
.section-dark { background: var(--black); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-head { margin-bottom: 56px; }
.section-head-center { text-align: center; }
.section-head .eyebrow { display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--gray-pale);
}
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
}
.service-line {
  width: 32px;
  height: 0.5px;
  background: var(--gray-pale);
  margin: 0 auto 20px;
}
.service-desc {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-price {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 400;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--black-soft);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--black-soft);
  border: 0.5px solid #2a2a2a;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  color: #3a3530;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-text .eyebrow { color: var(--gray-light); }
.about-bio {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.85;
  margin-top: 20px;
}

.book-cta { text-align: center; margin-top: 32px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 32px 20px;
  text-align: center;
}
.contact-icon {
  color: var(--black);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}
.contact-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 6px;
}
.contact-value { font-size: 14px; color: var(--black); }
.contact-link { transition: opacity 0.2s; }
.contact-link:hover { opacity: 0.6; }

.footer {
  background: var(--white);
  border-top: 0.5px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.footer-loc {
  font-size: 11px;
  color: var(--gray-light);
  margin-top: 4px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--gray-mid); transition: color 0.2s; }
.footer-social a:hover { color: var(--black); }
.footer-copy {
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 0.06em;
  flex-basis: 100%;
  text-align: center;
  padding-top: 20px;
  border-top: 0.5px solid var(--border);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad-y: 56px; --section-pad-x: 20px; }
  .nav-inner { padding: 16px 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 0.5px solid var(--border);
  }
  .nav-links.is-open { max-height: 400px; padding: 16px 0; }
  .nav-links a { padding: 16px 24px; width: 100%; text-align: center; }
  .nav-cta { margin: 8px 24px; padding: 14px 24px; }
  .hero { padding: 64px 20px 56px; }
  .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.8s ease-out backwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }