@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Nunito:wght@400;600;700;800&family=Mrs+Saint+Delafield&display=swap');

:root {
  --blush: #f3d7db;
  --blush-dark: #e8b9c0;
  --lavender: #d6c6ea;
  --lavender-dark: #a888c9;
  --plum: #4a3450;
  --text: #5c4a5e;
  --text-soft: #85748a;
  --cream: #fdf8f5;
  --cream-deep: #f7ece7;
  --white: #ffffff;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(155, 127, 184, 0.35);
  --shadow-soft: 0 10px 30px -12px rgba(155, 127, 184, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--plum);
  font-weight: 600;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

img { max-width: 100%; display: block; }

/* ---------- Decorative blobs ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
  opacity: 0.55;
}

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: var(--plum);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 20px;
}

.announce-bar a {
  color: var(--blush);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Script accent ---------- */
.script-accent {
  display: block;
  font-family: 'Mrs Saint Delafield', cursive;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--lavender-dark);
  line-height: 1;
  margin-bottom: 6px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 245, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 136, 201, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-mark {
  height: 150px;
  width: 150px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--plum);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text small {
  font-family: 'Nunito', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender-dark);
  font-weight: 700;
}

.footer-logo {
  height: 120px;
  width: 120px;
  margin-bottom: 14px;
  opacity: 0.95;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--lavender-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover { color: var(--lavender-dark); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.main-nav a.active { color: var(--lavender-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--plum);
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lavender-dark), var(--blush-dark));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: var(--white);
  color: var(--plum);
  border: 2px solid var(--lavender);
}

.btn-outline:hover { border-color: var(--lavender-dark); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
}

.hero .blob-1 { width: 420px; height: 420px; background: var(--blush); top: -140px; right: -100px; }
.hero .blob-2 { width: 280px; height: 280px; background: var(--lavender); bottom: -80px; left: -80px; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--white);
  color: var(--lavender-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}

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

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--blush) 0%, var(--lavender) 100%);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius-lg) - 10px);
  border: 2px solid rgba(255,255,255,0.5);
}

.hero-visual span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--white);
  text-align: center;
  padding: 40px;
  text-shadow: 0 2px 12px rgba(74,52,80,0.25);
}

/* ---------- Photo hero ---------- */
.hero-photo {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,52,80,0.35) 0%, rgba(74,52,80,0.28) 45%, rgba(74,52,80,0.55) 100%);
}

.hero-photo-inner {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.hero-photo h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
  max-width: 20ch;
  margin: 0 auto 30px;
}

.hero-photo .script-accent {
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  font-size: 1.6rem;
  animation: bounce 2.2s infinite;
  opacity: 0.85;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- Photo collage (About teaser) ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.photo-collage {
  position: relative;
  min-height: 420px;
}

.collage-photo {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
  object-fit: cover;
}

.collage-photo.photo-a {
  width: 62%;
  height: 340px;
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 2;
}

.collage-photo.photo-b {
  width: 55%;
  height: 300px;
  bottom: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 1;
}

/* ---------- Services with photo background ---------- */
.services-photo {
  position: relative;
  background-size: cover;
  background-position: center;
}

.services-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253,248,245,0.94) 0%, rgba(253,248,245,0.88) 100%);
}

.services-photo .container { position: relative; z-index: 1; }

/* ---------- Sections ---------- */
section { padding: 90px 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head .eyebrow { background: var(--cream-deep); }

.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }

.section-head p { color: var(--text-soft); font-size: 1.05rem; }

.alt-bg { background: var(--cream-deep); }

/* ---------- Cards / grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.98rem; }

.focus-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.focus-list li {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 14px;
}

.focus-list li::before {
  content: '✦';
  color: var(--lavender-dark);
  font-size: 1.1rem;
}

/* ---------- Quote block ---------- */
.quote-block {
  position: relative;
  background: linear-gradient(135deg, var(--lavender-dark), var(--blush-dark));
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.quote-block p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  max-width: 60ch;
  margin: 0 auto;
}

.quote-block span {
  display: block;
  margin-top: 20px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  box-shadow: var(--shadow-soft);
}

.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: var(--text-soft); margin-bottom: 30px; }

/* ---------- Pricing ---------- */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 46px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--lavender);
}

.price-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--plum);
  margin: 14px 0;
}

.price-card .amount sup { font-size: 1.2rem; }
.price-card .amount small { font-size: 1rem; font-family: 'Nunito', sans-serif; color: var(--text-soft); font-weight: 700; }

.note-box {
  background: var(--cream-deep);
  border-left: 4px solid var(--lavender-dark);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-top: 24px;
}

/* ---------- About/story page ---------- */
.story h2 { margin-top: 40px; }
.story p { margin-bottom: 20px; max-width: 70ch; }
.story blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--plum);
  border-left: 4px solid var(--lavender-dark);
  padding: 6px 0 6px 26px;
  margin: 30px 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-deep);
}

.contact-row:last-child { border-bottom: none; }

.contact-row .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-row a, .contact-row span.value { font-weight: 700; color: var(--plum); }
.contact-row small { display: block; color: var(--text-soft); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }

.calendly-box {
  background: linear-gradient(135deg, var(--lavender-dark), var(--blush-dark));
  border-radius: var(--radius-lg);
  padding: 46px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.calendly-box h3 { color: var(--white); margin-bottom: 12px; }
.calendly-box p { opacity: 0.92; margin-bottom: 26px; }

/* ---------- Contact form ---------- */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 46px;
}

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

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--cream-deep);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lavender-dark);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-hidden { position: absolute; left: -9999px; top: -9999px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 34px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

.faq-item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.faq-item p { color: var(--text-soft); margin: 0; }

/* ---------- Legal pages ---------- */
.legal h2 { margin-top: 34px; margin-bottom: 12px; font-size: 1.3rem; }
.legal p, .legal li { color: var(--text-soft); margin-bottom: 10px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-footer h3, .site-footer h4 { color: var(--white); }
.site-footer h4 { font-family: 'Nunito', sans-serif; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.03em; }
.site-footer p { margin-bottom: 8px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--blush); }

.copyright {
  text-align: center;
  padding-top: 24px;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner, .grid-3, .grid-2, .contact-grid, .footer-inner, .about-teaser { grid-template-columns: 1fr; }
  .focus-list { grid-template-columns: 1fr; }
  .hero-visual { max-width: 320px; margin: 0 auto; }

  .hero-photo { min-height: 74vh; }
  .photo-collage { min-height: 320px; margin-bottom: 20px; }
  .collage-photo.photo-a { width: 68%; height: 260px; }
  .collage-photo.photo-b { width: 58%; height: 220px; }

  .main-nav { position: relative; }
  .main-nav ul {
    position: absolute;
    top: 46px;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 18px 26px;
    gap: 16px;
    display: none;
    min-width: 200px;
  }
  .main-nav ul.open { display: flex; }
  .nav-toggle { display: block; }

  .logo-mark { height: 100px; width: 100px; }
  .logo-text { font-size: 1.05rem; }

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