:root {
  --blue: #a8b7d8;
  --pink: #f8d6e0;
  --beige: #ede5d8;
  --ivory: #faf8f4;
  --lavender: #c8bdd9;
  --white: #ffffff;
  --ink: #4d4a54;
  --muted: #74717d;
  --shadow: 0 24px 70px rgba(116, 113, 125, 0.18);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", "Brush Script MT", cursive;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(248, 214, 224, 0.55), transparent 28rem),
    radial-gradient(circle at 95% 35%, rgba(168, 183, 216, 0.32), transparent 30rem),
    linear-gradient(180deg, var(--ivory), #fff);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  z-index: -1;
  background-image:
    linear-gradient(105deg, transparent 0 46%, rgba(168, 183, 216, 0.13) 47% 48%, transparent 49%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px);
  background-size: 170px 170px, 24px 24px;
}

.pop-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 28%, rgba(248, 214, 224, 0.74), transparent 20rem),
    radial-gradient(circle at 70% 35%, rgba(168, 183, 216, 0.62), transparent 22rem),
    rgba(250, 248, 244, 0.96);
  animation: introFade 0.75s ease 2.05s forwards;
  pointer-events: none;
}

.pop-intro.hide {
  display: none;
}

.pop-intro p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #6a6477;
  font-family: var(--script);
  font-size: clamp(2.4rem, 9vw, 6.5rem);
  line-height: 0.95;
  text-align: center;
  animation: introText 1.8s ease forwards;
}

.pop-balloon {
  position: absolute;
  width: clamp(4.2rem, 12vw, 8.4rem);
  aspect-ratio: 0.82;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50% 50% 47% 47%;
  box-shadow: inset -18px -22px 30px rgba(116, 113, 125, 0.08), 0 22px 46px rgba(116, 113, 125, 0.16);
  transform: scale(0);
  animation: balloonPop 1.15s cubic-bezier(0.2, 0.9, 0.25, 1.35) forwards, balloonBurst 0.34s ease 1.44s forwards;
}

.pop-balloon::before {
  content: "";
  position: absolute;
  top: 17%;
  left: 24%;
  width: 24%;
  height: 17%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
}

.pop-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.58rem;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 0.42rem solid transparent;
  border-right: 0.42rem solid transparent;
  border-top: 0.72rem solid currentColor;
}

.pop-balloon span {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.1rem);
  width: 1px;
  height: clamp(2.8rem, 8vw, 5.4rem);
  transform: translateX(-50%);
  background: linear-gradient(rgba(116, 113, 125, 0.28), rgba(116, 113, 125, 0));
}

.pop-one {
  left: 13%;
  top: 20%;
  color: #f8d6e0;
  background: #f8d6e0;
}

.pop-two {
  left: 29%;
  bottom: 18%;
  color: #a8b7d8;
  background: #a8b7d8;
  animation-delay: 0.12s, 1.55s;
}

.pop-three {
  right: 25%;
  top: 16%;
  color: #c8bdd9;
  background: #c8bdd9;
  animation-delay: 0.22s, 1.65s;
}

.pop-four {
  right: 12%;
  bottom: 21%;
  color: #ede5d8;
  background: #ede5d8;
  animation-delay: 0.32s, 1.75s;
}

.pop-five {
  left: 48%;
  top: 54%;
  color: #ffffff;
  background: #ffffff;
  animation-delay: 0.42s, 1.85s;
}

.pop-burst {
  position: absolute;
  width: 9rem;
  height: 9rem;
  opacity: 0;
  background:
    radial-gradient(circle, #fff 0 6%, transparent 7%),
    conic-gradient(from 0deg, transparent 0 12%, rgba(212, 175, 122, 0.85) 13% 15%, transparent 16% 28%, rgba(168, 183, 216, 0.9) 29% 31%, transparent 32% 46%, rgba(248, 214, 224, 0.9) 47% 49%, transparent 50% 64%, rgba(200, 189, 217, 0.9) 65% 67%, transparent 68%);
  animation: sparkleBurst 0.48s ease 1.55s forwards;
}

.burst-one {
  left: 17%;
  top: 22%;
}

.burst-two {
  right: 19%;
  top: 20%;
  animation-delay: 1.7s;
}

.burst-three {
  left: 43%;
  bottom: 20%;
  animation-delay: 1.86s;
}

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

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

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  clip: auto;
  border-radius: 999px;
  background: var(--white);
  z-index: 100;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.08), rgba(250, 248, 244, 0.34) 48%, rgba(248, 214, 224, 0.1)),
    linear-gradient(180deg, rgba(250, 248, 244, 0.24), rgba(250, 248, 244, 0));
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(2px);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  padding-block: 0.55rem;
  background:
    linear-gradient(90deg, rgba(248, 214, 224, 0.96), rgba(250, 248, 244, 0.9) 52%, rgba(248, 214, 224, 0.94)),
    radial-gradient(circle at 92% 20%, rgba(200, 189, 217, 0.28), transparent 16rem);
  background-size: auto;
  background-position: center;
  border-bottom-color: rgba(232, 173, 194, 0.42);
  box-shadow: 0 16px 44px rgba(169, 109, 132, 0.17);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, #f3b9ca, #d7b1d9 58%, #a8b7d8);
  box-shadow: 0 13px 30px rgba(179, 102, 132, 0.24);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand-logo {
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: #fff7f3;
  box-shadow: 0 13px 30px rgba(179, 102, 132, 0.2);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  line-height: 1;
  color: #5c4f62;
}

.brand small {
  display: block;
  color: #8e6378;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.3vw, 1.2rem);
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 12px 32px rgba(169, 109, 132, 0.1);
  backdrop-filter: blur(12px);
}

.nav-menu a {
  color: #625262;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-toggle {
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(232, 173, 194, 0.58);
  border-radius: 999px;
  color: #7b5b6d;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--white);
  border-color: rgba(168, 183, 216, 0.72);
  background: var(--blue);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a:active,
.nav-menu a.active {
  color: #6f87bd;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(169, 109, 132, 0.18);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(105deg, rgba(168, 183, 216, 0.58), rgba(248, 214, 224, 0.45) 47%, rgba(250, 248, 244, 0.86)),
    url("assets/hydrangea-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(250, 248, 244, 0.12), rgba(250, 248, 244, 0.75)),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.72), transparent 29rem);
}

.hero-content {
  width: min(980px, 100%);
  margin-inline: auto;
  text-align: center;
  padding: clamp(1rem, 3vw, 2.3rem);
}

.script-kicker {
  margin: 0 0 0.35rem;
  color: #8b7baa;
  font-family: var(--script);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 940px;
  margin-inline: auto;
  color: #4b4a5a;
  font-size: clamp(3.05rem, 8vw, 6.55rem);
  text-wrap: balance;
}

h2 {
  color: #555266;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  text-wrap: balance;
}

h3 {
  color: #5c5870;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.hero-subtitle {
  max-width: 670px;
  margin: 1.35rem auto 0;
  color: #67626f;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.15rem;
}

.button {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #9eabd0, #c5b6d6);
  box-shadow: 0 18px 40px rgba(168, 183, 216, 0.42);
}

.button-secondary {
  color: #696173;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(116, 113, 125, 0.12);
}

.flower-corner,
.floating-flower,
.floral-icon,
.floral-divider::before,
.floral-divider::after {
  background:
    radial-gradient(circle at 50% 20%, var(--blue) 0 16%, transparent 17%),
    radial-gradient(circle at 28% 42%, var(--pink) 0 15%, transparent 16%),
    radial-gradient(circle at 70% 42%, var(--lavender) 0 15%, transparent 16%),
    radial-gradient(circle at 42% 68%, #fff 0 14%, transparent 15%),
    radial-gradient(circle at 60% 66%, var(--beige) 0 14%, transparent 15%);
}

.flower-corner {
  position: absolute;
  width: 19rem;
  height: 19rem;
  opacity: 0.45;
  filter: blur(0.2px);
  z-index: -1;
}

.corner-top {
  top: 4.8rem;
  left: -5.5rem;
  transform: rotate(-18deg);
}

.corner-bottom {
  right: -6rem;
  bottom: 0.5rem;
  transform: rotate(36deg);
}

.floating-flower {
  position: absolute;
  width: 6rem;
  height: 6rem;
  opacity: 0.42;
  animation: float 7s ease-in-out infinite;
}

.flower-one {
  left: 10%;
  bottom: 19%;
}

.flower-two {
  right: 11%;
  top: 25%;
  animation-delay: -3s;
}

.scroll-cue {
  position: absolute;
  bottom: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  color: #757080;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.5rem, 10vw, 8.5rem) clamp(1rem, 4vw, 3rem);
}

.section-inner,
.section-heading,
.service-grid,
.masonry-gallery,
.timeline,
.booking-panel,
.footer-grid,
.insta-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 2.4rem;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1.18fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.portrait-card {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: -1.2rem auto auto -1.15rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(248, 214, 224, 0.65);
  z-index: -1;
}

.portrait-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: 1.35rem;
  overflow: hidden;
  color: #807b8b;
  font-family: var(--script);
  font-size: 3rem;
  background:
    linear-gradient(165deg, rgba(168, 183, 216, 0.38), rgba(248, 214, 224, 0.34)),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95) 0 4.2rem, transparent 4.3rem),
    linear-gradient(180deg, transparent 38%, rgba(237, 229, 216, 0.86) 39%);
}

.about-copy {
  font-size: 1.02rem;
  line-height: 1.9;
}

.about-copy p:not(.script-kicker):not(.signature) {
  color: var(--muted);
}

.floral-divider {
  position: relative;
  width: 11rem;
  height: 2rem;
  margin: 1rem 0 1.6rem;
}

.floral-divider::before,
.floral-divider::after {
  content: "";
  position: absolute;
  top: 0.1rem;
  width: 2rem;
  height: 2rem;
}

.floral-divider::after {
  left: 3rem;
}

.floral-divider {
  border-bottom: 1px solid rgba(168, 183, 216, 0.7);
}

.signature {
  margin-top: 1.4rem;
  color: #8b7baa;
  font-family: var(--script);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1;
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(237, 229, 216, 0.44));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.service-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.63);
  box-shadow: 0 16px 48px rgba(116, 113, 125, 0.13);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(248, 214, 224, 0.42);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.floral-icon {
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.1rem;
  border-radius: 50%;
}

.floral-icon.lavender {
  filter: hue-rotate(24deg);
}

.floral-icon.blue {
  filter: hue-rotate(-18deg);
}

.service-card ul {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.95;
}

.service-card li::before {
  content: "✦";
  margin-right: 0.6rem;
  color: #9facce;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.filter-button {
  min-height: 2.7rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(168, 183, 216, 0.4);
  border-radius: 999px;
  color: #696173;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  color: var(--white);
  background: #9eabd0;
}

.masonry-gallery {
  columns: 3 260px;
  column-gap: 1rem;
}

.gallery-item {
  appearance: none;
  width: 100%;
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  border-radius: 1.3rem;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(116, 113, 125, 0.13);
  cursor: zoom-in;
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.masonry-gallery .gallery-item.reveal {
  opacity: 1;
  transform: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item.hidden {
  display: none;
}

.dream-builder {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(248, 214, 224, 0.45), transparent 22rem),
    radial-gradient(circle at 88% 18%, rgba(168, 183, 216, 0.38), transparent 24rem),
    linear-gradient(180deg, rgba(250, 248, 244, 0.92), rgba(237, 229, 216, 0.34));
}

.dream-builder::before {
  content: "";
  position: absolute;
  inset: 3rem auto auto -4rem;
  width: 14rem;
  height: 14rem;
  opacity: 0.22;
  background:
    radial-gradient(circle at 50% 20%, var(--blue) 0 16%, transparent 17%),
    radial-gradient(circle at 28% 42%, var(--pink) 0 15%, transparent 16%),
    radial-gradient(circle at 70% 42%, var(--lavender) 0 15%, transparent 16%),
    radial-gradient(circle at 42% 68%, #fff 0 14%, transparent 15%);
}

.floral-divider.center {
  margin-inline: auto;
}

.builder-shell {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(1.25rem, 4vw, 2.4rem);
  align-items: start;
}

.arch-preview-card,
.control-card,
.dream-summary,
.dream-form {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 52px rgba(116, 113, 125, 0.13);
}

.arch-preview-card {
  position: sticky;
  top: 6.6rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  overflow: hidden;
}

.preview-watercolor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(248, 214, 224, 0.5), transparent 14rem),
    radial-gradient(circle at 78% 12%, rgba(200, 189, 217, 0.4), transparent 13rem),
    linear-gradient(135deg, rgba(250, 248, 244, 0.96), rgba(237, 229, 216, 0.48));
  z-index: 0;
}

.balloon-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 430px;
  filter: drop-shadow(0 20px 28px rgba(116, 113, 125, 0.13));
  touch-action: none;
}

.balloon-preview circle {
  transition: fill 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2.4;
  filter: drop-shadow(0 8px 10px rgba(70, 64, 82, 0.16));
}

.balloon-preview .balloon-string,
.balloon-preview .balloon-knot,
.balloon-preview circle[fill^="url"] {
  pointer-events: none;
}

.balloon-preview [data-draggable] {
  cursor: pointer;
}

.balloon-preview .selected-balloon circle {
  stroke: #6f87bd;
  stroke-width: 5;
  filter: drop-shadow(0 0 10px rgba(168, 183, 216, 0.62));
}

.balloon-preview .selection-box {
  fill: rgba(168, 183, 216, 0.16);
  stroke: #9eabd0;
  stroke-width: 2;
  stroke-dasharray: 8 6;
  pointer-events: none;
}

.balloon-preview .preview-panel,
.balloon-preview .preview-panel-border,
.balloon-preview .preview-prop,
.balloon-preview .preview-floor {
  transition: fill 0.3s ease, stroke 0.3s ease, opacity 0.3s ease;
}

.arch-preview-card p {
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
}

.rotation-tools {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
  margin-top: 0.95rem;
  padding: 0.9rem;
  border: 1px solid rgba(168, 183, 216, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.rotation-tools > span {
  color: #75627b;
  font-family: var(--script);
  font-size: 1.45rem;
  line-height: 1;
}

.rotation-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.rotation-row button {
  min-width: 3.45rem;
  min-height: 2.15rem;
  border: 1px solid rgba(168, 183, 216, 0.48);
  border-radius: 999px;
  color: #6f87bd;
  background: rgba(250, 248, 244, 0.9);
  cursor: pointer;
  font-weight: 900;
}

.rotation-row button:hover,
.rotation-row button:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.rotation-row input {
  accent-color: var(--blue);
}

.rotation-tools small {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: italic;
}

.builder-controls {
  display: grid;
  gap: 1rem;
}

.builder-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  padding: 0.4rem 0.2rem 0.75rem;
}

.builder-steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 1.18rem;
  height: 1px;
  background: rgba(168, 183, 216, 0.34);
}

.builder-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.32rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.builder-steps i {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 183, 216, 0.58);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(250, 248, 244, 0.92);
  font-style: normal;
}

.builder-steps span.active i {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.builder-steps span.complete i {
  color: var(--white);
  border-color: #9fc9aa;
  background: #9fc9aa;
}

.control-card {
  padding: clamp(1rem, 2.4vw, 1.35rem);
}

.control-card h3,
.italic-label {
  margin-bottom: 0.9rem;
  font-size: 1.7rem;
}

.italic-label {
  font-style: italic;
}

.control-script {
  margin: 0 0 0.75rem;
  color: #8b7baa;
  font-family: var(--script);
  font-size: 2.25rem;
  line-height: 1;
}

.chosen-label {
  margin-top: 0.35rem;
  font-size: 2rem;
}

.quick-palette-label {
  margin: 1rem 0 0.7rem;
  color: #5d5969;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
}

.chosen-colors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  min-height: 3rem;
  align-items: center;
}

.chosen-color,
.chosen-placeholder {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.chosen-color {
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: var(--chosen);
  box-shadow: 0 10px 22px rgba(116, 113, 125, 0.15);
}

.chosen-color button {
  position: absolute;
  right: -0.42rem;
  top: -0.42rem;
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  color: var(--white);
  background: #9e8bb7;
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1;
}

.chosen-placeholder {
  border: 1px dashed rgba(168, 183, 216, 0.7);
  background: rgba(250, 248, 244, 0.52);
  opacity: 0.7;
}

.color-message {
  min-height: 1.3rem;
  margin: 0.7rem 0 0;
  color: #9a6078;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.pill-grid,
.extras-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.option-pill,
.extras-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(168, 183, 216, 0.36);
  border-radius: 999px;
  color: #625d6d;
  background: rgba(250, 248, 244, 0.86);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.option-pill.active,
.option-pill:hover,
.option-pill:focus-visible {
  color: var(--white);
  background: #9eabd0;
  box-shadow: 0 12px 28px rgba(168, 183, 216, 0.34);
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.client-palette {
  display: grid;
  gap: 1rem;
  max-height: 32rem;
  overflow: auto;
  padding: 0.25rem 0.25rem 0.35rem;
  scrollbar-color: rgba(168, 183, 216, 0.78) rgba(250, 248, 244, 0.72);
}

.palette-group {
  padding: 0.85rem;
  border: 1px solid rgba(168, 183, 216, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
}

.palette-group h5 {
  margin: 0 0 0.75rem;
  color: #5f5b68;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 0.72rem 0.62rem;
}

.color-swatch {
  position: relative;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 10px 22px rgba(116, 113, 125, 0.15);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.palette-swatch {
  width: auto;
  height: auto;
  min-height: 5.75rem;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.2rem;
  padding: 0.15rem 0.15rem 0.35rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.palette-swatch span {
  position: relative;
  width: 38px;
  height: 46px;
  border: 1px solid rgba(116, 113, 125, 0.22);
  border-radius: 50% 50% 46% 46%;
  background: var(--swatch);
  box-shadow: 0 8px 14px rgba(116, 113, 125, 0.12);
}

.palette-swatch span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.36rem;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 0.28rem solid transparent;
  border-right: 0.28rem solid transparent;
  border-top: 0.46rem solid var(--swatch);
}

.palette-swatch strong,
.palette-swatch small {
  max-width: 100%;
  color: #5c5966;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.palette-swatch small {
  color: #9b98a2;
  font-size: 0.58rem;
}

.palette-swatch.selected {
  background: rgba(168, 183, 216, 0.16);
  box-shadow: inset 0 0 0 1px rgba(168, 183, 216, 0.36);
}

.custom-color-toggle {
  min-height: 2.45rem;
  margin-top: 1rem;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(168, 183, 216, 0.48);
  border-radius: 999px;
  color: #7d8fbf;
  background: rgba(250, 248, 244, 0.86);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.custom-color-toggle:hover,
.custom-color-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(168, 183, 216, 0.18);
}

.custom-color-panel {
  margin-top: 1rem;
  padding: 1rem;
  border: 0.5px solid var(--blue);
  border-radius: 16px;
  background: var(--ivory);
  box-shadow: 0 14px 36px rgba(116, 113, 125, 0.12);
}

.custom-color-panel[hidden] {
  display: none;
}

.color-spectrum {
  position: relative;
  height: 112px;
  border-radius: 14px;
  overflow: hidden;
  cursor: crosshair;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.55)),
    linear-gradient(90deg, #ff4b4b, #ffd84b, #54d96f, #54d9d9, #5e7dff, #ca66ff, #ff69b4, #ff4b4b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.color-spectrum span {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(77, 74, 84, 0.18), 0 6px 14px rgba(77, 74, 84, 0.16);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.color-slider-label,
.hex-row label {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: #6b6675;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.color-slider-label input {
  width: 100%;
  accent-color: var(--blue);
}

.hex-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: end;
}

.hex-row input {
  min-height: 2.65rem;
  border: 1px solid rgba(168, 183, 216, 0.42);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  text-transform: uppercase;
}

.custom-color-preview {
  width: 2.65rem;
  height: 2.65rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--preview);
  box-shadow: 0 10px 22px rgba(116, 113, 125, 0.14);
}

.add-custom-color {
  min-height: 2.65rem;
  margin-top: 0.95rem;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(168, 183, 216, 0.3);
}

.color-swatch:hover,
.color-swatch:focus-visible {
  transform: translateY(-3px);
}

.color-swatch.selected::after {
  content: "✓";
  position: absolute;
  right: -0.3rem;
  bottom: -0.25rem;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #9eabd0;
  font-size: 0.82rem;
  font-weight: 900;
}

.backdrop-swatch.selected {
  box-shadow: 0 0 0 4px rgba(212, 175, 122, 0.28), 0 10px 22px rgba(116, 113, 125, 0.15);
}

.tiny-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
}

.builder-select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(168, 183, 216, 0.42);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: rgba(250, 248, 244, 0.9);
  outline: none;
}

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

.extras-grid label {
  display: block;
}

.extras-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.extras-grid input:checked + span {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--lavender));
  box-shadow: 0 14px 28px rgba(168, 183, 216, 0.34);
}

.extras-grid span::before {
  content: "✦";
  margin-right: 0.4rem;
}

.budget-card {
  position: relative;
}

.budget-flower {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 18%, var(--blue) 0 18%, transparent 19%),
    radial-gradient(circle at 26% 44%, var(--pink) 0 17%, transparent 18%),
    radial-gradient(circle at 74% 44%, var(--lavender) 0 17%, transparent 18%),
    radial-gradient(circle at 50% 70%, #fff 0 16%, transparent 17%);
  opacity: 0.84;
}

.budget-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.budget-grid .option-pill {
  width: 100%;
}

.budget-reminder {
  min-height: 1.35rem;
  margin: 0.8rem 0 0;
  color: #9a6078;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.dream-summary,
.dream-form {
  width: min(980px, 100%);
  margin: 1.2rem auto 0;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.dream-summary {
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--pink);
  background: rgba(255, 255, 255, 0.78);
}

.dream-summary::after {
  content: "";
  position: absolute;
  right: -2.8rem;
  top: -2.4rem;
  width: 8rem;
  height: 8rem;
  opacity: 0.3;
  background:
    radial-gradient(circle at 50% 20%, var(--blue) 0 16%, transparent 17%),
    radial-gradient(circle at 28% 42%, var(--pink) 0 15%, transparent 16%),
    radial-gradient(circle at 70% 42%, var(--lavender) 0 15%, transparent 16%);
}

.dream-summary .script-kicker {
  margin-bottom: 0.8rem;
}

.dream-summary dl {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  margin: 0;
}

.dream-summary div {
  min-width: 0;
}

.dream-summary dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dream-summary dd {
  margin: 0.2rem 0 0;
  color: #575268;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.dream-sentence {
  margin: 1.2rem auto 0;
  max-width: 48rem;
  color: #7d8fbf;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  text-align: center;
}

.start-over-button {
  display: block;
  margin: 0.65rem auto 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.start-over-button:hover,
.start-over-button:focus-visible {
  text-decoration: underline;
}

.reset-status {
  min-height: 1.2rem;
  margin: 0.35rem 0 0;
  color: #9a6078;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  text-align: center;
}

.summary-dots {
  display: inline-flex;
  gap: 0.28rem;
  vertical-align: middle;
}

.summary-dot {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  border: 1px solid rgba(116, 113, 125, 0.16);
  border-radius: 50%;
  background: var(--dot);
}

@media (prefers-reduced-motion: no-preference) {
  .option-pill.pulse-confirm {
    animation: pillPulse 0.3s ease;
  }

  .chosen-color {
    animation: colorBounceIn 0.25s ease;
  }

  .extras-grid span.extra-flash {
    animation: extraGlow 0.4s ease;
  }

  .dream-summary.summary-pulse {
    animation: summaryPulse 0.5s ease;
  }

  .dream-sentence.sentence-fade {
    animation: sentenceFade 0.35s ease;
  }
}

@keyframes pillPulse {
  50% {
    transform: scale(1.05);
  }
}

@keyframes colorBounceIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes extraGlow {
  from {
    background: rgba(248, 214, 224, 0.72);
  }
}

@keyframes summaryPulse {
  50% {
    box-shadow: 0 0 0 8px rgba(168, 183, 216, 0.16), var(--shadow);
  }
}

@keyframes sentenceFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dream-form h3 {
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.dream-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.2rem;
}

.dream-form label {
  display: grid;
  gap: 0.45rem;
  color: #6b6675;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dream-form input,
.dream-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(168, 183, 216, 0.62);
  border-radius: 0;
  padding: 0.8rem 0;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.dream-form input:focus,
.dream-form textarea:focus {
  border-color: #9eabd0;
  box-shadow: 0 8px 0 -5px rgba(168, 183, 216, 0.24);
}

.inline-summary {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  color: #625d6d;
  background: rgba(248, 214, 224, 0.3);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.dream-submit {
  width: 100%;
  font-family: var(--serif);
  font-size: 1rem;
}

.testimonials {
  background:
    linear-gradient(rgba(168, 183, 216, 0.76), rgba(168, 183, 216, 0.76)),
    url("assets/hydrangea-hero.png") center/cover;
  color: var(--white);
}

.testimonials h2,
.testimonials .script-kicker {
  color: var(--white);
}

.carousel {
  width: min(840px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3rem 1fr 3rem;
  gap: 1rem;
  align-items: center;
}

.testimonial-track {
  min-height: 230px;
  position: relative;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
  backdrop-filter: blur(10px);
  text-align: center;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

.stars {
  margin: 0;
  color: #fff5c7;
  letter-spacing: 0.18em;
}

blockquote {
  margin: 0.75rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  font-weight: 600;
}

.carousel-control {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  font-size: 2rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 2.05rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--lavender), transparent);
}

.timeline-step {
  position: relative;
  padding: 0 0.7rem;
  text-align: center;
}

.timeline-step span {
  width: 4.1rem;
  height: 4.1rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--lavender));
  box-shadow: 0 16px 36px rgba(168, 183, 216, 0.32);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.timeline-step p {
  color: var(--muted);
  line-height: 1.7;
}

.booking-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(237, 229, 216, 0.58)),
    radial-gradient(circle at top right, rgba(248, 214, 224, 0.55), transparent 18rem);
  box-shadow: var(--shadow);
}

.booking-copy {
  color: var(--muted);
  line-height: 1.8;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.inquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: #6b6675;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(168, 183, 216, 0.42);
  border-radius: 0.95rem;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: #9eabd0;
  box-shadow: 0 0 0 4px rgba(168, 183, 216, 0.18);
}

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

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: #7789b7;
  font-weight: 700;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.7rem;
}

.insta-grid a {
  aspect-ratio: 1;
  border-radius: 1rem;
  box-shadow: 0 14px 34px rgba(116, 113, 125, 0.12);
  background:
    linear-gradient(135deg, rgba(168, 183, 216, 0.54), rgba(248, 214, 224, 0.5)),
    radial-gradient(circle at 30% 24%, #fff 0 10%, transparent 11%),
    radial-gradient(circle at 65% 58%, var(--lavender) 0 14%, transparent 15%),
    var(--beige);
}

.insta-grid a:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(248, 214, 224, 0.52), rgba(237, 229, 216, 0.76)),
    radial-gradient(circle at 70% 24%, #fff 0 12%, transparent 13%),
    radial-gradient(circle at 28% 66%, var(--blue) 0 15%, transparent 16%),
    var(--ivory);
}

.insta-button {
  width: fit-content;
  margin: 1.6rem auto 0;
}

.footer {
  padding: 4rem clamp(1rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.88);
  background: #8fa0c5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 1fr 0.75fr;
  gap: 2rem;
}

.footer .brand-mark {
  background: rgba(255, 255, 255, 0.2);
}

.footer .brand-logo {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(65, 70, 95, 0.18);
}

.footer small,
.footer p {
  color: rgba(255, 255, 255, 0.78);
}

.footer h3 {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 1.5rem;
}

.footer a:not(.brand) {
  display: block;
  margin: 0.45rem 0;
}

.legal-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(248, 214, 224, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(250, 248, 244, 0.96), rgba(237, 229, 216, 0.62));
}

.legal-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.legal-card {
  padding: 28px;
  border: 1px solid rgba(168, 183, 216, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(168, 183, 216, 0.14);
}

.legal-card h3 {
  margin: 0 0 0.8rem;
  color: #5d5364;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-card p {
  margin: 0 0 0.85rem;
  color: rgba(74, 71, 85, 0.82);
  line-height: 1.75;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(168, 183, 216, 0.32);
  border-radius: 18px;
  background: rgba(250, 248, 244, 0.96);
  box-shadow: 0 18px 50px rgba(74, 71, 85, 0.2);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  color: #5d5364;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.cookie-banner p {
  margin: 0.2rem 0 0;
  color: rgba(74, 71, 85, 0.78);
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cookie-actions a {
  color: #6f87bd;
  font-weight: 700;
  text-decoration: none;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 0.72rem 1.05rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(77, 74, 84, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(900px, 94vw);
  max-height: 78vh;
  border: 0.7rem solid rgba(255, 255, 255, 0.72);
  border-radius: 1.3rem;
  object-fit: contain;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 1rem 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  font-size: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(5deg);
  }
}

@keyframes balloonPop {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0);
  }
  58% {
    opacity: 1;
    transform: translateY(-10px) scale(1.12);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes balloonBurst {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.75);
    filter: blur(6px);
  }
}

@keyframes sparkleBurst {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(0deg);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.35) rotate(22deg);
  }
}

@keyframes introText {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }
  38% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
}

@keyframes introFade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 1rem;
    display: grid;
    min-width: 230px;
    padding: 1rem;
    border-radius: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-content {
    margin: 0 auto;
  }

  .about-grid,
  .booking-panel,
  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .builder-shell {
    grid-template-columns: 1fr 1fr;
  }

  .builder-shell {
    grid-template-columns: 1fr;
  }

  .arch-preview-card {
    position: relative;
    top: auto;
  }

  .dream-summary dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

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

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-media {
    background-position: 38% center;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .timeline,
  .inquiry-form,
  .dream-form-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder {
    min-height: 390px;
  }

  .carousel {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  .testimonial-track {
    min-height: 270px;
  }

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

  .dream-summary dl {
    grid-template-columns: 1fr;
  }

  .pill-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .flower-corner,
  .floating-flower {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .pop-intro {
    display: none;
  }
}

/* Dream builder redesign */
.dream-builder.section {
  padding-block: 80px;
  background: linear-gradient(160deg, #faf8f4 0%, #f5ede4 100%);
}

.dream-builder::before {
  inset: 2rem auto auto -5rem;
  opacity: 0.12;
}

.dream-builder .section-heading {
  margin-bottom: 3rem;
}

.dream-builder .builder-shell {
  grid-template-columns: minmax(0, 55fr) minmax(360px, 45fr);
  gap: 48px;
}

.dream-builder .arch-preview-card {
  top: 6rem;
  padding: 0;
  border: 1px solid rgba(168, 183, 216, 0.25);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(168, 183, 216, 0.12), 0 16px 48px rgba(168, 183, 216, 0.18);
}

.dream-builder .arch-preview-card::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: 2.8rem;
  width: 9rem;
  height: 9rem;
  opacity: 0.06;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, var(--blue) 0 12%, transparent 13%),
    radial-gradient(circle at 30% 36%, var(--pink) 0 12%, transparent 13%),
    radial-gradient(circle at 70% 36%, var(--lavender) 0 12%, transparent 13%),
    radial-gradient(circle at 38% 62%, #d4af7a 0 10%, transparent 11%),
    radial-gradient(circle at 62% 62%, var(--blue) 0 10%, transparent 11%);
}

.dream-builder .preview-watercolor {
  background:
    radial-gradient(circle at 14% 18%, rgba(248, 214, 224, 0.36), transparent 13rem),
    radial-gradient(circle at 86% 10%, rgba(168, 183, 216, 0.26), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 248, 244, 0.5));
}

.dream-builder .balloon-preview {
  display: block;
  min-height: clamp(420px, 48vw, 580px);
}

.dream-builder .arch-preview-card p {
  margin: 0;
  padding: 12px 18px 8px;
  color: #6f87bd;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  line-height: 1.35;
}

.dream-builder .rotation-tools {
  margin: 0;
  padding: 0 18px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dream-builder .rotation-tools > span {
  color: rgba(116, 113, 125, 0.72);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
}

.dream-builder .rotation-row {
  gap: 0.55rem;
}

.dream-builder .rotation-row button {
  min-width: 2.8rem;
  min-height: 1.85rem;
  border-color: rgba(168, 183, 216, 0.35);
  font-size: 0.76rem;
}

.dream-builder .rotation-row input {
  height: 3px;
}

.dream-builder .remove-one-balloon,
.dream-builder .remove-selected-balloons {
  width: max-content;
  min-height: 2rem;
  justify-self: center;
  padding: 0.48rem 0.9rem;
  border: 1px solid rgba(154, 96, 120, 0.28);
  border-radius: 999px;
  color: #9a6078;
  background: rgba(248, 214, 224, 0.42);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dream-builder .remove-one-balloon.active,
.dream-builder .remove-selected-balloons:hover,
.dream-builder .remove-selected-balloons:focus-visible,
.dream-builder .remove-one-balloon:hover,
.dream-builder .remove-one-balloon:focus-visible {
  color: var(--white);
  background: #9a6078;
  transform: translateY(-1px);
}

.dream-builder .rotation-tools small {
  font-size: 0.68rem;
}

.dream-builder .builder-controls {
  display: grid;
  gap: 32px;
}

.dream-builder .builder-controls > .control-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dream-builder .control-card h3,
.dream-builder .italic-label {
  margin: 0 0 0.85rem;
  color: #5d5364;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-style: italic;
}

.dream-builder .control-script {
  margin: 0 0 0.75rem;
  color: #8b7baa;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
}

.dream-builder .builder-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 0;
  padding: 0 0 4px;
}

.dream-builder .builder-steps::before {
  left: 9%;
  right: 9%;
  top: 14px;
  height: 1px;
  background: #ede5d8;
}

.dream-builder .builder-steps span {
  gap: 0.4rem;
  color: rgba(116, 113, 125, 0.82);
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.dream-builder .builder-steps b {
  font-weight: 700;
}

.dream-builder .builder-steps i {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(200, 189, 217, 0.72);
  color: #9a92a5;
  background: transparent;
  font-size: 11px;
}

.dream-builder .builder-steps span.active i {
  border-color: var(--pink);
  color: #5d5364;
  background: var(--pink);
}

.dream-builder .builder-steps span.complete i {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.dream-builder .style-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.dream-builder .style-card-grid .option-pill {
  min-height: 0;
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  padding: 10px 8px;
  border: 1.5px solid #ede5d8;
  border-radius: 12px;
  color: #5d5364;
  background: var(--white);
  box-shadow: none;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.dream-builder .style-card-grid .option-pill:hover,
.dream-builder .style-card-grid .option-pill:focus-visible {
  color: #5d5364;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(168, 183, 216, 0.16);
  transform: scale(1.03);
}

.dream-builder .style-card-grid .option-pill.active {
  border-color: var(--blue);
  color: #5d5364;
  background: rgba(168, 183, 216, 0.08);
  box-shadow: 0 10px 24px rgba(168, 183, 216, 0.18);
}

.dream-builder .style-icon {
  position: relative;
  width: 40px;
  height: 30px;
  display: block;
}

.dream-builder .style-icon::before,
.dream-builder .style-icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--blue);
}

.dream-builder .style-icon-classic::before,
.dream-builder .style-icon-entrance::before {
  inset: 5px 5px 0;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.dream-builder .style-icon-organic::before {
  left: 4px;
  top: 5px;
  width: 30px;
  height: 20px;
  border-radius: 55% 45% 50% 48%;
  transform: rotate(-8deg);
}

.dream-builder .style-icon-half::before {
  inset: 5px 4px 0 18px;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 18px 0 0;
}

.dream-builder .style-icon-circle::before {
  inset: 4px 8px;
  border-radius: 50%;
}

.dream-builder .style-icon-wall::before {
  inset: 5px 8px 0;
  border-radius: 9px 9px 3px 3px;
  background: rgba(248, 214, 224, 0.24);
}

.dream-builder .style-icon-entrance::after {
  left: 17px;
  bottom: 0;
  width: 7px;
  height: 12px;
  border-color: rgba(200, 189, 217, 0.72);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.dream-builder .builder-controls > .palette-card {
  padding: 18px;
  border: 1px solid rgba(168, 183, 216, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 38px rgba(168, 183, 216, 0.12);
}

.dream-builder .chosen-label {
  margin-top: 0;
  font-size: 1.85rem;
}

.dream-builder .chosen-colors-row {
  gap: 0.62rem;
  min-height: 42px;
}

.dream-builder .chosen-color,
.dream-builder .chosen-placeholder {
  width: 36px;
  height: 36px;
}

.dream-builder .chosen-color {
  box-shadow: 0 8px 18px rgba(116, 113, 125, 0.14);
}

.dream-builder .chosen-color button {
  right: -0.38rem;
  top: -0.38rem;
  width: 1.12rem;
  height: 1.12rem;
}

.dream-builder .palette-row-label,
.dream-builder .quick-palette-label {
  margin: 1rem 0 0.65rem;
  color: #5d5969;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 700;
}

.dream-builder .quick-palette-label {
  display: none;
}

.dream-builder .client-palette {
  max-height: 22rem;
  gap: 0.8rem;
  padding: 0.2rem 0.2rem 0.35rem;
}

.dream-builder .palette-group {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.dream-builder .palette-group h5 {
  margin: 0 0 0.6rem;
  font-size: 0.92rem;
}

.dream-builder .palette-grid {
  grid-template-columns: repeat(auto-fill, minmax(58px, 1fr));
  gap: 0.6rem 0.45rem;
}

.dream-builder .palette-swatch {
  min-height: 4.6rem;
  border-radius: 12px;
}

.dream-builder .palette-swatch span {
  width: 36px;
  height: 42px;
}

.dream-builder .palette-swatch strong,
.dream-builder .palette-swatch small {
  font-size: 0.54rem;
}

.dream-builder .palette-swatch.selected {
  background: transparent;
  box-shadow: none;
}

.dream-builder .palette-swatch.selected span {
  box-shadow:
    0 0 0 2px var(--ivory),
    0 0 0 5px var(--swatch),
    0 8px 14px rgba(116, 113, 125, 0.13);
}

.dream-builder .palette-swatch.selected::after {
  right: 0.28rem;
  bottom: 2.08rem;
}

.dream-builder .palette-divider {
  height: 1px;
  margin: 1.2rem 0 0.2rem;
  background: #ede5d8;
}

.dream-builder .swatch-row {
  gap: 0.68rem;
}

.dream-builder .backdrop-swatch {
  width: 36px;
  height: 36px;
  overflow: visible;
}

.dream-builder .backdrop-swatch::before {
  content: attr(aria-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  width: max-content;
  max-width: 11rem;
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(168, 183, 216, 0.22);
  border-radius: 999px;
  color: #5d5364;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(116, 113, 125, 0.12);
  font-size: 0.68rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dream-builder .backdrop-swatch:hover::before,
.dream-builder .backdrop-swatch:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.dream-builder [data-event-options] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.dream-builder [data-event-options] .option-pill {
  min-height: 0;
  padding: 8px 16px;
  border: 1px solid #ede5d8;
  border-radius: 999px;
  color: #625d6d;
  background: var(--white);
  box-shadow: none;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.dream-builder [data-event-options] .option-pill.active {
  color: #5a4a5a;
  background: linear-gradient(135deg, rgba(248, 214, 224, 0.9), rgba(200, 189, 217, 0.72));
  box-shadow: 0 10px 24px rgba(200, 189, 217, 0.2);
}

.dream-builder .extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.dream-builder .extras-grid span {
  min-height: 4.25rem;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.35rem;
  padding: 0.7rem;
  border: 1px solid #ede5d8;
  border-radius: 14px;
  color: #5d5364;
  background: var(--white);
  box-shadow: none;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
}

.dream-builder .extras-grid span::before {
  content: attr(data-extra-icon);
  margin: 0;
  color: #d4af7a;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 0 0 rgba(248, 214, 224, 0);
}

.dream-builder .extras-grid span:hover,
.dream-builder .extras-grid input:focus-visible + span {
  transform: scale(1.02);
  box-shadow: 0 10px 22px rgba(168, 183, 216, 0.16);
}

.dream-builder .extras-grid input:checked + span {
  border-color: var(--blue);
  color: #5d5364;
  background: rgba(248, 214, 224, 0.15);
  box-shadow: 0 12px 26px rgba(168, 183, 216, 0.16);
}

.dream-builder .extras-grid input:checked + span::before {
  color: #d99cb0;
  text-shadow: 0 0 14px rgba(248, 214, 224, 0.8);
}

.dream-builder .budget-card {
  text-align: center;
}

.dream-builder .budget-flower {
  width: 2.55rem;
  height: 2.55rem;
  margin: 0 auto 0.45rem;
}

.dream-builder .budget-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.dream-builder .budget-grid .option-pill {
  min-height: 6rem;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.32rem;
  padding: 16px 12px;
  border: 1px solid #ede5d8;
  border-radius: 16px;
  color: #5d5364;
  background: var(--white);
  box-shadow: none;
  font-family: var(--serif);
  letter-spacing: 0;
  text-transform: none;
}

.dream-builder .budget-symbol {
  color: #d4af7a;
  font-size: 0.95rem;
  line-height: 1;
}

.dream-builder .budget-grid strong {
  color: #5d5364;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.dream-builder .budget-grid small {
  color: rgba(116, 113, 125, 0.82);
  font-size: 10px;
  font-weight: 700;
}

.dream-builder .budget-grid .option-pill.active {
  border: 2px solid var(--blue);
  color: #5d5364;
  background: linear-gradient(160deg, rgba(248, 214, 224, 0.2), rgba(200, 189, 217, 0.15));
  box-shadow: 0 4px 16px rgba(168, 183, 216, 0.2);
}

.dream-builder .dream-summary {
  width: min(1180px, 100%);
  margin-top: 2rem;
  border: 1px solid rgba(168, 183, 216, 0.22);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(168, 183, 216, 0.14);
}

.dream-builder .dream-summary dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dream-builder .dream-summary dd {
  font-size: 1.15rem;
}

.dream-builder .dream-form {
  border-color: rgba(168, 183, 216, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 899px) {
  .dream-builder .builder-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dream-builder .arch-preview-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 700px) {
  .dream-builder.section {
    padding-block: 64px;
  }

  .dream-builder .builder-steps {
    overflow-x: auto;
    padding-bottom: 0.4rem;
  }

  .dream-builder .builder-steps span {
    min-width: 58px;
  }

  .dream-builder .style-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dream-builder [data-event-options] {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }

  .dream-builder [data-event-options] .option-pill {
    flex: 0 0 auto;
  }

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

  .dream-builder .extra-balloon-controls {
    grid-template-columns: 1fr;
  }

  .dream-builder .dream-summary dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .dream-builder .extras-grid {
    grid-template-columns: 1fr;
  }

  .dream-builder .palette-card {
    padding: 15px;
  }

  .dream-builder .palette-grid {
    grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  }
}

/* Final mobile polish: keep the full experience inside narrow screens. */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  svg {
    max-width: 100%;
  }

  .site-header {
    padding: 0.55rem 0.75rem;
  }

  .nav {
    gap: 0.65rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand strong {
    max-width: 11rem;
    font-size: 1.02rem;
    line-height: 1.05;
  }

  .brand small {
    font-size: 0.58rem;
    letter-spacing: 0.11em;
  }

  .nav-toggle {
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 auto;
  }

  .nav-menu {
    position: fixed;
    top: 4.6rem;
    left: 0.85rem;
    right: 0.85rem;
    width: auto;
    min-width: 0;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 0.35rem;
    padding: 0.85rem;
    border-radius: 18px;
    background: rgba(250, 248, 244, 0.98);
  }

  .nav-menu a,
  .language-toggle {
    width: 100%;
    min-height: 2.65rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    text-align: center;
  }

  .hero {
    min-height: 88svh;
    padding: 7rem 1rem 3rem;
  }

  .hero-content {
    padding: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .section {
    padding: 3.8rem 0.85rem;
  }

  .section-heading {
    margin-bottom: 1.65rem;
  }

  .section-heading h2,
  .booking-panel h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 1;
  }

  .service-grid,
  .timeline,
  .booking-panel,
  .footer-grid,
  .legal-grid,
  .about-grid,
  .dream-form-grid,
  .inquiry-form {
    grid-template-columns: 1fr !important;
  }

  .service-card,
  .testimonial-card,
  .booking-panel,
  .dream-form,
  .dream-summary,
  .legal-card {
    border-radius: 18px;
  }

  .masonry-gallery {
    columns: 1;
    column-gap: 0;
  }

  .gallery-item {
    margin-bottom: 0.85rem;
    border-radius: 16px;
  }

  .gallery-item img {
    min-height: 0;
    max-height: 520px;
    object-fit: cover;
  }

  .dream-builder.section {
    padding: 3.8rem 0.75rem;
  }

  .dream-builder .section-heading {
    margin-bottom: 1.8rem;
  }

  .dream-builder .builder-shell {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.25rem;
  }

  .dream-builder .arch-preview-card {
    position: relative;
    top: auto;
    width: 100%;
    padding: 0.55rem;
    border-radius: 18px;
    overflow: visible;
  }

  .dream-builder .arch-preview-card::after {
    display: none;
  }

  .dream-builder .balloon-preview {
    width: min(100%, 430px);
    height: auto;
    min-height: 0;
    aspect-ratio: 620 / 560;
    margin: 0 auto;
    display: block;
    overflow: visible;
    filter: drop-shadow(0 12px 18px rgba(116, 113, 125, 0.12));
    touch-action: manipulation;
  }

  .dream-builder .arch-preview-card p {
    padding: 0.55rem 0.45rem 0.35rem;
    font-size: 0.84rem;
  }

  .dream-builder .builder-controls {
    gap: 1rem;
  }

  .dream-builder .builder-controls > .palette-card {
    padding: 0.95rem;
    border-radius: 16px;
  }

  .dream-builder .control-script {
    font-size: clamp(1.7rem, 9vw, 2.15rem);
    line-height: 0.95;
  }

  .dream-builder .chosen-label {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
  }

  .dream-builder .client-palette {
    max-height: 24rem;
    padding-right: 0.15rem;
  }

  .dream-builder .palette-grid {
    grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
    gap: 0.62rem 0.45rem;
  }

  .dream-builder .palette-swatch {
    min-height: 4.9rem;
    padding: 0.35rem 0.2rem;
  }

  .dream-builder .palette-swatch span {
    width: 38px;
    height: 44px;
  }

  .dream-builder .dream-summary {
    width: 100%;
    margin-top: 1.25rem;
    padding-inline: 1rem;
  }

  .dream-builder .dream-summary dl {
    grid-template-columns: 1fr !important;
  }

  .dream-builder .dream-form {
    padding: 1rem;
  }

  label,
  input,
  select,
  textarea,
  button {
    max-width: 100%;
  }

  input,
  select,
  textarea {
    width: 100%;
  }

  .portrait-placeholder {
    min-height: 320px;
    font-size: 2.35rem;
  }

  .timeline-step {
    padding-left: 0;
  }

  .insta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    padding: 0.9rem;
    border-radius: 16px;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }

  .footer {
    padding: 3rem 1rem;
  }
}

@media (max-width: 380px) {
  .brand strong {
    max-width: 8.6rem;
    font-size: 0.92rem;
  }

  .brand small {
    display: none;
  }

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