/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:       #f2d4d4;
  --rose-deep:  #e8b8b8;
  --blush:      #faf0f0;
  --cream:      #fdfaf7;
  --lavender:   #e8e0f0;
  --sage:       #d4e0d4;
  --text:       #3a3030;
  --text-mid:   #6b5858;
  --text-light: #9e8888;
  --white:      #ffffff;
  --border:     #eddede;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 30px rgba(180, 120, 120, 0.10);
  --shadow-hover: 0 8px 40px rgba(180, 120, 120, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Hero light background */
#hero {
  background: linear-gradient(135deg, #fdf6f6 0%, #f7f0fa 40%, #f0f5f0 100%);
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
em { font-style: italic; color: var(--text-mid); }
p { color: var(--text-mid); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

/* ── Buttons ── */
.btn-primary, .btn-ghost, .btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
}
.btn-primary:hover { background: #d9a0a0; transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--blush); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  width: 100%;
  text-align: center;
}
.btn-outline:hover { background: var(--blush); }

.full-width { width: 100%; }

/* ── Navigation ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  background: rgba(253, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
}

nav ul a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.875rem;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--text); }

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--rose-deep);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: #d9a0a0; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  gap: 4rem;
}

.hero-content { max-width: 540px; }

.hero-content h1 { margin: 0.5rem 0 1.25rem; }

.hero-sub {
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--lavender) 50%, var(--sage) 100%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: morph 8s ease-in-out infinite;
  opacity: 0.35;
}

@keyframes morph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%       { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  66%       { border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%; }
}

.hero-image-wrap {
  position: relative;
  width: 460px;
  height: 580px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Sections shared ── */
section { padding: 6rem 2rem; }
.section-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.section-sub { font-size: 1.05rem; margin-top: 1rem; }

/* ── About ── */
#about {
  background: var(--blush);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; display: flex; align-items: center; justify-content: center; }

.about-blob {
  position: absolute;
  width: 420px;
  height: 500px;
  background: linear-gradient(160deg, var(--lavender) 0%, var(--rose) 100%);
  border-radius: 50% 50% 40% 40% / 40% 40% 50% 50%;
  opacity: 0.45;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.about-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow);
}

.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text h2 { margin-top: 0; }

.credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.credentials li {
  font-size: 0.875rem;
  color: var(--text-mid);
}

/* ── Services ── */
#services {
  background: var(--cream);
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card.featured {
  background: linear-gradient(160deg, var(--blush) 0%, var(--white) 100%);
  border-color: var(--rose-deep);
}

.service-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose-deep);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.service-icon {
  font-size: 1.5rem;
  color: var(--rose-deep);
}

.service-card h3 { font-family: var(--font-serif); color: var(--text); }
.service-card p { font-size: 0.9rem; flex: 1; }
.service-card .btn-primary,
.service-card .btn-outline { width: 100%; text-align: center; }

.service-details {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

/* ── Contact ── */
#contact {
  background: var(--blush);
}

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info h2 { margin-top: 0; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-deep);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}

/* ── Footer ── */
footer {
  background: var(--text);
  color: var(--rose);
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

footer .logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--rose);
  text-decoration: none;
}

footer p:last-of-type { font-size: 0.8rem; color: var(--text-light); }

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose); }

/* ── Special offer badge on non-featured card ── */
.service-card .offer-badge {
  background: var(--lavender);
  color: var(--text);
}

.price-highlight {
  color: var(--rose-deep);
  font-weight: 500;
}

/* ── Location note ── */
.location-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 780px;
  margin: 2rem auto 0;
  background: var(--blush);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.location-note span { font-size: 1.4rem; flex-shrink: 0; }
.location-note p { margin: 0; }
.location-note strong { color: var(--text); font-weight: 500; }

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

/* ── Active nav link ── */
nav ul a.active { color: var(--text); font-weight: 400; }

/* ── Responsive ── */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }

  nav ul { display: none; }
  nav { justify-content: space-between; }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
    min-height: auto;
    max-width: 100%;
  }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-sub { max-width: 100%; }
  .hero-buttons { justify-content: center; flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
  .hero-visual { height: auto; padding: 2rem 0; }
  .blob { width: min(320px, 85vw); height: min(320px, 85vw); }
  .hero-image-wrap { width: min(320px, 80vw); height: min(420px, 105vw); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-illustration { max-width: min(320px, 75vw); }
  .about-blob { width: min(340px, 80vw); height: min(400px, 95vw); }

  /* Services */
  .services-grid,
  .services-grid.two-col { grid-template-columns: 1fr; max-width: 100%; }
  .location-note { max-width: 100%; }

  /* Contact — unified look, no white card on mobile */
  #contact { overflow: hidden; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; width: 100%; }
  .contact-info { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { background: transparent; border: none; box-shadow: none; padding: 0; width: 100%; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { background: var(--white); width: 100%; max-width: 100%; box-sizing: border-box; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  header { padding: 1rem 1.25rem; }
  .footer-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
}
