:root {
  --cream: #fff2cf;
  --cream-soft: #fff8e8;
  --pink: #f3a0bd;
  --pink-light: #ffd5e2;
  --rose: #7a354f;
  --mauve: #a65d73;
  --mint: #b7dfd1;
  --gold: #d69c62;
  --ink: #432c35;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(122, 53, 79, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  background: rgba(255, 248, 232, 0.94);
  border-bottom: 1px solid rgba(122, 53, 79, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--rose);
}

.brand img {
  width: 54px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--pink-light);
}

.site-nav {
  display: none;
  position: absolute;
  top: 68px;
  left: 14px;
  right: 14px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(122, 53, 79, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--rose);
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--pink-light);
  outline: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: var(--pink-light);
  border: 1px solid rgba(122, 53, 79, 0.22);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--rose);
  border-radius: 999px;
}

.section-pad {
  padding: 72px 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 66px);
  display: grid;
  align-items: center;
  gap: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 213, 226, 0.8), transparent 24%),
    linear-gradient(135deg, var(--cream), var(--cream-soft) 60%, #ffeaf0);
}

.hero-content,
.hero-logo-card,
.section-heading,
.pricing-layout,
.steps,
.order-layout,
.accordion,
.contact-panel {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--mauve);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 14vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 9vw, 3.6rem);
}

h3 {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 1.1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(122, 53, 79, 0.24);
}

.button.secondary {
  background: var(--white);
  color: var(--rose);
  border-color: var(--pink);
}

.trust-line {
  margin: 18px 0 0;
  color: var(--rose);
  font-weight: 800;
}

.hero-logo-card {
  position: relative;
  z-index: 2;
  padding: 12px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(122, 53, 79, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-logo-card img {
  width: 100%;
  border-radius: 8px;
}

.bubble,
.sparkle {
  position: absolute;
  pointer-events: none;
}

.bubble {
  border: 3px solid rgba(166, 93, 115, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.bubble-one {
  width: 92px;
  height: 92px;
  right: 8%;
  top: 16%;
}

.bubble-two {
  width: 42px;
  height: 42px;
  left: 7%;
  bottom: 18%;
}

.sparkle {
  width: 18px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  opacity: 0.8;
}

.sparkle-one {
  right: 22%;
  bottom: 26%;
}

.sparkle-two {
  left: 24%;
  top: 20%;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 800px;
}

.card-grid {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 16px;
}

.service-card,
.price-feature,
.pricing-list,
.steps article,
.order-form,
.order-summary,
.accordion details {
  background: var(--white);
  border: 1px solid rgba(122, 53, 79, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(122, 53, 79, 0.09);
}

.service-card {
  padding: 22px;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--pink-light);
  color: var(--rose);
  border-radius: 8px;
  font-weight: 900;
}

.service-card p,
.order-summary p {
  margin: 0;
}

.pricing-band {
  background: linear-gradient(180deg, #fff0f5, var(--cream));
}

.pricing-layout {
  display: grid;
  gap: 18px;
}

.price-feature {
  padding: 28px;
  background: var(--rose);
  color: var(--white);
}

.price-feature p,
.price-feature small {
  margin: 0;
}

.price-feature strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(3rem, 16vw, 5rem);
  line-height: 1;
}

.price-feature span {
  display: block;
  font-size: 1.05rem;
}

.pricing-list {
  overflow: hidden;
}

.pricing-list div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid rgba(122, 53, 79, 0.12);
}

.pricing-list div:last-child {
  border-bottom: 0;
}

.pricing-list span {
  color: var(--mauve);
  font-weight: 800;
}

.pricing-list strong {
  color: var(--rose);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 22px;
  border-left: 7px solid var(--pink);
}

.steps span {
  color: var(--mauve);
  font-weight: 900;
}

.steps h3 {
  margin-top: 8px;
}

.order-section {
  background: #fff5f8;
}

.order-layout {
  display: grid;
  gap: 18px;
}

.order-form,
.order-summary {
  padding: 20px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label,
legend {
  color: var(--rose);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: var(--cream-soft);
  border: 1px solid rgba(122, 53, 79, 0.28);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(243, 160, 189, 0.45);
  border-color: var(--rose);
}

fieldset {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(122, 53, 79, 0.22);
  border-radius: 8px;
}

fieldset label,
.terms-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

fieldset input,
.terms-check input {
  width: 18px;
  min-height: 18px;
  margin: 0;
}

.terms-check {
  margin: 18px 0;
}

.form-submit {
  width: 100%;
  border: 0;
}

.hidden-field {
  display: none;
}

#order-output {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 53, 79, 0.14);
}

#order-output dl {
  margin: 0;
}

#order-output dt {
  color: var(--mauve);
  font-weight: 900;
}

#order-output dd {
  margin: 0 0 10px;
}

.order-next-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--cream);
  border: 1px solid rgba(122, 53, 79, 0.14);
  border-radius: 8px;
}

.order-actions {
  display: grid;
  gap: 10px;
}

.button.copy-button {
  width: 100%;
  background: var(--white);
  color: var(--rose);
  border-color: var(--pink);
}

.copy-status {
  min-height: 24px;
  margin: 0;
  color: var(--mauve);
  font-weight: 800;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  padding: 0 18px;
}

.accordion summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  color: var(--rose);
  font-weight: 900;
  cursor: pointer;
}

.accordion p {
  margin-top: 0;
}

.accordion ul {
  padding-left: 22px;
}

.contact-section {
  background: linear-gradient(135deg, var(--rose), #9a5269);
}

.contact-panel {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 28px;
  background: var(--cream-soft);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-line a {
  color: var(--rose);
  font-weight: 900;
}

.payment-list {
  display: grid;
  gap: 8px;
  color: var(--rose);
  font-weight: 800;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 34px 20px;
  background: var(--cream);
  color: var(--rose);
  font-weight: 900;
}

.site-footer img {
  width: 110px;
  border-radius: 8px;
}

.site-footer p {
  margin: 0;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 213, 226, 0.8), transparent 24%),
    linear-gradient(135deg, var(--cream), var(--cream-soft) 60%, #ffeaf0);
}

.success-panel {
  width: min(640px, 100%);
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(122, 53, 79, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-panel img {
  width: min(240px, 100%);
  margin: 0 auto 20px;
  border-radius: 8px;
}

.success-panel h1 {
  margin-bottom: 14px;
}

.success-panel p:not(.eyebrow) {
  margin: 0 auto 24px;
  max-width: 420px;
}

@media (min-width: 720px) {
  .section-pad {
    padding: 90px 32px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    padding-top: 78px;
  }

  .hero-logo-card {
    margin-right: max(32px, calc((100vw - 1120px) / 2));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-layout,
  .order-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full {
    grid-column: 1 / -1;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: 1fr auto;
  }

  .order-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .brand span {
    max-width: 170px;
    line-height: 1.1;
  }

  .button {
    width: 100%;
  }
}
