@import url('https://fonts.googleapis.com/css2?family=Allura&family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --ink: #111214;
  --cream: #f7eee8;
  --paper: #fff9f4;
  --paper-deep: #f1e4dc;
  --pink: #e96980;
  --pink-soft: #efb5bb;
  --pink-pale: #f4d4d3;
  --gold: #bd884c;
  --line: rgba(17, 18, 20, 0.14);
  --nav-width: 126px;
  --page-height: 740px;
}

* { box-sizing: border-box; }
html, body { min-width: 320px; min-height: 100%; }
html { background: var(--cream); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.38), transparent 35%),
    var(--cream);
  font-family: Montserrat, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-frame {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: 12px;
}
.site-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--nav-width);
  align-items: stretch;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 18px 48px rgba(55, 37, 33, .14);
}
.page-content { min-width: 0; background: var(--cream); }
.page-stage { min-height: var(--page-height); overflow: hidden; }

.desktop-nav {
  display: grid;
  grid-template-rows: repeat(6, minmax(100px, 1fr));
  min-height: 100%;
  background: #f8f1ec;
  border-left: 1px solid var(--line);
}
.desktop-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 6px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .025em;
  transition: background .16s ease, color .16s ease;
}
.desktop-nav a:last-child { border-bottom: 0; }
.desktop-nav a span { font-size: 11px; font-weight: 500; }
.desktop-nav a:hover { background: #f3c8cb; }
.desktop-nav a.active { background: var(--pink); color: #111; }
.desktop-nav a.home-active { background: #111214; color: #fff; }

.mobile-header { display: none; }
.logo { line-height: .78; min-width: 165px; text-decoration: none; }
.logo strong {
  display: block;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -.06em;
}
.logo em {
  display: block;
  margin-left: 13px;
  color: var(--pink);
  font-family: Allura, cursive;
  font-size: 38px;
  font-style: normal;
  transform: rotate(-4deg);
}
.mobile-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.mobile-nav a {
  padding: 10px 4px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #faf3ee;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
}
.mobile-nav a.active { background: var(--pink); }

/* Shared design details */
.paper-texture {
  background:
    linear-gradient(rgba(255,255,255,.22), rgba(255,255,255,.22)),
    radial-gradient(circle at 18% 16%, rgba(225,146,146,.12) 0 1px, transparent 1.5px),
    var(--cream);
  background-size: auto, 17px 17px, auto;
}
.kicker {
  display: inline-block;
  margin: 0 0 24px;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.display-title {
  margin: 0;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.055em;
}
.script { font-family: Allura, cursive; color: var(--pink); }
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  background: #111214;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.primary-button:hover { background: #292a2d; }

/* Home */
.home-stage {
  display: grid;
  grid-template-columns: 54% 46%;
  height: var(--page-height);
  background: var(--cream);
}
.home-photo {
  position: relative;
  overflow: hidden;
  background: #eeb0b1;
}
.home-photo::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 24%;
  background: var(--paper);
  clip-path: polygon(0 7%, 8% 2%, 17% 7%, 27% 1%, 39% 6%, 52% 2%, 66% 7%, 81% 2%, 100% 6%, 100% 100%, 0 100%);
  box-shadow: 0 -6px 22px rgba(69, 42, 36, .08);
}
.home-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.home-brand-note {
  position: absolute;
  z-index: 2;
  left: 4.5%;
  bottom: 7%;
  width: 31%;
  padding: 19px 19px 15px;
  background: var(--paper);
  border: 1px solid rgba(17,18,20,.08);
  box-shadow: 0 14px 28px rgba(66, 38, 34, .16);
  transform: rotate(-4deg);
}
.home-brand-note::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 17px;
  width: 15px;
  height: 52px;
  border: 4px solid var(--gold);
  border-left: 0;
  border-bottom: 0;
  border-radius: 19px;
  transform: rotate(8deg);
}
.home-brand-note p {
  margin: 0 0 9px;
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.05;
  font-weight: 500;
}
.home-brand-note .accent {
  margin-bottom: 0;
  color: var(--pink);
  font-family: Allura, cursive;
  font-size: clamp(31px, 2.4vw, 44px);
  font-weight: 400;
}
.home-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(42px, 5vw, 82px);
  border-left: 1px solid var(--line);
}
.home-copy h1 {
  max-width: 620px;
  font-size: clamp(62px, 6.2vw, 102px);
  line-height: .93;
}
.home-copy h1 .script {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.02em;
  line-height: .72;
  letter-spacing: 0;
  transform: rotate(-3deg);
}
.home-heart {
  display: inline-block;
  margin-left: 12px;
  color: var(--pink);
  font-family: Arial, sans-serif;
  font-size: .58em;
  transform: rotate(-8deg) translateY(-8px);
}
.home-copy-text {
  max-width: 580px;
  margin: 34px 0 28px;
  font-size: clamp(14px, 1.18vw, 18px);
  line-height: 1.7;
}
.home-copy-text p { margin: 0 0 17px; }
.home-arrow {
  display: inline-block;
  margin-left: 24px;
  color: var(--pink);
  font-family: Allura, cursive;
  font-size: 54px;
  transform: rotate(-12deg) translateY(11px);
}

/* Services */
.services-stage {
  display: grid;
  grid-template-columns: 27% 26% 47%;
  height: var(--page-height);
}
.services-summary {
  position: relative;
  padding: 54px 38px 40px;
  overflow: hidden;
  background: #111214;
  color: #fff;
}
.services-summary h1 {
  margin: 0 0 26px;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(45px, 4vw, 68px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: -.04em;
}
.services-summary h1 span { border-bottom: 3px solid var(--pink); }
.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 23px;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.45;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-weight: 700;
}
.services-torn-note {
  position: absolute;
  left: 24px;
  right: 30px;
  bottom: 26px;
  padding: 24px 23px 21px;
  background: #fff8f3;
  color: #111;
  clip-path: polygon(0 7%, 5% 3%, 11% 8%, 18% 2%, 24% 7%, 31% 2%, 39% 8%, 46% 3%, 54% 7%, 61% 1%, 69% 6%, 78% 2%, 86% 8%, 94% 3%, 100% 7%, 100% 100%, 0 100%);
  transform: rotate(-4deg);
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.2;
}
.services-photo {
  position: relative;
  overflow: hidden;
  background: #e8dbd2;
}
.services-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #eee3dc;
}
.services-progress-card {
  position: absolute;
  left: 10%;
  right: 9%;
  bottom: 7%;
  padding: 24px 14px;
  background: rgba(255,249,244,.94);
  box-shadow: 0 12px 26px rgba(0,0,0,.13);
  text-align: center;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(19px, 1.8vw, 30px);
  line-height: 1.28;
  transform: rotate(2deg);
}
.services-details {
  padding: 48px 50px 38px;
}
.services-details h2 {
  margin: 0 0 30px;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(48px, 4.2vw, 74px);
  line-height: .92;
  font-weight: 500;
  letter-spacing: -.045em;
}
.services-details h2 span { border-bottom: 3px solid var(--pink); }
.service-list {
  display: grid;
  gap: 19px;
}
.service-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}
.service-item h3 {
  margin: 0 0 4px;
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-item p {
  margin: 0;
  font-size: clamp(11px, .9vw, 14px);
  line-height: 1.45;
}

/* Packages */
.packages-stage {
  display: grid;
  grid-template-columns: 36% 64%;
  height: var(--page-height);
}
.packages-help {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 38px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.04), rgba(255,255,255,.04)),
    var(--pink-soft);
}
.packages-help::before,
.packages-help::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.packages-help::before { left: -70px; top: -80px; }
.packages-help::after { right: -85px; bottom: -80px; }
.help-note {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 42px 38px 36px;
  background: var(--paper);
  box-shadow: 0 18px 36px rgba(75, 42, 38, .16);
  transform: rotate(-1.4deg);
}
.help-note::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 39%;
  width: 110px;
  height: 40px;
  background: #1a1b1e;
  transform: rotate(5deg);
  opacity: .93;
}
.help-note h1 {
  margin: 0 0 28px;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(31px, 2.6vw, 44px);
  line-height: 1.04;
  font-weight: 500;
}
.help-note h1 span { border-bottom: 3px solid var(--pink); }
.help-note .check-list { gap: 22px; }
.help-note .check-list li {
  padding-left: 34px;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.42;
}
.help-note .check-list li::before { font-size: 23px; }
.help-note-heart {
  margin: 20px 0 0;
  color: var(--pink);
  text-align: right;
  font-size: 42px;
  line-height: 1;
}
.packages-content {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(230px, .78fr);
  gap: 28px;
  padding: 46px 42px 38px 48px;
}
.packages-list h2 {
  margin: 0 0 26px;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(50px, 4.4vw, 76px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: -.045em;
}
.packages-list h2 span { border-bottom: 3px solid var(--pink); }
.package-items { display: grid; gap: 14px; }
.package-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.package-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
}
.package-item h3 {
  margin: 0 0 3px;
  font-size: clamp(11px, .95vw, 14px);
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.package-item p {
  margin: 0;
  font-size: clamp(10px, .82vw, 12.5px);
  line-height: 1.42;
}
.packages-mantra {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 24px;
  background:
    linear-gradient(rgba(255,255,255,.13), rgba(255,255,255,.13)),
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(226,126,138,.15) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(226,126,138,.15) 30px),
    #f7d7d6;
  clip-path: polygon(3% 0, 100% 2%, 97% 100%, 0 96%);
  box-shadow: 0 16px 32px rgba(75,42,38,.12);
}
.packages-mantra::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  width: 58px;
  height: 10px;
  border: 4px solid var(--gold);
  border-left: 0;
  border-bottom: 0;
  border-radius: 16px;
  transform: rotate(80deg);
}
.packages-mantra p {
  margin: 0;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(27px, 2.4vw, 40px);
  line-height: 1.36;
  text-align: center;
}
.packages-mantra span { color: var(--pink); font-family: Allura, cursive; font-size: 1.25em; }

/* Testimonials */
.testimonials-stage {
  display: grid;
  grid-template-columns: 78% 22%;
  height: var(--page-height);
  background: var(--pink-soft);
}
.testimonial-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 62px 42px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.25), transparent 28%),
    var(--pink-soft);
}
.testimonial-main h1 {
  margin: 0 0 30px;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(56px, 5vw, 84px);
  line-height: .93;
  font-weight: 500;
  letter-spacing: -.05em;
}
.testimonial-main h1 span { border-bottom: 3px solid var(--pink); }
.testimonial-cards { display: grid; gap: 19px; }
.testimonial-card {
  position: relative;
  padding: 28px 34px 27px 56px;
  background: rgba(255,249,244,.94);
  border: 1px solid rgba(17,18,20,.08);
  box-shadow: 0 12px 26px rgba(71,43,39,.13);
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  left: 18px;
  top: 12px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;
}
.testimonial-card p {
  margin: 0;
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.58;
}
.testimonial-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}
.testimonial-links {
  display: grid;
  gap: 8px;
}
.testimonial-links a {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.testimonial-aside {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--paper);
  border-left: 1px solid var(--line);
}
.testimonial-aside p {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 2;
  text-transform: uppercase;
}
.testimonial-aside::after {
  content: '♡';
  position: absolute;
  right: 20px;
  bottom: 32px;
  color: var(--pink);
  font-size: 42px;
  transform: rotate(-10deg);
}

/* About — keeps approved content, standardized to the same hero height */
.about-stage {
  display: grid;
  grid-template-columns: 33.5% 32% 34.5%;
  height: var(--page-height);
  overflow: hidden;
}
.about-stage .image-panel { overflow: hidden; }
.about-stage img { width: 100%; height: 100%; object-fit: contain; object-position: top center; background: var(--paper); }
.about-stage .about-copy-img { object-fit: contain; object-position: top center; }

/* Footer */
.bb-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: 30px;
  padding: 22px 34px;
  background: #f2c6ca;
  border-top: 1px solid var(--line);
}
.bb-footer-title {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
}
.bb-footer-title h2 {
  margin: 0;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(34px, 4vw, 66px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: -.045em;
}
.bb-footer-heart { color: var(--pink); font-size: 48px; line-height: 1; }
.bb-footer-contact {
  justify-self: end;
  display: grid;
  gap: 11px;
}
.bb-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 600;
}
.footer-icon { display: inline-grid; place-items: center; width: 28px; font-size: 22px; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 36% 41% 23%;
  height: var(--page-height);
  background: var(--cream);
}
.contact-photo { overflow: hidden; background: var(--pink-soft); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.contact-main {
  padding: 54px clamp(28px, 4vw, 70px) 44px;
  overflow: auto;
}
.contact-main h1 {
  margin: 0 0 14px;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(54px, 5.8vw, 88px);
  line-height: .96;
  font-weight: 500;
  letter-spacing: -.05em;
}
.contact-main .script {
  margin: 0 0 28px;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: .95;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  padding: clamp(23px, 2.7vw, 36px);
  background: #fffaf6;
  border: 1px solid rgba(17,18,20,.12);
  box-shadow: 0 14px 26px rgba(48,34,30,.11);
  transform: rotate(-.25deg);
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8f7f77;
  border-radius: 0;
  padding: 10px 2px;
  background: transparent;
  color: #111;
  font: 500 14px/1.45 Montserrat, sans-serif;
  outline: none;
}
.form-field textarea { min-height: 118px; resize: vertical; border: 1px solid #b7a79f; padding: 12px; }
.form-field input:focus { border-bottom-color: var(--pink); border-bottom-width: 2px; }
.form-field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink); }
.submit-button { cursor: pointer; }
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  background: #f6ced1;
  font-size: 13px;
  line-height: 1.45;
}
.form-status.error { background: #f7d8d1; }
.honey { position: absolute !important; left: -10000px !important; }
.contact-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 30px;
  background: var(--pink-soft);
  border-left: 1px solid var(--line);
}
.paper-stack { position: relative; width: 100%; max-width: 300px; }
.paper-stack::before,
.paper-stack::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #f9ebe6;
  border: 1px solid rgba(17,18,20,.07);
  box-shadow: 0 8px 18px rgba(58,38,34,.08);
}
.paper-stack::before { transform: rotate(-4deg) translate(-11px, 10px); }
.paper-stack::after { transform: rotate(3deg) translate(10px, 4px); }
.paper-note {
  position: relative;
  z-index: 2;
  padding: 38px 28px 34px;
  background: var(--paper);
  border: 1px solid rgba(17,18,20,.1);
  box-shadow: 0 15px 30px rgba(67,43,37,.15);
  transform: rotate(1deg);
}
.paperclip {
  position: absolute;
  z-index: 5;
  top: -34px;
  right: 30px;
  width: 34px;
  height: 82px;
  border: 5px solid var(--gold);
  border-left: 0;
  border-bottom: 0;
  border-radius: 22px;
  transform: rotate(18deg);
  filter: drop-shadow(0 3px 2px rgba(0,0,0,.18));
}
.paperclip::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 8px;
  width: 13px;
  height: 49px;
  border: 3px solid var(--gold);
  border-left: 0;
  border-bottom: 0;
  border-radius: 14px;
}
.paper-note h2 {
  margin: 0 0 20px;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.04em;
}
.paper-note p { margin: 0 0 18px; font-size: 13px; line-height: 1.65; }
.paper-note a { overflow-wrap: anywhere; font-weight: 600; text-decoration: none; }
.paper-note a:hover { text-decoration: underline; }

@media (max-width: 1120px) {
  :root { --page-height: 740px; --nav-width: 112px; }
  .home-copy { padding-inline: 42px; }
  .services-summary { padding-inline: 28px; }
  .services-details { padding-inline: 35px; }
  .packages-content { padding-inline: 34px; }
  .testimonial-main { padding-inline: 42px; }
  .bb-footer { grid-template-columns: 1fr auto; }
  .bb-footer-contact { grid-column: 1 / -1; justify-self: start; grid-template-columns: repeat(2, auto); }
}

@media (max-width: 900px) {
  :root { --page-height: auto; }
  .site-frame { width: 100%; padding: 0; }
  .site-shell { display: block; border: 0; box-shadow: none; }
  .desktop-nav { display: none; }
  .mobile-header {
    display: block;
    background: #f8efe9;
    border-bottom: 2px solid #111;
  }
  .mobile-brand {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px 4px;
  }
  .page-stage { min-height: 0; height: auto; }
  .home-stage,
  .services-stage,
  .packages-stage,
  .testimonials-stage,
  .about-stage,
  .contact-layout { grid-template-columns: 1fr; height: auto; }
  .home-photo { min-height: 650px; }
  .home-copy { min-height: 650px; padding: 56px 34px; }
  .home-copy h1 { font-size: clamp(58px, 15vw, 90px); }
  .home-brand-note { width: 42%; }
  .services-summary { min-height: 690px; }
  .services-photo { min-height: 620px; }
  .services-details { padding: 54px 34px; }
  .packages-help { min-height: 700px; }
  .packages-content { grid-template-columns: 1fr; padding: 52px 30px; }
  .packages-mantra { min-height: 420px; }
  .testimonial-main { padding: 56px 30px 46px; }
  .testimonial-aside { min-height: 150px; }
  .testimonial-aside p { writing-mode: horizontal-tb; text-align: center; }
  .about-stage img { height: auto; object-fit: contain; }
  .contact-photo img { height: auto; object-fit: contain; }
  .contact-main { padding: 50px 24px; overflow: visible; }
  .contact-form { grid-template-columns: 1fr; transform: none; }
  .form-field, .form-field.full, .submit-button, .form-status { grid-column: 1; }
  .contact-side { padding: 70px 28px; border-left: 0; border-top: 1px solid var(--line); }
  .bb-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px 32px;
    text-align: center;
  }
  .bb-footer-title { justify-content: center; flex-wrap: wrap; }
  .bb-footer .primary-button { justify-self: center; }
  .bb-footer-contact { grid-column: auto; justify-self: center; grid-template-columns: 1fr; }
  .bb-footer-contact a { justify-content: center; }
}

@media (max-width: 520px) {
  .logo strong { font-size: 24px; }
  .logo em { font-size: 34px; }
  .mobile-nav a { font-size: 8px; padding: 9px 2px; }
  .home-photo { min-height: 520px; }
  .home-brand-note { width: 53%; padding: 18px 16px 13px; }
  .home-brand-note p { font-size: 15px; }
  .home-brand-note .accent { font-size: 29px; }
  .home-copy { min-height: 580px; }
  .services-summary { min-height: 650px; padding: 44px 24px 34px; }
  .services-photo { min-height: 520px; }
  .services-details { padding-inline: 24px; }
  .help-note { padding: 38px 24px 32px; }
  .testimonial-main h1 { font-size: 56px; }
  .testimonial-card { padding: 24px 22px 23px 48px; }
  .testimonial-actions { align-items: flex-start; flex-direction: column; }
  .bb-footer-title h2 { font-size: 42px; }
}


/* ===== Restored edit pass ===== */
.home-cta-row{display:flex;align-items:flex-end;gap:18px;}
.home-arrow-svg{width:78px;height:auto;color:var(--pink);transform:translateY(6px) rotate(-4deg);}

.bb-footer-title h2{font-size:clamp(34px,3.7vw,62px);}
.bb-footer-contact{grid-template-columns:1fr;gap:10px;}
.bb-footer-contact a span{display:inline-block;}
.icon-svg{width:22px;height:22px;flex:0 0 22px;display:block;}
.footer-work-button{min-width:260px;}

/* Make image-based pages fit more reliably */
.about-stage img{object-position:center top;}
.services-photo img{object-position:center top;}
.home-photo > img{object-position:center top;}

/* Footer title changed site-wide */

/* About copy: no extra top intro remains in image asset */

/* Packages */
.packages-content{padding:42px 36px 34px 42px;gap:24px;}
.packages-note-strip{margin-top:22px;padding:12px 16px;background:#f4d2d5;color:#3d3131;font-family:'Bodoni Moda',Georgia,serif;font-size:clamp(16px,1.2vw,22px);line-height:1.15;display:inline-block;box-shadow:0 10px 18px rgba(72,43,39,.08);} 
.packages-mantra::before{width:52px;height:9px;top:18px;left:calc(50% - 26px);border-width:3px;transform:rotate(80deg);} 

/* Testimonials redesign */
.rebuilt-testimonials{display:grid;grid-template-columns:40% 60%;height:var(--page-height);background:var(--cream);} 
.testimonials-left{padding:68px 58px 50px;display:flex;flex-direction:column;justify-content:center;border-right:1px solid var(--line);} 
.testimonial-kicker{margin:0 0 16px;color:var(--pink);font-size:14px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;}
.testimonials-left h1{margin:0 0 20px;font-family:'Bodoni Moda',Georgia,serif;font-size:clamp(56px,4.8vw,82px);line-height:.92;font-weight:500;letter-spacing:-.05em;}
.testimonials-left h1 span{border-bottom:3px solid var(--pink);} 
.testimonial-intro{max-width:510px;margin:0 0 32px;font-size:clamp(14px,1.12vw,18px);line-height:1.65;}
.testimonials-right{position:relative;display:grid;grid-template-columns:1fr;align-content:center;gap:28px;padding:52px 56px;background:var(--pink-soft);} 
.note-testimonial{position:relative;max-width:610px;padding:30px 34px 24px;background:rgba(255,249,244,.96);border:1px solid rgba(17,18,20,.08);box-shadow:0 14px 28px rgba(70,42,38,.12);} 
.note-testimonial::before{content:'';position:absolute;inset:-12px 12px 12px -12px;background:#fcf3ef;border:1px solid rgba(17,18,20,.05);z-index:-1;} 
.note-testimonial p{margin:0 0 22px;font-size:clamp(15px,1.08vw,18px);line-height:1.58;} 
.note-signoff{display:block;color:#7c716d;font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;} 
.tilt-one{justify-self:start;transform:rotate(-1deg);} 
.tilt-two{justify-self:end;transform:rotate(1.4deg);} 
.tilt-three{justify-self:center;transform:rotate(.6deg);} 
.clip-small{top:-20px;right:18px;width:26px;height:64px;border-width:4px;transform:rotate(18deg);filter:drop-shadow(0 2px 1px rgba(0,0,0,.15));}
.clip-small::after{top:10px;right:7px;width:10px;height:38px;border-width:3px;}

/* Realistic / subtler paperclips */
.paperclip{top:-24px;right:24px;width:30px;height:74px;border:4px solid #b88342;border-left:0;border-bottom:0;border-radius:20px;transform:rotate(16deg);filter:drop-shadow(0 2px 1px rgba(0,0,0,.12));}
.paperclip::after{top:12px;right:7px;width:11px;height:43px;border:3px solid #d4a665;border-left:0;border-bottom:0;border-radius:13px;}
.home-brand-note::before,.packages-mantra::before{border-color:#be8a49;filter:drop-shadow(0 1px 1px rgba(0,0,0,.10));}

/* Contact page */
.paper-note{padding-top:48px;}
.contact-side{padding:50px 28px;}
.paper-note p{font-size:13.5px;}

@media (max-width:1120px){
  .rebuilt-testimonials{grid-template-columns:42% 58%;}
  .testimonials-left{padding:52px 34px 42px;}
  .testimonials-right{padding:42px 30px;}
}
@media (max-width:900px){
  .rebuilt-testimonials{grid-template-columns:1fr;height:auto;}
  .testimonials-left{border-right:0;border-bottom:1px solid var(--line);padding:52px 28px 40px;}
  .testimonials-right{padding:40px 24px 54px;}
  .note-testimonial,.tilt-one,.tilt-two,.tilt-three{justify-self:stretch;transform:none;max-width:none;}
  .home-cta-row{flex-wrap:wrap;align-items:center;}
}


/* final proceed overrides */
.home-photo > img{object-position:left top;}
.services-photo img{object-fit:cover;object-position:center top;}
.about-stage img,.about-stage .about-copy-img{object-fit:contain;object-position:top center;background:var(--paper);}


/* Approved final corrections only */
.home-stage {
  height: auto;
  min-height: 0;
  align-items: stretch;
}
.home-photo > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left top;
}

.about-stage {
  height: auto;
  min-height: 0;
  align-items: start;
}
.about-stage .image-panel {
  overflow: visible;
}
.about-stage img,
.about-stage .about-copy-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: transparent;
}

.services-stage {
  height: auto;
  min-height: 0;
  align-items: stretch;
}
.services-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #eee3dc;
}

.footer-work-button {
  background: #fff9f4;
  color: #111214;
  border: 2px solid var(--pink);
  box-shadow: 0 9px 18px rgba(82, 48, 43, .10);
  transform: rotate(-.6deg);
}
.footer-work-button:hover {
  background: #fbe8ea;
  color: #111214;
}

/* ===== Final approved edit pass ===== */
/* Restore proper panel sizing */
.home-stage,
.about-stage,
.services-stage {
  height: var(--page-height);
  min-height: var(--page-height);
  align-items: stretch;
}

.home-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.about-stage .image-panel {
  overflow: hidden;
}
.about-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: var(--paper);
}
.about-stage .about-copy-img {
  object-fit: contain;
  object-position: top center;
  background: var(--paper);
}

.services-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #eee3dc;
}

/* Home note: use tape instead of the cut-off paperclip */
.home-brand-note::before {
  left: 18px;
  top: -12px;
  width: 66px;
  height: 24px;
  background: rgba(255,250,245,.86);
  border: 1px solid rgba(240, 232, 224, .9);
  border-radius: 2px;
  transform: rotate(-7deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

/* Testimonials: change paperclips to tape */
.clip-small {
  top: -12px;
  right: 26px;
  width: 74px;
  height: 22px;
  border: 0;
  border-radius: 2px;
  background: rgba(255,250,245,.86);
  transform: rotate(-8deg);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.06));
}
.clip-small::after {
  content: none;
}

/* Footer: requested new line + a different button style */
.footer-work-button {
  min-width: 272px;
  background: #fff9f4;
  color: #111214;
  border: 2px solid #111214;
  box-shadow: 7px 7px 0 rgba(233, 105, 128, .20);
  transform: none;
}
.footer-work-button:hover {
  background: #fff2ef;
  color: #111214;
}

@media (max-width: 900px) {
  .home-stage,
  .about-stage,
  .services-stage {
    height: auto;
    min-height: 0;
  }
  .about-stage img,
  .home-photo > img,
  .services-photo img {
    height: auto;
  }
}

/* ===== Requested targeted correction pass ===== */
/* Home: keep layout, but use improved image asset */
.home-photo > img {
  image-rendering: auto;
}

/* About: prevent cut-off and allow the full approved artwork to fit cleanly */
.about-stage {
  height: 960px;
  min-height: 960px;
  align-items: stretch;
}
.about-stage img,
.about-stage .about-copy-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: var(--paper);
}

/* Services: keep same layout, use a different portrait image */
.services-photo img {
  object-fit: cover;
  object-position: center top;
}

/* Packages: replace the awkward paperclip with a clean tape detail */
.packages-mantra::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  width: 72px;
  height: 22px;
  background: rgba(255,248,242,.90);
  border: 1px solid rgba(235,226,217,.98);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  transform: translateX(-50%) rotate(-6deg);
  filter: none;
}

/* Testimonials: keep the note styling but improve the tape */
.testimonials-right .clip-small {
  top: -10px;
  right: 22px;
  width: 62px;
  height: 20px;
  border: 0;
  border-radius: 2px;
  background: rgba(255,248,242,.90);
  box-shadow: 0 2px 5px rgba(0,0,0,.05);
  transform: rotate(-7deg);
  filter: none;
}
.testimonials-right .clip-small::after {
  content: none;
}

/* Contact: replace the broken paperclip with a clean paper tape accent */
.contact-side .paperclip {
  top: -12px;
  right: 22px;
  width: 66px;
  height: 22px;
  border: 0;
  border-radius: 2px;
  background: rgba(255,248,242,.92);
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transform: rotate(-7deg);
  filter: none;
}
.contact-side .paperclip::after {
  content: none;
}

@media (max-width: 900px) {
  .about-stage {
    height: auto;
    min-height: 0;
  }
  .about-stage img,
  .about-stage .about-copy-img {
    height: auto;
  }
}


/* ===== Final targeted user-approved fixes ===== */
/* Home: keep the same image, improve clarity behavior, and keep framing cleaner */
.home-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.home-brand-note {
  bottom: 9%;
}

/* About: remove the white divider space above the footer */
.about-stage {
  height: auto;
  min-height: 0;
  align-items: start;
}
.about-stage img,
.about-stage .about-copy-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: var(--paper);
  display: block;
}
.about-stage + .bb-footer {
  margin-top: 0;
  border-top: 0;
}

/* Services: replace duplicate portrait with a non-person workspace image */
.services-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #f4e6e0;
}

/* Packages: fix the awkward top clip detail */
.packages-mantra::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  width: 72px;
  height: 22px;
  background: rgba(255,245,239,.94);
  border: 1px solid rgba(235,223,214,.95);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  transform: translateX(-50%) rotate(-6deg);
  filter: none;
}

/* Testimonials: change tape colour + make the notes feel like ripped paper */
.testimonials-right .clip-small {
  top: -11px;
  right: 24px;
  width: 66px;
  height: 20px;
  border: 0;
  border-radius: 2px;
  background: rgba(255,244,236,.96);
  box-shadow: 0 2px 5px rgba(0,0,0,.05);
  transform: rotate(-7deg);
  filter: none;
}
.testimonials-right .clip-small::after {
  content: none;
}
.note-testimonial,
.note-testimonial::before {
  clip-path: polygon(0 0,100% 0,100% 90%,95% 95%,88% 91%,80% 97%,72% 92%,64% 98%,56% 93%,48% 98%,40% 92%,32% 97%,24% 92%,16% 97%,8% 92%,0 96%);
}

/* Contact: paper tape detail + requested copy changes only */
.contact-side .paperclip {
  top: -12px;
  right: 22px;
  width: 68px;
  height: 22px;
  border: 0;
  border-radius: 2px;
  background: rgba(255,244,236,.96);
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transform: rotate(-6deg);
  filter: none;
}
.contact-side .paperclip::after {
  content: none;
}

@media (max-width: 900px) {
  .about-stage {
    height: auto;
    min-height: 0;
  }
  .services-photo img,
  .home-photo > img {
    height: auto;
  }
}

/* ===== Polish pass: sizing, image clarity, and resolution ===== */
.home-photo-logo {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  text-decoration: none;
  pointer-events: auto;
}
.home-photo-logo strong {
  font-size: clamp(42px, 3.45vw, 62px);
  line-height: .82;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.home-photo-logo em {
  margin-left: 9px;
  font-size: clamp(48px, 3.95vw, 66px);
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
}
.home-photo-logo::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -14px;
  top: -10px;
  width: 235px;
  height: 120px;
  background: linear-gradient(180deg, rgba(247,238,232,.94), rgba(247,238,232,.20));
  border-radius: 20px;
  filter: blur(7px);
}
.home-photo > img {
  object-fit: cover;
  object-position: center top;
}
.home-brand-note {
  bottom: 5.2%;
}

/* keep footer title consistent across all pages */
.bb-footer-title h2 { white-space: nowrap; }

/* testimonial tape should be visible and black */
.clip-small {
  top: -14px;
  right: 18px;
  width: 74px;
  height: 18px;
  border: 0;
  border-radius: 3px;
  background: #131313;
  transform: rotate(-6deg);
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.12));
}
.clip-small::after { content: none; }

/* ensure image panels render crisp and don't stretch awkwardly */
.home-photo img,
.services-photo img,
.about-stage img,
.contact-photo img {
  image-rendering: auto;
}
.services-photo img {
  object-position: center 14%;
}
.contact-photo img {
  object-position: center top;
}

@media (max-width: 900px) {
  .home-photo-logo { top: 18px; left: 18px; }
  .home-photo-logo strong { font-size: 46px; }
  .home-photo-logo em { font-size: 52px; }
  .home-photo-logo::before { width: 214px; height: 112px; }
}

/* ===== Upload-ready final fit + image-quality pass ===== */

/* Global image quality */
img {
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Desktop / large-screen fit */
.home-stage,
.services-stage,
.contact-layout {
  height: auto;
  min-height: clamp(740px, 78vh, 860px);
  align-items: stretch;
}

.home-photo,
.services-photo,
.contact-photo {
  min-height: clamp(740px, 78vh, 860px);
}

.home-photo > img,
.services-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-photo > img {
  object-position: center top;
}

/* Cover the fuzzy baked-in logo area with a cleaner branded overlay */
.home-photo-logo {
  top: 18px;
  left: 18px;
}
.home-photo-logo::before {
  left: -18px;
  top: -12px;
  width: 290px;
  height: 148px;
  background: rgba(247, 238, 232, 0.96);
  border-radius: 18px;
  filter: blur(2px);
  box-shadow: 0 10px 26px rgba(66, 38, 34, 0.10);
}
.home-photo-logo strong {
  font-size: clamp(46px, 3.65vw, 66px);
  line-height: .82;
}
.home-photo-logo em {
  margin-left: 10px;
  font-size: clamp(54px, 4.15vw, 72px);
}

.home-brand-note {
  width: min(34%, 255px);
  bottom: 5.5%;
}

/* About page: show the full approved art without cutting it off */
.about-stage {
  height: auto;
  min-height: 0;
  align-items: start;
}
.about-stage .image-panel {
  overflow: hidden;
  background: var(--paper);
}
.about-stage img,
.about-stage .about-copy-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: var(--paper);
}

/* Services workspace: keep the entire section balanced and crisp */
.services-photo {
  background: #efe4dd;
}
.services-photo img {
  object-position: center 12%;
}

/* Contact page image framing */
.contact-photo img {
  object-position: center top;
}

/* Footer fit */
.bb-footer {
  gap: 26px;
}
.bb-footer-title h2 {
  white-space: nowrap;
}
.footer-work-button {
  min-width: 248px;
}

/* Mobile fit */
@media (max-width: 900px) {
  .home-stage,
  .services-stage,
  .contact-layout {
    min-height: 0;
    height: auto;
  }

  .home-photo,
  .services-photo,
  .contact-photo {
    min-height: 0;
  }

  .home-photo > img,
  .services-photo img,
  .contact-photo img,
  .about-stage img,
  .about-stage .about-copy-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top center;
  }

  .home-photo {
    min-height: 560px;
  }
  .services-photo {
    min-height: 520px;
  }
  .contact-photo {
    min-height: 560px;
  }

  .home-photo-logo {
    top: 16px;
    left: 16px;
  }
  .home-photo-logo::before {
    width: 250px;
    height: 130px;
  }
  .home-photo-logo strong {
    font-size: 48px;
  }
  .home-photo-logo em {
    font-size: 56px;
  }

  .home-brand-note {
    width: min(52%, 240px);
    bottom: 4%;
  }

  .bb-footer-title h2 {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .home-photo {
    min-height: 470px;
  }
  .services-photo {
    min-height: 440px;
  }
  .contact-photo {
    min-height: 470px;
  }

  .home-photo-logo::before {
    width: 222px;
    height: 112px;
  }
  .home-photo-logo strong {
    font-size: 41px;
  }
  .home-photo-logo em {
    font-size: 49px;
  }

  .home-brand-note {
    width: min(56%, 215px);
    padding: 16px 14px 12px;
  }
}

/* ===== Exact supplied photo fit pass ===== */
/* Use the supplied photos without overlays or cropping. */
.home-photo::after,
.home-photo-logo,
.home-brand-note {
  display: none !important;
}

.home-photo,
.services-photo,
.contact-photo,
.about-stage .image-panel:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #f7eee8;
}

.home-photo > img,
.services-photo img,
.contact-photo img,
.about-stage .image-panel:first-child img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center top !important;
}

@media (max-width: 900px) {
  .home-photo,
  .services-photo,
  .contact-photo,
  .about-stage .image-panel:first-child {
    min-height: 0;
  }

  .home-photo > img,
  .services-photo img,
  .contact-photo img,
  .about-stage .image-panel:first-child img {
    width: 100%;
    height: auto;
    object-fit: contain !important;
    object-position: center top !important;
  }
}
