:root {
  --magenta: #961c58;
  --magenta-dark: #711641;
  --pink: #e7b3cf;
  --pink-soft: #f6e3ee;
  --tan: #c9bc98;
  --tan-dark: #a99a72;
  --cream: #fdf6ef;
  --ink: #3a2a33;
  --shadow: 0 10px 30px rgba(113, 22, 65, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Segoe UI', 'Trebuchet MS', Verdana, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0 0 0.4em;
  color: var(--magenta-dark);
}

p { line-height: 1.65; }

a { color: inherit; }

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

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 246, 239, 0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--magenta-dark);
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
}

.brand img { height: 46px; width: auto; }

.brand .wordmark { line-height: 1.15; }
.brand .wordmark small {
  display: block;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tan-dark);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

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

.nav-call {
  background: var(--magenta);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-call:hover { background: var(--magenta-dark); }

/* HERO */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 780px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(120deg, rgba(56, 10, 34, 0.72) 30%, rgba(150, 28, 88, 0.35) 75%),
    url('assets/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  color: #fff;
}

.hero-content {
  max-width: 620px;
  padding-top: 90px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--pink-soft);
  margin-bottom: 26px;
  max-width: 480px;
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--magenta);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover { background: var(--magenta-dark); }

.btn-secondary {
  background: rgba(255,255,255,0.92);
  color: var(--magenta-dark);
}

.btn-secondary:hover { background: #fff; }

/* TRUST STRIP */
.trust-strip {
  background: var(--tan);
  color: var(--magenta-dark);
  padding: 16px 0;
}

.trust-strip .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-strip span.icon { margin-right: 6px; }

/* SECTIONS */
section { padding: 80px 0; }

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: 2.1rem;
}

.section-heading .kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--magenta);
  display: block;
  margin-bottom: 10px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-soft);
}

.about-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.about-card li { margin-bottom: 10px; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--pink-soft);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(113,22,65,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: #6b5460; }

/* REVIEWS */
.reviews {
  background: var(--pink-soft);
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.stars { color: var(--magenta); font-size: 1.4rem; letter-spacing: 4px; margin-bottom: 12px; }

.review-card p.quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}

.review-card .reviewer {
  margin-top: 14px;
  font-weight: 700;
  color: var(--magenta-dark);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-card h3 { font-size: 1.3rem; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.contact-list .icon {
  color: var(--magenta);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.map-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  background: var(--pink-soft);
}

.map-fallback {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #fff;
  color: var(--magenta-dark);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.map-fallback:hover { background: var(--pink-soft); }

/* FINAL CTA */
.final-cta {
  background: linear-gradient(120deg, var(--magenta-dark), var(--magenta));
  color: #fff;
  text-align: center;
}

.final-cta h2 { color: #fff; }
.final-cta p { color: var(--pink-soft); max-width: 520px; margin: 0 auto 28px; }

/* FOOTER */
footer {
  background: #2c1420;
  color: #cfa9bb;
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

footer .brand { color: #fff; justify-content: center; margin-bottom: 10px; }
footer a.fb { color: #f4c9dd; text-decoration: none; font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .hero .tagline { font-size: 1.05rem; }
  section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .site-nav .container { padding-top: 8px; padding-bottom: 8px; }
  .brand img { height: 36px; }
  .brand { font-size: 0.95rem; gap: 8px; }
  .brand .wordmark small { font-size: 0.55rem; }
  .nav-call { padding: 8px 12px; font-size: 0.85rem; }
  .nav-call-text { display: none; }
  .hero h1 { font-size: 1.7rem; }
  .trust-strip .container { gap: 18px; font-size: 0.85rem; }
}
