:root {
  --navy: #16213e;
  --navy-2: #243154;
  --pink: #ff5d73;
  --pink-dark: #e74760;
  --cream: #fff8f2;
  --white: #ffffff;
  --ink: #182035;
  --muted: #5f6676;
  --line: #e7e3df;
  --shadow: 0 24px 60px rgba(22, 33, 62, .13);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(22, 33, 62, .08);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(22, 33, 62, .08);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; font-size: .98rem; line-height: 1.1; }
.brand strong { display: block; font-size: .82rem; color: var(--pink-dark); letter-spacing: .08em; text-transform: uppercase; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--navy); color: var(--pink); font-size: 1.2rem; font-weight: 900; }
nav { display: flex; align-items: center; gap: 26px; }
nav a { text-decoration: none; font-size: .9rem; font-weight: 700; }
nav a:not(.nav-cta):hover { color: var(--pink-dark); }
.nav-cta { padding: 10px 16px; border-radius: 12px; background: var(--pink); color: var(--navy); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 12px; background: var(--navy); }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: white; }

main { overflow: hidden; }
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding: 76px 0 90px;
}
.eyebrow { margin: 0 0 16px; color: var(--pink-dark); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--navy); line-height: 1.08; letter-spacing: -.045em; }
h1 { margin-bottom: 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 6.7vw, 6.4rem); font-weight: 500; }
h1 em { color: var(--pink-dark); font-weight: 500; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 500; }
h3 { font-size: 1.55rem; }
.hero-text { max-width: 600px; margin: 0; color: var(--muted); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 14px; font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--pink); color: var(--navy); box-shadow: 0 12px 28px rgba(255, 93, 115, .3); }
.button-primary:hover { background: #ff7386; }
.button-secondary { border: 1px solid rgba(22, 33, 62, .2); background: var(--white); color: var(--navy); }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; color: var(--navy-2); font-size: .82rem; font-weight: 800; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--pink-dark); }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: -24px 20px 24px -20px; z-index: -1; border-radius: 40px; background: var(--pink); transform: rotate(-2.2deg); }
.hero-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.hero-note { position: absolute; right: -18px; bottom: 24px; max-width: 280px; padding: 16px 20px; border-radius: 18px; background: var(--navy); color: white; box-shadow: var(--shadow); }
.hero-note span { display: block; color: var(--pink); font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.hero-note strong { font-size: .88rem; }

.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; width: min(1180px, calc(100% - 40px)); margin: 0 auto 36px; padding-top: 100px; }
.service-intro h2 { margin-bottom: 0; }
.service-intro > p { align-self: end; max-width: 520px; margin: 0 0 12px auto; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.service-card { position: relative; display: flex; min-height: 520px; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 40px rgba(22, 33, 62, .06); }
.service-card::after { content: ""; position: absolute; top: -80px; right: -70px; width: 170px; height: 170px; border-radius: 50%; background: var(--card-accent, #eef0f8); opacity: .75; }
.service-card.notary { --card-accent: #dfe5ff; }
.service-card.cleaning { --card-accent: #ffdfe5; }
.service-card.pickup { --card-accent: #d9f1e8; }
.number { color: #a3a8b4; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.service-icon { position: relative; z-index: 1; display: grid; width: 58px; height: 58px; margin: 30px 0 34px; place-items: center; border-radius: 18px; background: var(--navy); color: var(--pink); font-size: 1.75rem; font-weight: 900; }
.service-card p, .service-card li { color: var(--muted); }
.service-card ul { padding: 0; margin: 18px 0 28px; list-style: none; }
.service-card li { padding: 8px 0 8px 24px; border-bottom: 1px solid #eee; font-size: .92rem; }
.service-card li::before { content: "•"; float: left; margin-left: -18px; color: var(--pink-dark); font-weight: 900; }
.service-card > a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; color: var(--navy); font-size: .92rem; font-weight: 900; text-decoration: none; }
.service-card > a span { color: var(--pink-dark); font-size: 1.4rem; transition: transform .2s ease; }
.service-card > a:hover span { transform: translateX(4px); }

.process { width: min(1180px, calc(100% - 40px)); margin: 110px auto; padding: 58px; border-radius: 32px; background: var(--navy); color: white; }
.process h2 { max-width: 580px; margin-bottom: 0; color: white; }
.process ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; padding: 0; margin: 50px 0 0; list-style: none; }
.process li { display: flex; gap: 16px; }
.process li > span { display: grid; flex: 0 0 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--pink); color: var(--navy); font-weight: 900; }
.process strong { font-size: 1.06rem; }
.process li p { margin: 5px 0 0; color: #c8cede; font-size: .92rem; }

.area-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; width: min(1080px, calc(100% - 40px)); margin: 0 auto; padding: 40px 0 120px; }
.area-copy p:not(.eyebrow) { color: var(--muted); }
.text-link { display: inline-block; margin-top: 14px; color: var(--pink-dark); font-weight: 900; text-decoration: none; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.area-list span { padding: 22px; border: 1px solid rgba(22, 33, 62, .1); border-radius: 16px; background: white; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; box-shadow: 0 10px 22px rgba(22, 33, 62, .04); }
.area-list span:last-child { grid-column: 1 / -1; background: var(--pink); font-family: inherit; font-size: .95rem; font-weight: 900; text-align: center; }

.about { display: grid; grid-template-columns: 260px 1fr; gap: 70px; align-items: center; width: min(1000px, calc(100% - 40px)); margin: 0 auto 120px; }
.about-monogram { display: grid; width: 240px; height: 240px; place-items: center; border-radius: 50% 50% 44% 56% / 58% 42% 58% 42%; background: var(--pink); color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 4.6rem; box-shadow: 18px 18px 0 var(--navy); transform: rotate(-3deg); }
.about h2 { margin-bottom: 20px; }
.about p:last-child { margin: 0; color: var(--muted); font-size: 1.08rem; }

.contact-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; width: min(1180px, calc(100% - 40px)); margin: 0 auto 36px; padding: 58px; border-radius: 32px; background: var(--pink); }
.contact-panel .eyebrow { color: var(--navy); }
.contact-panel h2 { max-width: 680px; margin: 0; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 0 0 220px; }
.button-light { width: 100%; background: var(--navy); color: white; }
.phone-link { color: var(--navy); font-weight: 900; text-decoration: none; }

footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0 44px; color: var(--muted); font-size: .82rem; }
.footer-brand { justify-self: start; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  nav { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
  nav.open { display: flex; }
  nav a { padding: 12px 14px; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(620px, 92%); margin: 16px auto 0; }
  .hero-visual img { aspect-ratio: 4/3; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .process ol { grid-template-columns: 1fr; }
  .area-section { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 190px 1fr; gap: 50px; }
  .about-monogram { width: 180px; height: 180px; font-size: 3.4rem; }
  .contact-panel { align-items: flex-start; flex-direction: column; }
  .contact-actions { width: 100%; flex-basis: auto; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; }
  .hero { width: calc(100% - 30px); min-height: auto; padding: 56px 0 76px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .trust-row { gap: 9px 16px; }
  .hero-visual { width: calc(100% - 16px); }
  .hero-visual::before { inset: -12px 12px 12px -10px; border-radius: 28px; }
  .hero-visual img { border-radius: 24px; }
  .hero-note { right: -8px; bottom: 12px; max-width: 82%; }
  .service-intro { grid-template-columns: 1fr; gap: 12px; width: calc(100% - 30px); padding-top: 70px; }
  .service-intro > p { margin-left: 0; }
  .service-grid { width: calc(100% - 30px); }
  .service-card { padding: 24px; }
  .process { width: calc(100% - 30px); margin: 76px auto; padding: 36px 24px; }
  .area-section { width: calc(100% - 30px); padding-bottom: 84px; }
  .area-list { grid-template-columns: 1fr; }
  .area-list span:last-child { grid-column: auto; }
  .about { grid-template-columns: 1fr; gap: 44px; width: calc(100% - 30px); margin-bottom: 84px; }
  .about-monogram { margin-left: 8px; }
  .contact-panel { width: calc(100% - 30px); padding: 36px 24px; }
  footer { width: calc(100% - 30px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
