:root {
  --blush-50: #fff8f9;
  --blush-100: #fdecef;
  --rose: #c46a86;
  --rose-dark: #7f334e;
  --champagne: #d9b875;
  --gold: #b68a38;
  --ink: #2d2026;
  --muted: #75666d;
  --white: #ffffff;
  --line: rgba(127, 51, 78, 0.16);
  --shadow: 0 22px 70px rgba(127, 51, 78, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 12% 16%, rgba(217, 184, 117, 0.18), transparent 24rem), linear-gradient(180deg, var(--blush-50), var(--white) 34%, #fff9f5 100%);
  font-family: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 248, 249, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { background: rgba(255,255,255,.94); box-shadow: 0 10px 30px rgba(127,51,78,.1); }
.brand { display: inline-flex; align-items: center; gap: .7rem; min-width: 0; font-weight: 800; }
.brand span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand-mark {
  display: grid; width: 2.45rem; height: 2.45rem; place-items: center;
  background: #050505;
  border: 1px solid rgba(217, 184, 117, 0.32);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(196, 106, 134, 0.26);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-nav { display: none; }
.site-nav a { color: var(--rose-dark); font-size: .9rem; font-weight: 800; }
.site-nav a:hover { color: var(--gold); }
.nav-toggle {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: .42rem;
  width: 2.75rem; height: 2.75rem; padding: 0; border: 1px solid var(--line);
  border-radius: 999px; background: var(--white); cursor: pointer;
}
.nav-toggle span { width: 1.1rem; height: 2px; background: var(--rose-dark); transition: transform .18s ease; }
.nav-toggle.is-open span:first-child { transform: translateY(.24rem) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-.24rem) rotate(-45deg); }
.site-nav.is-open {
  position: absolute; top: calc(100% + .5rem); left: 1rem; right: 1rem;
  display: grid; gap: .35rem; padding: .8rem; background: rgba(255,255,255,.96);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.site-nav.is-open a { padding: .8rem .9rem; border-radius: 7px; }

.hero { position: relative; display: grid; min-height: 100svh; padding: 6.5rem 1rem 2rem; overflow: hidden; isolation: isolate; }
.hero::after, .section-heading::after, .contact-card::after {
  content: "*"; position: absolute; color: rgba(182, 138, 56, .32); font-size: 4rem; line-height: 1; transform: rotate(18deg);
}
.hero::after { right: 1.5rem; top: 6.5rem; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,248,249,.97) 0%, rgba(255,248,249,.88) 44%, rgba(255,248,249,.28) 100%), linear-gradient(0deg, rgba(255,248,249,.92) 0%, transparent 36%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero-content { align-self: center; width: min(100%, 41rem); padding: 4rem 0 6.5rem; }
.eyebrow { margin: 0 0 .8rem; color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.02; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
h1 { max-width: 10ch; font-size: clamp(3.25rem, 17vw, 6.8rem); }
h2 { max-width: 12ch; font-size: clamp(2.35rem, 9vw, 4.6rem); }
h3 { font-size: 1.1rem; }
.hero-copy, .section-heading > p:not(.eyebrow), .about-grid p, .service-card p, .faq-list p, .contact-card p, .site-footer p { color: var(--muted); }
.hero-copy { max-width: 37rem; margin: 1.2rem 0 0; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 3.1rem;
  padding: .85rem 1.2rem; border: 1px solid transparent; border-radius: 999px; font-weight: 900; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--rose-dark), var(--rose)); box-shadow: 0 14px 32px rgba(127,51,78,.24); }
.button-secondary { color: var(--rose-dark); background: rgba(255,255,255,.74); border-color: rgba(182,138,56,.34); }

.section { width: min(100% - 2rem, 1160px); margin-inline: auto; padding-block: 4rem; }
.intro-strip, .about-grid, .service-grid, .gallery-grid, .form-grid, .contact-card, .faq-list, .order-form, .contact-form { display: grid; gap: 1rem; }
.intro-strip { padding-block: 1rem 3.5rem; }
.intro-strip div, .service-card, .order-form, details {
  padding: 1rem; background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 36px rgba(127,51,78,.08);
}
.intro-strip strong, .intro-strip span { display: block; }
.intro-strip strong, .service-card span, summary, label, .contact-card a, .site-footer p:first-child { color: var(--rose-dark); font-weight: 900; }
.section-heading { position: relative; margin-bottom: 1.6rem; }
.section-heading::after { right: 0; top: -1.2rem; font-size: 3rem; }
.service-card { position: relative; overflow: hidden; }
.service-card span {
  display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem;
  margin-bottom: 1rem; background: var(--blush-100); border: 1px solid rgba(217,184,117,.35); border-radius: 50%; font-size: .78rem;
}
.gallery-grid { grid-auto-flow: dense; }
.gallery-item { position: relative; min-height: 16rem; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.78); border-radius: var(--radius); box-shadow: 0 18px 40px rgba(127,51,78,.1); background: var(--white); }
.gallery-item img { width: 100%; height: 100%; min-height: 16rem; object-fit: cover; object-position: center; transition: transform .26s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption {
  position: absolute; left: .8rem; right: .8rem; bottom: .8rem; padding: .65rem .8rem;
  color: var(--rose-dark); background: rgba(255,255,255,.84); border-radius: 7px; font-weight: 900; backdrop-filter: blur(10px);
}
.order-section { width: min(100% - 2rem, 980px); }
label { display: grid; gap: .45rem; font-size: .9rem; }
input, textarea, select { width: 100%; min-height: 3.05rem; padding: .8rem .9rem; color: var(--ink); background: var(--white); border: 1px solid rgba(127,51,78,.18); border-radius: 7px; outline: none; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--champagne); box-shadow: 0 0 0 4px rgba(217,184,117,.16); }
.field-error { display: none; color: #9b233e; font-size: .78rem; font-weight: 800; }
.is-invalid input, .is-invalid textarea, .is-invalid select { border-color: #c43f5b; }
.is-invalid .field-error { display: block; }
.form-status { min-height: 1.4rem; margin: 0; color: var(--rose-dark); font-weight: 900; }
details { padding: 0; }
summary { cursor: pointer; padding: 1rem; }
details p { margin: 0; padding: 0 1rem 1rem; }
.contact-card { position: relative; padding: 1.2rem; background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(253,236,239,.78)); border: 1px solid rgba(255,255,255,.86); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.contact-card::after { right: 1rem; top: 1rem; }
.social-links { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.social-links a { padding: .65rem .85rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; }
.site-footer { display: flex; flex-direction: column; gap: .25rem; align-items: center; padding: 2rem 1rem; text-align: center; border-top: 1px solid var(--line); }
.site-footer p { margin: 0; }
.site-footer p:first-child { font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; }
.thank-you-page {
  min-height: 100svh;
  background: radial-gradient(circle at 50% 0%, rgba(217,184,117,.2), transparent 24rem), linear-gradient(180deg, var(--blush-50), var(--white));
}
.thank-you {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 2rem 1rem;
}
.thank-you-brand {
  position: fixed;
  top: 1rem;
  left: 1rem;
}
.thank-you-card {
  width: min(100%, 42rem);
  padding: clamp(1.4rem, 5vw, 3rem);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.thank-you-card h1 {
  max-width: none;
  font-size: clamp(2.8rem, 11vw, 5.2rem);
}
.thank-you-card p:not(.eyebrow) {
  color: var(--muted);
}

@media (min-width: 680px) {
  .intro-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid, .gallery-grid, .form-grid, .about-grid, .contact-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .full-width, .service-card-wide { grid-column: 1 / -1; }
  .gallery-photo, .gallery-item:nth-child(4), .gallery-item:nth-child(7) { grid-row: span 2; }
}
@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .site-nav, .site-nav.is-open { position: static; display: flex; align-items: center; gap: 1.25rem; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .hero { padding-inline: clamp(2rem, 7vw, 6rem); }
  .hero-media::after { background: linear-gradient(90deg, rgba(255,248,249,.96) 0%, rgba(255,248,249,.78) 36%, rgba(255,248,249,.18) 72%), linear-gradient(0deg, rgba(255,248,249,.56) 0%, transparent 34%); }
  .service-grid, .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-card-wide { grid-column: span 2; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
