:root {
  --bg: #fff8fb;
  --cream: #fffdf8;
  --white: #ffffff;
  --ink: #071532;
  --muted: #5d657a;
  --pink: #ee3f7b;
  --pink-soft: #ffe6ef;
  --yellow: #ffe39a;
  --cyan: #52c7d8;
  --lilac: #b988ec;
  --purple: #8d66d6;
  --green: #48c774;
  --line: rgba(7, 21, 50, 0.1);
  --shadow: 0 24px 60px rgba(33, 22, 58, 0.12);
  --soft-shadow: 0 14px 35px rgba(33, 22, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 9%, rgba(238, 63, 123, 0.09), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #fff7fb 42%, #fffdf8 100%);
  color: var(--ink);
  font-size: 17px;
  font-family: "Nunito", "Segoe UI", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1440px, calc(100% - 32px));
  min-height: 102px;
  margin: 16px auto 0;
  border: 1px solid rgba(238, 63, 123, 0.16);
  border-radius: 22px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border: 2px solid rgba(238, 63, 123, 0.25);
  border-radius: 20px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 227, 154, 0.95) 0 7px, transparent 8px),
    radial-gradient(circle at 18% 78%, rgba(82, 199, 216, 0.22) 0 11px, transparent 12px),
    linear-gradient(135deg, #fff, #ffe3ee);
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(238, 63, 123, 0.14);
}

.logo-mark::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: -12px -34px 0 -4px var(--yellow);
}

.logo-mark span {
  line-height: 1;
}

.logo-mark span:nth-child(2) {
  margin-left: -3px;
  transform: translateY(5px);
}

.logo-mark span:nth-child(3) {
  margin-left: -2px;
  color: var(--ink);
  font-size: 0.82em;
  transform: translateY(-8px) rotate(-8deg);
}

.brand strong,
.brand small,
.footer-brand strong,
.footer-brand small {
  display: block;
}

.brand strong,
.footer-brand strong {
  font-size: 1.36rem;
  font-weight: 950;
  line-height: 1.08;
}

.brand-name {
  position: relative;
  display: inline-grid !important;
  justify-items: center;
  gap: 0;
  width: max-content;
  max-width: 100%;
  padding-bottom: 12px;
  line-height: 1;
}

.brand-main {
  color: var(--ink);
  font-size: 0.82em;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-signature {
  margin-top: -1px;
  background: linear-gradient(92deg, var(--pink) 0%, #ff7aaa 38%, var(--cyan) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.12em;
  font-weight: 800;
  line-height: 0.98;
  text-shadow: 0 10px 24px rgba(238, 63, 123, 0.14);
}

.brand-name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(126px, 74%);
  height: 6px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 50%, var(--yellow) 0 4px, transparent 5px),
    linear-gradient(90deg, var(--pink), #ff86b2 42%, var(--cyan));
  box-shadow: 0 10px 22px rgba(238, 63, 123, 0.2);
  transform: translateX(-50%);
}

.brand small,
.footer-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 850;
}

.site-header .brand {
  min-width: min(520px, 48vw);
}

.site-header .brand > span:last-child {
  min-width: 0;
}

.site-header .brand-name {
  font-size: clamp(1.36rem, 2.02vw, 2.22rem);
}

.site-header .brand small {
  display: none;
}

.footer-brand .brand-name {
  font-size: 1.32rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 30px);
  margin-left: auto;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.site-nav a {
  padding: 10px 0;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  border-radius: 15px;
  padding: 0 24px !important;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 16px 26px rgba(238, 63, 123, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff3f7;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.section-frame {
  width: min(1440px, calc(100% - 32px));
  margin: 18px auto;
  border: 1px solid rgba(238, 63, 123, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: 28px;
  align-items: center;
  min-height: 720px;
  padding: clamp(34px, 5vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 227, 154, 0.55), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 239, 246, 0.82));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 46% 18%, var(--cyan) 0 5px, transparent 6px),
    radial-gradient(circle at 53% 11%, var(--yellow) 0 7px, transparent 8px),
    radial-gradient(circle at 88% 18%, var(--pink) 0 8px, transparent 9px),
    radial-gradient(circle at 41% 72%, var(--lilac) 0 4px, transparent 5px),
    radial-gradient(circle at 94% 63%, var(--cyan) 0 5px, transparent 6px);
  opacity: 0.9;
}

.hero::after {
  right: 6%;
  bottom: 12%;
  width: 240px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), #ff8bb4);
  transform: rotate(-13deg);
  filter: blur(0.2px);
  opacity: 0.18;
}

.spark {
  position: absolute;
  z-index: 1;
  width: 58px;
  height: 58px;
  border: 4px solid var(--pink);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.5;
}

.spark-one {
  left: 37%;
  top: 26%;
  transform: rotate(38deg);
}

.spark-two {
  right: 5%;
  top: 40%;
  width: 36px;
  height: 36px;
  border-color: var(--cyan);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.hero-copy,
.hero-visual,
.trust-strip {
  position: relative;
  z-index: 2;
}

.pill-label,
.eyebrow {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 0.98rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--pink-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(3.3rem, 6vw, 6.4rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--pink);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 0.92em;
  font-weight: 700;
  line-height: 1;
}

.hero-copy p:not(.pill-label) {
  max-width: 520px;
  color: #26314b;
  font-size: clamp(1.18rem, 1.9vw, 1.46rem);
  line-height: 1.55;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  padding: 0 24px;
  font-weight: 950;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.occasion-card:hover,
.example-card:hover,
.price-card:hover {
  transform: translateY(-4px);
}

.button-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(238, 63, 123, 0.25);
}

.button-secondary {
  border: 2px solid rgba(7, 21, 50, 0.12);
  background: var(--white);
  color: var(--ink);
}

.hero-visual {
  align-self: stretch;
  min-height: 450px;
}

.hero-visual img {
  width: 118%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  border-radius: 26px;
  mix-blend-mode: multiply;
}

.trust-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(7, 21, 50, 0.08);
}

.trust-strip div {
  display: grid;
  place-items: center;
  min-height: 120px;
  border-right: 1px solid rgba(7, 21, 50, 0.08);
  text-align: center;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border: 2px solid var(--pink);
  border-radius: 13px;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 950;
}

.trust-strip strong {
  font-size: 1.12rem;
}

.trust-strip small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 800;
}

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

.section-heading h2,
.about-copy h2,
.request-copy h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.request-copy p {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.65;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
  padding: clamp(34px, 6vw, 78px);
  background: linear-gradient(135deg, rgba(255, 238, 245, 0.92), rgba(255, 255, 255, 0.86));
}

.about::after {
  content: "♡";
  position: absolute;
  right: 12%;
  top: 18%;
  color: var(--pink);
  font-size: 58px;
  transform: rotate(12deg);
}

.about-photo {
  position: relative;
  width: min(340px, 100%);
  margin: 0 auto;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 3px solid var(--pink);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.about-photo img {
  aspect-ratio: 1;
  width: 100%;
  border: 10px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 720px;
}

.occasions,
.process,
.pricing,
.examples,
.reviews,
.request {
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 70px);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.occasion-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.occasion-card:hover {
  box-shadow: var(--shadow);
}

.occasion-image {
  height: 168px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(238, 63, 123, 0.12)),
    url("assets/hero-modern.png");
  background-size: 290%;
  background-position: center;
}

.birthday { background-position: 78% 32%; }
.eighteen { background-position: 62% 24%; }
.graduation { background-position: 82% 10%; }
.anniversary { background-position: 72% 66%; }
.wedding { background-position: 96% 32%; }
.baptism { background-position: 52% 50%; }
.surprise { background-position: 48% 86%; }
.travel { background-position: 92% 72%; }
.gift { background-position: 54% 78%; }

.occasion-icon {
  position: absolute;
  left: 18px;
  top: 136px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 4px solid var(--white);
  border-radius: 16px;
  background: var(--cyan);
  color: var(--white);
  font-weight: 950;
  box-shadow: var(--soft-shadow);
}

.theme-pink .occasion-icon { background: var(--pink); }
.theme-yellow .occasion-icon { background: var(--yellow); color: var(--ink); }
.theme-lilac .occasion-icon { background: var(--lilac); }
.theme-purple .occasion-icon { background: var(--purple); }

.occasion-card h3 {
  min-height: 56px;
  margin: 30px 18px 12px;
  font-size: 1.22rem;
  font-weight: 950;
}

.process {
  background: linear-gradient(135deg, #fff, #fff5fa);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.process-visuals {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.mini-scene {
  width: min(260px, 88%);
  height: 128px;
  border: 8px solid var(--white);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffe5ef, #dff9ff);
  box-shadow: var(--soft-shadow);
}

.scene-laptop {
  background: linear-gradient(135deg, #0b1733 0 42%, #ef3f7b 43% 48%, #52c7d8 49% 53%, #fff 54%);
}

.scene-phone {
  width: min(180px, 72%);
  height: 190px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0b1733, #ef3f7b);
}

.mini-heart {
  width: 100px;
  height: 82px;
  border-radius: 50% 50% 42% 42%;
  background: radial-gradient(circle at 32% 30%, #fff 0 10px, transparent 11px), var(--pink);
  box-shadow: var(--soft-shadow);
}

.timeline {
  position: relative;
  display: grid;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgba(238, 63, 123, 0.35) 0 8px, transparent 8px 14px);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
}

.timeline span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 950;
  box-shadow: var(--soft-shadow);
}

.timeline li:nth-child(2) span { background: var(--yellow); color: var(--ink); }
.timeline li:nth-child(3) span { background: var(--cyan); }
.timeline li:nth-child(4) span { background: var(--lilac); }

.timeline h3 {
  margin: 0 0 8px;
  font-size: 1.36rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.privacy-box {
  display: grid;
  gap: 8px;
  margin-top: 40px;
  border: 1px solid rgba(255, 195, 86, 0.5);
  border-radius: 20px;
  padding: 22px 24px;
  background: #fff7dc;
  box-shadow: var(--soft-shadow);
}

.privacy-box strong {
  font-size: 1.05rem;
}

.privacy-box p {
  margin: 0;
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 16px 20px;
  background: linear-gradient(180deg, #e9fbff, #fff);
  text-align: center;
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.price-card:nth-child(2) { background: linear-gradient(180deg, #fff3c4, #fff); }
.price-card:nth-child(3) { background: linear-gradient(180deg, #ffe6ef, #fff); }
.price-card:nth-child(4) { background: linear-gradient(180deg, #f0e5ff, #fff); }
.price-card:nth-child(5) { background: linear-gradient(180deg, #dff7ff, #fff); }

.price-card.featured {
  border-color: rgba(238, 63, 123, 0.35);
  box-shadow: 0 22px 55px rgba(238, 63, 123, 0.16);
}

.price-card em {
  position: absolute;
  top: -13px;
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card span,
.price-card small {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 850;
}

.price-card strong {
  margin-top: 4px;
  font-size: 3rem;
  line-height: 1;
}

.price-card b {
  align-self: end;
  margin-top: 20px;
  color: var(--ink);
  font-size: 2.15rem;
  font-weight: 950;
}

.included-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin: 32px auto;
}

.included-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.center-button {
  width: fit-content;
  margin: 0 auto;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.example-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 0 16px;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.example-card strong {
  padding: 0 14px;
  font-size: 1.08rem;
}

.example-thumb {
  position: relative;
  display: block;
  height: 160px;
  background:
    linear-gradient(135deg, rgba(238, 63, 123, 0.14), rgba(255, 227, 154, 0.16)),
    url("assets/hero-modern.png");
  background-size: 330%;
  background-position: 64% 28%;
}

.example-thumb i {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.example-thumb i::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  border-left: 16px solid var(--pink);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.example-two { background-position: 82% 10%; }
.example-three { background-position: 72% 66%; }
.example-four { background-position: 96% 32%; }
.example-five { background-position: 78% 32%; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.review-grid span {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-grid p {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 850;
  line-height: 1.45;
}

.request {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: linear-gradient(135deg, #fffdf8, #fff2f7);
}

.request-copy {
  position: sticky;
  top: 122px;
}

.request-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 30px);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.request-form label:not(.privacy-check) {
  gap: 9px;
  color: #b21b54;
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 21, 50, 0.12);
  border-radius: 12px;
  background: #fffdfb;
  color: var(--ink);
  outline: none;
}

.request-form label:not(.privacy-check) input,
.request-form label:not(.privacy-check) select,
.request-form label:not(.privacy-check) textarea {
  border-color: rgba(82, 199, 216, 0.34);
  background: #ffffff;
  color: #071532;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: none;
  box-shadow: inset 0 0 0 1px rgba(82, 199, 216, 0.08);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #8a93a8;
  font-weight: 700;
  opacity: 1;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(238, 63, 123, 0.13);
}

.privacy-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 800;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--pink);
}

.request-preview {
  min-height: 205px;
  background: #f8fdff;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.request-confirmation {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(82, 199, 216, 0.35);
  border-radius: 18px;
  padding: 18px;
  background: #f3fdff;
}

.request-confirmation[hidden] {
  display: none;
}

.request-confirmation h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.request-confirmation p {
  margin: 0;
  color: var(--muted);
}


.portfolio-thumb i::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  border-left: 17px solid var(--pink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) 1fr;
  gap: 18px;
  align-items: center;
  width: min(1440px, calc(100% - 32px));
  margin: 18px auto 0;
  border-radius: 24px 24px 0 0;
  padding: 28px clamp(18px, 5vw, 70px);
  background: linear-gradient(180deg, #ffe7ef, #fff4f8);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  text-align: center;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 70;
  max-width: min(360px, calc(100vw - 44px));
  border-radius: 14px;
  padding: 13px 15px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(7, 21, 50, 0.38);
  backdrop-filter: blur(8px);
}

.legal-modal[hidden] {
  display: none;
}

.legal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid rgba(238, 63, 123, 0.18);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-panel h2 {
  margin: 0 48px 16px 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.legal-panel ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 1.8rem;
  line-height: 1;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 132px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(238, 63, 123, 0.16);
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .hero,
  .about,
  .process-layout,
  .request {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 360px;
    order: 2;
  }

  .hero-visual img {
    width: 100%;
  }

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

  .trust-strip div {
    border-right: 0;
  }

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

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

  .request-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section-frame,
  .site-footer {
    width: min(100% - 20px, 1440px);
    border-radius: 18px;
  }

  .site-header {
    margin-top: 10px;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-name {
    font-size: clamp(1.16rem, 5.8vw, 1.68rem);
  }

  .site-header .brand-name::after {
    width: min(92px, 70%);
    height: 5px;
  }

  .brand small {
    max-width: 190px;
  }

  .logo-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 16px;
    font-size: 1.42rem;
  }

  .brand-name,
  .footer-brand .brand-name {
    font-size: 1.08rem;
  }

  .brand small,
  .footer-brand small {
    font-size: 0.82rem;
  }

  .hero,
  .about,
  .occasions,
  .process,
  .pricing,
  .examples,
  .reviews,
  .request {
    padding: 28px 16px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .hero-copy p:not(.pill-label) {
    font-size: 1rem;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .button,
  .center-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 240px;
  }

  .trust-strip,
  .occasion-grid,
  .price-grid,
  .portfolio-grid,
  .example-grid,
  .review-grid,
  .form-row.two,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 92px;
  }

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

  .section-heading h2,
  .about-copy h2,
  .request-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .process-visuals {
    display: none;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .timeline span {
    width: 46px;
    height: 46px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .occasion-card,
  .example-card,
  .price-card {
    transition: none;
  }
}
