:root {
  --warm-cream: #FFF8F6;
  --ballet-pink: #F8C8DC;
  --orchid-pop: #C77DFF;
  --deep-plum: #2D163D;
  --raspberry-rose: #D94D8C;
  --lavender-mist: #E9D5FF;
  --lilac-gray: #B8A4C9;
  --clean-white: #FFFFFF;
  --muted-plum: rgba(45, 22, 61, 0.72);
  --border: rgba(184, 164, 201, 0.36);
  --shadow: 0 20px 60px rgba(45, 22, 61, 0.08);
  --radius-lg: 32px;
  --radius-md: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(248, 200, 220, 0.32), transparent 26rem),
    radial-gradient(circle at 88% 6%, rgba(233, 213, 255, 0.42), transparent 28rem),
    var(--warm-cream);
  color: var(--deep-plum);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

body::before {
  content: "✦";
  position: fixed;
  top: 8.25rem;
  right: 5vw;
  z-index: -1;
  color: rgba(217, 77, 140, 0.16);
  font-size: clamp(4rem, 12vw, 9rem);
}

h1, h2, h3 {
  margin: 0;
  color: var(--deep-plum);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 { font-size: clamp(3rem, 7vw, 5.65rem); max-width: 10ch; }
h2 { font-size: clamp(2.15rem, 5vw, 4rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
p { color: var(--muted-plum); line-height: 1.72; }
a { color: inherit; }
img { display: block; width: 100%; height: auto; }

:focus-visible {
  outline: 3px solid var(--orchid-pop);
  outline-offset: 4px;
  border-radius: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 246, 0.88);
  border-bottom: 1px solid rgba(184, 164, 201, 0.28);
  backdrop-filter: blur(18px);
}

.nav, .container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}

.logo {
  color: var(--deep-plum);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: var(--deep-plum);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a:not(.button), .footer-nav a {
  text-decoration: none;
}

.nav-links a:not(.button):hover, .footer-nav a:hover {
  color: var(--raspberry-rose);
}

.section { padding-block: clamp(4.5rem, 9vw, 7rem); }
.hero-section { padding-top: clamp(3rem, 6vw, 5.25rem); }
.tinted { background: linear-gradient(180deg, rgba(233, 213, 255, 0.34), rgba(248, 200, 220, 0.18)); }

.hero-grid, .split-grid, .inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy { position: relative; }
.hero-copy::after, .section-header::after {
  content: "♡ ✦ ♡";
  display: block;
  margin-top: 1.25rem;
  color: var(--raspberry-rose);
  letter-spacing: 0.45rem;
  opacity: 0.62;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--raspberry-rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--raspberry-rose);
}

.hero-subcopy {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--muted-plum);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.button-row, .trust-pills, .category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button-row { margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.88rem 1.35rem;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--raspberry-rose);
  color: var(--clean-white);
  box-shadow: 0 14px 34px rgba(217, 77, 140, 0.22);
}
.button-primary:hover { background: var(--orchid-pop); }
.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--border);
  color: var(--deep-plum);
}
.button-secondary:hover { background: var(--lavender-mist); }

.trust-pills, .category-chips { padding: 0; margin: 1.35rem 0 0; list-style: none; }
.trust-pills li, .category-chips li {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--deep-plum);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.6rem 0.9rem;
}

.image-card, .content-card, .service-card, .process-card, .inquiry-form, .contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(0.6rem, 2vw, 1rem);
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(248, 200, 220, 0.72), rgba(233, 213, 255, 0.9));
  filter: blur(32px);
}

.hero-image-card img, .services-visual img, .gallery-visual img, .inquiry-image img { object-fit: contain; }

.content-card, .service-card, .process-card, .inquiry-form, .contact-card {
  background: rgba(255, 255, 255, 0.78);
}

.content-card { padding: clamp(1.6rem, 4vw, 2.6rem); }
.content-card p { margin: 1rem 0 0; }
.value-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.value-list li {
  display: flex;
  gap: 0.65rem;
  color: var(--deep-plum);
  font-weight: 700;
}
.value-list li::before { content: "✦"; color: var(--raspberry-rose); }

.section-header {
  max-width: 780px;
  margin-bottom: 2rem;
}
.section-header.center { text-align: center; margin-inline: auto; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .eyebrow::after { content: ""; width: 1.8rem; height: 1px; background: var(--raspberry-rose); }
.section-header.center .eyebrow::before { content: ""; }
.section-header p:last-child { max-width: 680px; }
.section-header.center p:last-child { margin-inline: auto; }

.services-visual, .gallery-visual { max-width: 880px; margin: 0 auto 2rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-card, .process-card { padding: 1.5rem; transition: transform 180ms ease, box-shadow 180ms ease; }
.service-card:nth-child(even), .process-card:nth-child(even) { background: rgba(233, 213, 255, 0.46); }
.service-card:hover, .process-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(45, 22, 61, 0.12); }
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--ballet-pink);
  color: var(--raspberry-rose);
  font-weight: 900;
}
.service-card p, .process-card p { margin: 0.8rem 0 0; }
.service-card small {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--raspberry-rose);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.process-card span {
  color: var(--raspberry-rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}
.process-visual { padding: 0.75rem; overflow-x: auto; }
.process-visual img { min-width: 820px; }

.category-chips { justify-content: center; }
.gallery-note {
  max-width: 760px;
  margin: 1.4rem auto 0;
  text-align: center;
  font-weight: 700;
}

.inquiry-section { background: linear-gradient(135deg, rgba(248, 200, 220, 0.3), rgba(255, 248, 246, 0.8)); }
.inquiry-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
.inquiry-image { margin-top: 1.5rem; }
.contact-card { margin-top: 1rem; padding: 1.2rem; }
.contact-card p { margin: 0.2rem 0; }
.inquiry-form { padding: clamp(1.25rem, 3vw, 2rem); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--deep-plum);
  font-size: 0.92rem;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--clean-white);
  color: var(--deep-plum);
  font: inherit;
  padding: 0.8rem 0.9rem;
}
textarea { resize: vertical; }
.form-helper, .form-status { font-size: 0.92rem; }
.form-status { color: var(--raspberry-rose); font-weight: 800; }

.footer {
  background: var(--deep-plum);
  color: var(--warm-cream);
  padding: 4rem 0 2rem;
}
.footer h2, .footer p, .footer a { color: var(--warm-cream); }
.footer h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 2rem;
}
.footer-nav { display: grid; gap: 0.65rem; align-content: start; }
.footer-bottom {
  width: min(100% - 40px, 1180px);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(248, 200, 220, 0.24);
  color: var(--ballet-pink);
  text-align: center;
  font-weight: 700;
}

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

@media (max-width: 1024px) {
  .hero-grid, .split-grid, .inquiry-grid { grid-template-columns: 1fr; }
  h1 { max-width: 11ch; }
  .service-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid .image-card { order: 2; }
  .about-grid .content-card { order: 1; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 150px; }
  .nav, .container, .footer-bottom { width: min(100% - 32px, 1180px); }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .nav-cta { width: 100%; }
  h1 { max-width: 100%; font-size: clamp(2.7rem, 14vw, 4.1rem); }
  .section { padding-block: 4rem; }
  .service-grid, .process-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .process-grid { margin-bottom: 1rem; }
  .process-visual { margin-inline: -0.5rem; }
  .button { width: 100%; }
  .trust-pills li, .category-chips li { width: 100%; text-align: center; }
}
