:root {
  --bg: #fff7f1;
  --bg-soft: #ffe8de;
  --surface: rgba(255,255,255,0.7);
  --surface-2: rgba(255,255,255,0.85);
  --card: #fffdfb;
  --text: #3f3145;
  --text-dark: #2b2133;
  --muted: #756578;
  --line: rgba(112,78,98,0.14);
  --accent: #ff7a59;
  --accent-2: #ffd166;
  --accent-3: #67d8cf;
  --shadow: 0 24px 70px rgba(167,93,99,0.16);
  --shadow-soft: 0 14px 36px rgba(167,93,99,0.1);
  --radius: 26px;
  --radius-sm: 20px;
  --container: min(1180px, calc(100% - 2rem));
  --transition: 220ms ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 8% 8%, rgba(255,209,102,0.48), transparent 18%),
    radial-gradient(circle at 88% 10%, rgba(103,216,207,0.34), transparent 16%),
    radial-gradient(circle at 22% 40%, rgba(255,122,89,0.16), transparent 24%),
    linear-gradient(180deg, #fff7f1 0%, #fff1eb 30%, #fffaf7 100%);
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: white;
  color: black;
  padding: .75rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { left: 1rem; z-index: 1000; }

.container { width: var(--container); margin: 0 auto; }

.section { padding: clamp(4rem, 6vw, 6.2rem) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(255,248,244,0.985), rgba(255,248,244,0.94));
  border-bottom: 1px solid rgba(112,78,98,0.1);
  box-shadow: 0 10px 28px rgba(167,93,99,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: .875rem;
  color: var(--text-dark);
}
.brand strong {
  display: block;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: .98rem;
  letter-spacing: -.03em;
}
.brand span { display: block; color: #7a6676; font-size: .84rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(43,33,51,0.82);
}
.site-nav a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  border-radius: 999px;
}
.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;
}

.hero {
  color: var(--text-dark);
  padding-top: clamp(4rem, 6vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  isolation: isolate;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1,
.section-heading h2,
.cta-band h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 11.2ch;
}
.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .77rem;
  color: #f0657d;
  font-weight: 700;
}
.hero-stamp {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,145,126,0.28);
  box-shadow: var(--shadow-soft);
  color: #8c4d62;
  font-size: .9rem;
  font-weight: 700;
}
.lead, .section-heading p, .contact-copy p {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.6;
  max-width: 58ch;
}
.hero-copy .lead { color: #5f4c62; }

.hero-actions,
.form-actions,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 3.1rem;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.button:hover { transform: translateY(-1px); }
.button:disabled,
.button[disabled] {
  transform: none;
  cursor: not-allowed;
  opacity: .65;
  box-shadow: none;
}
.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text-dark);
  box-shadow: 0 18px 40px rgba(255,122,89,.28);
}
.button-secondary {
  background: rgba(255,255,255,0.8);
  color: var(--text-dark);
  border-color: rgba(112,78,98,0.16);
  box-shadow: var(--shadow-soft);
}
.button-sm { min-height: 2.7rem; padding-inline: 1rem; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  color: #574458;
  font-size: .95rem;
}
.hero-points li {
  padding: .8rem 1rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(112,78,98,0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.hero-points li:nth-child(1) { background: #fff2bf; }
.hero-points li:nth-child(2) { background: #dff8f5; }
.hero-points li:nth-child(3) { background: #ffe2ea; }
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}
.hero-notes span {
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  color: #735d76;
  font-size: .86rem;
  font-weight: 600;
}

.hero-media {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}
.hero-card {
  position: relative;
  min-height: 34rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.hero-card::before {
  width: 9.5rem;
  height: 9.5rem;
  left: -1rem;
  top: 2.4rem;
  background: rgba(255,209,102,0.65);
}
.hero-card::after {
  width: 7rem;
  height: 7rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(103,216,207,0.45);
}
.instax-shot {
  position: absolute;
  width: min(17rem, 72%);
  margin: 0;
  padding: .85rem .85rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf8, #fff6ee);
  border: 1px solid rgba(255,210,191,0.88);
  box-shadow: 0 26px 50px rgba(167,93,99,0.22);
  z-index: 1;
}
.instax-shot::before {
  content: "";
  position: absolute;
  top: -.48rem;
  left: 50%;
  width: 4.4rem;
  height: 1.1rem;
  border-radius: .5rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.4);
  transform: translateX(-50%) rotate(-4deg);
}
.instax-shot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: #dbe4f0;
}
.instax-shot figcaption {
  margin-top: .8rem;
  color: #5d455e;
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.shot-one {
  left: 0;
  top: 3.1rem;
  transform: rotate(-8deg);
}
.shot-two {
  right: 0;
  top: 0;
  transform: rotate(6deg);
}
.shot-three {
  left: 20%;
  bottom: 0;
  transform: rotate(-2deg);
}
.floating-stat {
  position: absolute;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255,251,247,0.92);
  border: 1px solid rgba(255,204,186,0.72);
  box-shadow: var(--shadow-soft);
  max-width: 230px;
  z-index: 3;
}
.floating-stat strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: .35rem;
}
.floating-stat span { color: #77657a; font-size: .92rem; line-height: 1.5; }
.stat-one { left: -1rem; bottom: 4rem; }
.stat-two { right: -1rem; top: 2rem; }

.trust-strip { padding-top: 0; margin-top: -.4rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-card {
  background: var(--card);
  border: 1px solid rgba(112,78,98,0.08);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}
.stat-card:nth-child(1) { background: #fff3cf; }
.stat-card:nth-child(2) { background: #dff7f2; }
.stat-card:nth-child(3) { background: #ffe4ea; }
.stat-card strong {
  display: block;
  font-size: 1.03rem;
  margin-bottom: .55rem;
}
.stat-card span { color: #625269; line-height: 1.55; }

.section-heading {
  margin-bottom: 2rem;
}
.section-heading h2,
.cta-band h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 12ch;
}
.section-heading h2,
.cta-band h2,
.contact-copy h2 { color: var(--text-dark); }
.section-heading p { color: #6e5d72; max-width: 56ch; }

.service-grid,
.pricing-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-card,
.process-card,
.gallery-note,
.contact-form,
.pricing-card {
  background: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  padding: 1.45rem;
  border: 1px solid rgba(112,78,98,0.08);
  box-shadow: var(--shadow-soft);
}
.service-card h3,
.pricing-card h3,
.gallery-note h3,
.process-card h3 { margin: .6rem 0; font-size: 1.25rem; letter-spacing: -0.03em; }
.service-card p, .process-card p, .pricing-card li, .gallery-note p { color: #625269; line-height: 1.55; }
.service-card ul, .pricing-card ul { padding-left: 1rem; margin: .8rem 0 0; }
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1c5, #ffd7cd);
  color: #7b4462;
  font-weight: 800;
}
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #dff8f5, #d9ebff); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #ffe0ea, #ffd8b8); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #dff8f5, #fff0c8); }

.inspiration-wall {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(255,209,102,0.34), transparent 16%),
    radial-gradient(circle at 86% 18%, rgba(103,216,207,0.24), transparent 18%),
    linear-gradient(180deg, #fff1ea 0%, #fff7ea 44%, #f6fcff 100%);
}
.inspiration-wall .section-heading p { color: #6f5e71; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item,
.gallery-note {
  background: transparent;
  border: 0;
}
.gallery-item {
  position: relative;
  padding: .85rem .85rem 1.15rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf8, #fff5ee);
  border: 0;
  box-shadow: 0 20px 44px rgba(167,93,99,0.18);
}
.gallery-item:nth-child(1) { transform: rotate(-3deg); }
.gallery-item:nth-child(2) { transform: rotate(2.4deg); }
.gallery-item:nth-child(3) { transform: rotate(-1.4deg); }
.gallery-item:nth-child(4) { transform: rotate(3.2deg); }
.gallery-item:nth-child(5) { transform: rotate(-2.2deg); }
.gallery-item::before {
  content: "";
  position: absolute;
  top: -.45rem;
  left: 50%;
  width: 5rem;
  height: 1.15rem;
  border-radius: .5rem;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.32);
  transform: translateX(-50%) rotate(-4deg);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}
.gallery-item figcaption {
  margin-top: .85rem;
  color: #5b465d;
  font-weight: 700;
}
.gallery-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #ff8f70, #ffd166);
  box-shadow: var(--shadow);
}
.gallery-note h3 { color: var(--text-dark); }
.gallery-note p { color: rgba(43,33,51,0.84); }
.text-link {
  margin-top: .4rem;
  display: inline-flex;
  color: var(--text-dark);
  font-weight: 700;
}

.stories-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(255,209,102,0.22), transparent 18%),
    radial-gradient(circle at 84% 28%, rgba(103,216,207,0.18), transparent 18%),
    linear-gradient(180deg, #fffaf7 0%, #fff3ee 100%);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.story-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(112,78,98,0.08);
  box-shadow: var(--shadow-soft);
}
.story-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.story-tag {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: .45rem .72rem;
  border-radius: 999px;
  background: #fff1cf;
  color: #8b516a;
  font-size: .8rem;
  font-weight: 700;
}
.story-card:nth-child(2) .story-tag { background: #dff8f5; }
.story-card:nth-child(3) .story-tag { background: #ffe2ea; }
.story-quote {
  margin: 0;
  color: #4f3c55;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.68;
}
.story-attribution {
  margin-top: auto;
  display: grid;
  gap: .15rem;
}
.story-attribution strong {
  color: var(--text-dark);
  font-size: .98rem;
}
.story-attribution span {
  color: #7a6676;
  font-size: .9rem;
}

.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.pricing-card.featured {
  background: linear-gradient(135deg, #ffd77c, #ff9ab3);
  color: var(--text-dark);
  border-color: rgba(255,160,139,0.35);
}
.pricing-card.featured li,
.pricing-card.featured .price { color: rgba(43,33,51,0.82); }
.pricing-tag {
  align-self: flex-start;
  margin: 0;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  background: #fff1cf;
  color: #8b516a;
}
.featured .pricing-tag {
  background: rgba(255,255,255,0.52);
  color: #8b4e65;
}
.price { margin: -.2rem 0 0; color: #655669; font-weight: 600; }

.process-section {
  background: linear-gradient(180deg, #fff7ef 0%, #f3fcff 100%);
}
.process-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.2rem;
}
.process-grid { grid-template-columns: repeat(4, 1fr); }

.cta-band {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 18% 30%, rgba(255,209,102,.48), transparent 24%),
    radial-gradient(circle at 82% 45%, rgba(103,216,207,.35), transparent 20%),
    linear-gradient(135deg, #ffe8de, #fff8eb);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(112,78,98,0.1);
  border-radius: 28px;
  padding: clamp(1.6rem, 4vw, 2.2rem);
}

.faq-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.5rem; align-items: start; }
.faq-list { display: grid; gap: .85rem; }
.faq-item {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(112,78,98,0.08);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: #65556a; line-height: 1.65; margin-bottom: .2rem; }

.contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,209,102,0.32), transparent 16%),
    radial-gradient(circle at 88% 24%, rgba(103,216,207,0.22), transparent 18%),
    linear-gradient(180deg, #ffe2d5 0%, #ffeef4 54%, #fffaf7 100%);
  color: var(--text-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 1.2rem;
}
.contact-copy p { color: #66546a; }
.contact-copy { align-self: center; }

.contact-form {
  background: rgba(255,255,255,0.92);
  color: var(--text-dark);
  border-color: rgba(112,78,98,0.08);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .95rem;
}
.contact-form label {
  display: grid;
  gap: .4rem;
  margin-bottom: .95rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.contact-form span { font-size: .95rem; font-weight: 600; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #e6ccd3;
  padding: .9rem 1rem;
  background: white;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,122,89,0.14);
}
.form-note {
  color: #76657a;
  font-size: .92rem;
  line-height: 1.6;
}
.success-message {
  margin: .8rem 0 0;
  color: #0f766e;
  background: #ecfeff;
  border: 1px solid #99f6e4;
  border-radius: 14px;
  padding: .9rem 1rem;
}
.success-message.is-error {
  color: #9f1239;
  background: #fff1f2;
  border-color: #fecdd3;
}

.site-footer {
  background: #fff4ec;
  color: #746579;
  padding: 1.5rem 0 2.2rem;
  border-top: 1px solid rgba(112,78,98,0.08);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner strong { color: var(--text-dark); }

.reveal, .reveal-delay {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal-delay { transition-delay: 120ms; }
.reveal.is-visible, .reveal-delay.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid,
  .stories-grid,
  .gallery-grid,
  .faq-layout,
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .section-heading h2,
  .contact-copy h2,
  .cta-band h2 {
    max-width: 16ch;
  }
  .hero-card { min-height: 27rem; }
  .instax-shot { width: min(15rem, 72%); }
  .floating-stat { display: none; }
}

@media (max-width: 820px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(255,209,102,0.42), transparent 22%),
      radial-gradient(circle at 88% 14%, rgba(103,216,207,0.22), transparent 18%),
      linear-gradient(180deg, #fff7f1 0%, #fff0e8 30%, #fffaf7 100%);
  }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: grid;
    gap: .35rem;
    padding: .65rem;
    border-radius: 22px;
    background: rgba(255,248,244,0.96);
    border: 1px solid rgba(112,78,98,0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a {
    padding: .85rem .9rem;
    border-radius: 14px;
  }
  .site-nav a:hover { background: rgba(255,122,89,0.08); }
  .hero-media { padding-top: 0; }
  .cta-band-inner,
  .footer-inner {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 620px) {
  .section { padding: 4rem 0; }
  .field-grid,
  .service-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 { max-width: 12ch; }
  .hero-points { flex-direction: column; }
  .hero-notes { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-actions .button,
  .form-actions .button,
  .cta-band-actions .button { width: 100%; }
  .hero-card {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }
  .instax-shot {
    position: static;
    width: 100%;
    transform: none;
  }
  .gallery-item { transform: none !important; }
}
