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

:root {
  --blush: #f7e4ea;
  --rose: #eec9d8;
  --mauve: #d4a0b8;
  --deep: #a86b8a;
  --text: #3d2535;
  --muted: #7a5567;
  --white: #fdfaf9;
  --card-bg: #fef5f8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--white);
  color: var(--text);
  font-weight: 300;
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(253, 250, 249, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rose);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

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

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--deep);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 5% 5rem;
  background: linear-gradient(160deg, var(--blush) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  opacity: 0.45;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  opacity: 0.5;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--deep);
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.hero-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  margin-bottom: 3rem;
}

.hero-contacts a,
.hero-contacts span {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.hero-contacts a:hover {
  color: var(--deep);
}

.contact-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.7;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--deep);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition:
    background 0.25s,
    transform 0.2s;
}

.btn:hover {
  background: var(--mauve);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── SECTION SHARED ── */
section {
  padding: 6rem 5%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--deep);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--mauve);
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

/* ── ABOUT ── */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

.about-text p {
  font-size: 1.02rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.headshot-wrap {
  display: flex;
}

.headshot {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  max-height: 700px;
}

.about-quote {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  border-radius: 20px;
  padding: 2.5rem 3rem;
  border-left: 4px solid var(--deep);
}

.about-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

/* ── REVIEWS BANNER ── */
.reviews-banner {
  background: linear-gradient(135deg, var(--blush), var(--rose));
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--rose);
  border-bottom: 1px solid var(--mauve);
  position: relative;
}

.reviews-banner::before,
.reviews-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.reviews-banner::before {
  left: 0;
  background: linear-gradient(to right, var(--blush), transparent);
}

.reviews-banner::after {
  right: 0;
  background: linear-gradient(to left, var(--rose), transparent);
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-reviews 50s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-reviews {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.review-item {
  background: var(--white);
  border: 1px solid var(--rose);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(168, 107, 138, 0.08);
}

.review-stars {
  color: var(--deep);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}

.review-author {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── SERVICES ── */
#services {
  background: var(--blush);
}

.services-intro {
  max-width: 650px;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--rose);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mauve), var(--deep));
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(168, 107, 138, 0.15);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--deep);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.service-card ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--mauve);
}

.service-card ul {
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep);
}

.card-arrow {
  transition: transform 0.2s;
}

.service-card:hover .card-arrow {
  transform: translateX(4px);
}

/* ── SERVICE PAGES ── */
.service-page-hero {
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 5% 4rem;
  background: linear-gradient(160deg, var(--blush) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}

.service-page-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  opacity: 0.4;
}

.service-page-hero-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--deep);
}

.service-page-content {
  background: var(--white);
  padding: 5rem 5%;
}

.service-page-content .section-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.service-page-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-page-sidebar ul li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.service-page-sidebar ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--mauve);
}

.service-page-sidebar h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-page-body p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-page-body h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}

.service-cta-strip {
  background: linear-gradient(135deg, var(--blush), var(--rose));
  padding: 4rem 5%;
  text-align: center;
}

.service-cta-strip h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.service-cta-strip p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .service-page-content .section-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── CONTACT ── */
#contact {
  background: linear-gradient(150deg, var(--text) 0%, #5a2e45 100%);
  color: #fff;
  text-align: center;
}

#contact .section-label {
  color: var(--mauve);
}
#contact .section-title {
  color: #fff;
}
#contact .section-title em {
  color: var(--rose);
}
#contact .divider {
  background: var(--mauve);
}

.contact-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 3rem;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  min-width: 200px;
  text-align: center;
}

.contact-card .cc-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.6rem;
}

.contact-card a,
.contact-card span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  word-break: break-all;
}

.contact-card a:hover {
  color: var(--rose);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--mauve);
  color: var(--rose);
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.2s;
}

.btn-outline:hover {
  background: var(--deep);
  border-color: var(--deep);
  color: #fff;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.75rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .foot-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

footer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── HAMBURGER / MOBILE ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--rose);
    gap: 1.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .about-quote {
    grid-column: 1;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
