:root {
  color-scheme: light;
  --color-white: #ffffff;
  --color-cream: #fbf7f5;
  --color-blush: #f3d7db;
  --color-taupe: #b99984;
  --color-sage: #d6e5da;
  --color-espresso: #2f2424;
  --color-gold: #c4b29a;
  --color-shadow: 40 24 24;
  --font-heading: "Playfair Display", serif;
  --font-sans: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-script: "Allura", cursive;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-espresso);
  background: linear-gradient(180deg, #ffffff 0%, var(--color-cream) 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(90vw, 1160px);
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191, 171, 158, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand__logo {
  width: 52px;
  height: 52px;
}

.brand__text {
  display: grid;
  gap: 0.2rem;
}

.brand__title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand__subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(47, 36, 36, 0.6);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-blush), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
}

.nav-toggle__line {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-espresso);
  position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background-color: var(--color-espresso);
}

.nav-toggle__line::before {
  top: -7px;
}

.nav-toggle__line::after {
  top: 7px;
}

.hero {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(47, 36, 36, 0.6);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

.hero__lead {
  font-size: 1.1rem;
  max-width: 32rem;
  color: rgba(47, 36, 36, 0.85);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--color-shadow) / 0.15);
}

.btn--primary {
  color: var(--color-espresso);
  background-image: linear-gradient(120deg, var(--color-blush), var(--color-gold));
}

.btn--ghost {
  background-color: transparent;
  border: 1px solid rgba(191, 171, 158, 0.6);
  color: var(--color-espresso);
}

.hero__badges {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  font-size: 0.9rem;
}

.badge-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(2.5rem, 4vw, 4rem);
}

.hero-cake {
  position: relative;
  width: min(280px, 100%);
  background: var(--color-cream);
  border-radius: 140px 140px 20px 20px;
  padding: 1.5rem;
  box-shadow: 0 24px 40px rgba(var(--color-shadow) / 0.15);
  border: 1px solid rgba(191, 171, 158, 0.25);
}

.hero-cake__top,
.hero-cake__middle,
.hero-cake__base {
  background: var(--color-white);
  border-radius: 120px 120px 18px 18px;
  border: 1px solid rgba(191, 171, 158, 0.2);
}

.hero-cake__top {
  height: 110px;
  position: relative;
}

.hero-cake__cross {
  position: absolute;
  inset: 28% 50%;
  width: 3px;
  height: 50%;
  background: linear-gradient(180deg, rgba(219, 192, 170, 0.1), var(--color-gold));
}

.hero-cake__cross::after {
  content: "";
  position: absolute;
  left: -16px;
  top: 40%;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, rgba(219, 192, 170, 0.1), var(--color-gold));
}

.hero-cake__middle {
  margin: 1.5rem auto;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.hero-cake__middle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0) 18%,
      rgba(95, 83, 83, 0.12) 18%,
      rgba(95, 83, 83, 0.12) 26%
    ),
    linear-gradient(180deg, #fdfdfd 0%, #f1e9e3 100%);
}

.hero-cake__base {
  height: 80px;
}

.hero-cake__blossom {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 20%, #ffe4ec 0%, #f3b9c2 80%);
  filter: drop-shadow(0 12px 25px rgba(243, 185, 194, 0.45));
}

.hero-cake__blossom--left {
  top: -46px;
  left: -14px;
}

.hero-cake__blossom--right {
  top: -32px;
  right: -18px;
}

.hero__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.6), 0 12px 20px rgba(0, 0, 0, 0.08);
}

.hero__bubble--one {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 5%;
}

.hero__bubble--two {
  width: 60px;
  height: 60px;
  bottom: 12%;
  right: 12%;
}

.hero__bubble--three {
  width: 80px;
  height: 80px;
  bottom: 18%;
  left: 8%;
}

.section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.section--light {
  background: var(--color-cream);
}

.section--white {
  background: var(--color-white);
}

.section--blush {
  background: linear-gradient(180deg, rgba(243, 215, 219, 0.45) 0%, #fbf7f5 100%);
}

.section--gallery {
  background: var(--color-white);
  padding-bottom: 0;
}

.section--faq {
  background: var(--color-cream);
}

.section--contact {
  background: linear-gradient(135deg, rgba(243, 215, 219, 0.65), rgba(214, 229, 218, 0.65));
}

.section__header {
  max-width: 56ch;
}

.section__header--center {
  text-align: center;
  margin: 0 auto 3rem;
}

.section__header p {
  margin: 0;
  color: rgba(47, 36, 36, 0.75);
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(47, 36, 36, 0.55);
  margin-bottom: 0.75rem;
}

section h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 1rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.highlight-card {
  display: grid;
  grid-template-rows: 220px auto;
  border-radius: 32px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 24px 45px rgba(var(--color-shadow) / 0.08);
  border: 1px solid rgba(191, 171, 158, 0.25);
}

.highlight-card__image {
  position: relative;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
  background-position: center, center 85%;
}

.highlight-card__text {
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}

.highlight-card__text h3 {
  font-family: var(--font-heading);
  margin: 0;
}

.highlight-card__text p {
  margin: 0;
  color: rgba(47, 36, 36, 0.75);
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(243, 215, 219, 0.45);
}

.highlight-card__image--princess {
  background-image: linear-gradient(140deg, rgba(255, 206, 229, 0.8), rgba(248, 183, 212, 0.6)),
    url("assets/highlights/princess-ball.svg");
}

.highlight-card__image--elegance {
  background-image: linear-gradient(160deg, rgba(250, 236, 224, 0.85), rgba(231, 196, 166, 0.6)),
    url("assets/highlights/ivory-elegance.svg");
}

.highlight-card__image--gentleman {
  background-image: linear-gradient(200deg, rgba(236, 236, 240, 0.85), rgba(126, 127, 136, 0.65)),
    url("assets/highlights/gentleman-soiree.svg");
}

.highlight-card__image--safari {
  background-image: linear-gradient(180deg, rgba(242, 249, 244, 0.88), rgba(198, 223, 206, 0.6)),
    url("assets/highlights/safari-adventure.svg");
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.offer-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(191, 171, 158, 0.25);
  box-shadow: 0 18px 40px rgba(var(--color-shadow) / 0.08);
}

.offer-card h3 {
  font-family: var(--font-heading);
  margin-top: 0;
}

.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.offer-card li {
  position: relative;
  padding-left: 1.4rem;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blush), var(--color-gold));
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: var(--color-white);
  border-radius: 28px;
  padding: 2.2rem;
  border: 1px solid rgba(191, 171, 158, 0.25);
  box-shadow: 0 18px 40px rgba(var(--color-shadow) / 0.08);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(243, 215, 219, 0.4);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--color-cream);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(191, 171, 158, 0.2);
  box-shadow: 0 20px 36px rgba(var(--color-shadow) / 0.06);
}

.testimonial blockquote {
  margin: 0 0 1.2rem;
  font-style: italic;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0 clamp(5vw, 9vw, 7rem) clamp(4rem, 8vw, 6rem);
}

.gallery__item {
  position: relative;
  padding-top: 110%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 45px rgba(var(--color-shadow) / 0.12);
  border: 1px solid rgba(191, 171, 158, 0.2);
}

.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(110%);
}

.gallery__item figcaption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery__item--1::before {
  background-image: linear-gradient(
      rgba(243, 215, 219, 0.3),
      rgba(243, 215, 219, 0.3)
    ),
    url("assets/gallery/blush-blessing.svg");
}

.gallery__item--2::before {
  background-image: linear-gradient(
      rgba(255, 213, 234, 0.35),
      rgba(255, 213, 234, 0.35)
    ),
    url("assets/gallery/disney-dreams.svg");
}

.gallery__item--3::before {
  background-image: linear-gradient(
      rgba(204, 204, 204, 0.25),
      rgba(204, 204, 204, 0.25)
    ),
    url("assets/gallery/gentleman.svg");
}

.gallery__item--4::before {
  background-image: linear-gradient(
      rgba(214, 229, 218, 0.35),
      rgba(214, 229, 218, 0.35)
    ),
    url("assets/gallery/safari.svg");
}

.gallery__item--5::before {
  background-image: linear-gradient(
      rgba(255, 240, 243, 0.4),
      rgba(255, 240, 243, 0.4)
    ),
    url("assets/gallery/pastel-texture.svg");
}

.gallery__item--6::before {
  background-image: linear-gradient(
      rgba(243, 215, 219, 0.25),
      rgba(243, 215, 219, 0.25)
    ),
    url("assets/gallery/treatbox.svg");
}

.gallery__item--7::before {
  background-image: linear-gradient(
      rgba(117, 213, 255, 0.25),
      rgba(255, 203, 102, 0.25)
    ),
    url("assets/gallery/naruto-surge.svg");
}

.gallery__item--8::before {
  background-image: linear-gradient(
      rgba(140, 202, 211, 0.35),
      rgba(246, 219, 170, 0.25)
    ),
    url("assets/gallery/cakesicles-dove.svg");
}

.gallery__item--9::before {
  background-image: linear-gradient(
      rgba(248, 203, 215, 0.35),
      rgba(241, 228, 235, 0.3)
    ),
    url("assets/gallery/babyshower-cupcakes.svg");
}

.gallery__item--10::before {
  background-image: linear-gradient(
      rgba(243, 183, 210, 0.35),
      rgba(147, 198, 255, 0.25)
    ),
    url("assets/gallery/gabbys-dollhouse.svg");
}

.gallery__item--11::before {
  background-image: linear-gradient(
      rgba(204, 239, 227, 0.3),
      rgba(247, 219, 120, 0.25)
    ),
    url("assets/gallery/heidi-daisies.svg");
}

.gallery__item--12::before {
  background-image: linear-gradient(
      rgba(249, 199, 182, 0.35),
      rgba(255, 255, 255, 0.4)
    ),
    url("assets/gallery/daisy-cupcakes.svg");
}

.gallery__item--13::before {
  background-image: linear-gradient(
      rgba(167, 221, 235, 0.35),
      rgba(249, 214, 138, 0.2)
    ),
    url("assets/gallery/cakepops-sky.svg");
}

.gallery__item--14::before {
  background-image: linear-gradient(
      rgba(255, 224, 106, 0.35),
      rgba(111, 143, 191, 0.25)
    ),
    url("assets/gallery/pokemon-party.svg");
}

.gallery__item--15::before {
  background-image: linear-gradient(
      rgba(122, 180, 135, 0.3),
      rgba(255, 247, 237, 0.35)
    ),
    url("assets/gallery/safari-first-birthday.svg");
}

.faq {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.faq details {
  background: var(--color-white);
  border-radius: 24px;
  padding: 1.2rem 1.6rem;
  border: 1px solid rgba(191, 171, 158, 0.25);
  box-shadow: 0 20px 40px rgba(var(--color-shadow) / 0.06);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.faq summary::marker {
  content: "";
}

.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  margin: 0.8rem 0 0;
  color: rgba(47, 36, 36, 0.75);
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  padding: clamp(2.5rem, 6vw, 4rem);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 36px;
  border: 1px solid rgba(191, 171, 158, 0.3);
  box-shadow: 0 30px 55px rgba(var(--color-shadow) / 0.12);
}

.contact__intro h2 {
  margin-top: 0.5rem;
}

.contact__details ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.contact__note {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: rgba(47, 36, 36, 0.75);
}

.site-footer {
  background: var(--color-espresso);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  gap: 1rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
}

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blush), var(--color-gold));
  box-shadow: 0 16px 38px rgba(var(--color-shadow) / 0.18);
  color: var(--color-espresso);
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.floating-cta__icon {
  width: 26px;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232F2424' d='M16 0C7.164 0 0 7.164 0 16c0 2.821.74 5.441 2.03 7.72L0 32l8.547-1.988A15.89 15.89 0 0 0 16 32c8.836 0 16-7.164 16-16S24.836 0 16 0Zm8.802 23.104c-.388 1.09-2.276 2.071-3.172 2.207-.813.125-1.83.178-2.958-.185-.683-.216-1.564-.508-2.708-.995-4.768-2.065-7.873-6.888-8.113-7.217-.24-.329-1.942-2.588-1.942-4.936 0-2.35 1.23-3.506 1.667-3.989.388-.432.854-.54 1.138-.54.284 0 .568.003.819.015.264.012.622-.1.974.742.388.937 1.317 3.24 1.433 3.474.116.234.193.51.04.83-.145.319-.217.51-.43.784-.216.275-.458.617-.65.83-.216.234-.439.489-.188.958.252.469 1.117 1.844 2.402 2.985 1.652 1.47 3.04 1.931 3.474 2.148.436.219.691.184.957-.11.275-.303 1.142-1.24 1.445-1.665.303-.426.607-.357 1.02-.21.413.146 2.634 1.24 3.084 1.462.45.223.75.337.861.527.11.191.11 1.108-.278 2.198Z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.chat-launcher {
  position: fixed;
  right: 2rem;
  bottom: 7.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: none;
  color: var(--color-espresso);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(var(--color-shadow) / 0.12);
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 120;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(var(--color-shadow) / 0.18);
}

.chat-launcher__icon {
  font-size: 1.4rem;
}

.chat-panel {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: end;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(31, 24, 24, 0.32);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 150;
}

.chat-panel[data-open="true"] {
  opacity: 1;
  pointer-events: all;
}

.chat-panel__sheet {
  width: min(480px, 100%);
  max-height: min(84vh, 720px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  border: 1px solid rgba(191, 171, 158, 0.35);
  box-shadow: 0 36px 60px rgba(var(--color-shadow) / 0.22);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  overflow: hidden;
}

.chat-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.6rem 1rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(191, 171, 158, 0.25);
  background: linear-gradient(120deg, rgba(243, 215, 219, 0.45), rgba(214, 229, 218, 0.45));
}

.chat-panel__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(47, 36, 36, 0.6);
}

.chat-panel__header h2 {
  margin: 0.2rem 0 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.chat-panel__close {
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  color: rgba(47, 36, 36, 0.6);
  cursor: pointer;
}

.chat-panel__disclaimer {
  padding: 0.9rem 1.6rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(191, 171, 158, 0.2);
  color: rgba(47, 36, 36, 0.7);
}

.chat-panel__disclaimer p {
  margin: 0;
}

.chat-panel__conversation {
  padding: 1.4rem;
  overflow-y: auto;
  display: grid;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(251, 247, 245, 0.7), rgba(255, 255, 255, 0.9));
}

.chat-message {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: flex-start;
}

.chat-message--user {
  justify-content: end;
  grid-template-columns: 1fr auto;
}

.chat-message--user .chat-message__bubble {
  background: linear-gradient(135deg, var(--color-blush), rgba(196, 178, 154, 0.85));
  color: var(--color-espresso);
}

.chat-message--user .chat-message__avatar {
  order: 2;
}

.chat-message__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 18px rgba(var(--color-shadow) / 0.12);
  font-size: 1.1rem;
}

.chat-message__bubble {
  background: var(--color-white);
  border-radius: 18px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 12px 26px rgba(var(--color-shadow) / 0.12);
  border: 1px solid rgba(191, 171, 158, 0.2);
  white-space: pre-wrap;
}

.chat-panel__composer {
  display: grid;
  gap: 0.6rem;
  padding: 1rem 1.4rem 1.4rem;
  border-top: 1px solid rgba(191, 171, 158, 0.25);
  background: rgba(255, 255, 255, 0.95);
}

.chat-panel__composer textarea {
  resize: none;
  border-radius: 14px;
  border: 1px solid rgba(191, 171, 158, 0.45);
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  min-height: 72px;
  box-shadow: inset 0 1px 3px rgba(var(--color-shadow) / 0.06);
}

.chat-panel__composer textarea:focus {
  outline: 2px solid rgba(243, 215, 219, 0.8);
  outline-offset: 2px;
}

.chat-panel__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chat-panel__submit {
  min-width: 140px;
}

.chat-panel__status {
  font-size: 0.85rem;
  color: rgba(47, 36, 36, 0.7);
}

.chat-message--assistant .chat-message__avatar {
  background: rgba(243, 215, 219, 0.6);
}

.chat-panel__conversation::-webkit-scrollbar {
  width: 10px;
}

.chat-panel__conversation::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
}

.chat-panel__conversation::-webkit-scrollbar-thumb {
  background: rgba(191, 171, 158, 0.6);
  border-radius: 999px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(21, 17, 17, 0.75);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  z-index: 160;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox[data-visible="true"] {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox__inner {
  position: relative;
  width: min(92vw, 900px);
  max-height: 90vh;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
  box-shadow: 0 40px 70px rgba(var(--color-shadow) / 0.45);
  border: 1px solid rgba(191, 171, 158, 0.35);
}

.gallery-lightbox__image {
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(191, 171, 158, 0.1);
}

.gallery-lightbox__caption {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(47, 36, 36, 0.75);
  text-align: center;
}

.gallery-lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 1.6rem);
  right: clamp(1rem, 3vw, 1.6rem);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: rgba(47, 36, 36, 0.7);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(var(--color-shadow) / 0.2);
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    order: 2;
    display: grid;
    justify-items: center;
  }

  .hero__lead {
    max-width: 42ch;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__visual {
    order: 1;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(251, 247, 245, 0.95);
    border: 1px solid rgba(191, 171, 158, 0.25);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(var(--color-shadow) / 0.08);
    flex-direction: column;
    padding: 1.2rem;
    gap: 1rem;
    transform-origin: right top;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.5rem 0;
  }

  .highlight-card {
    grid-template-rows: 200px auto;
  }

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

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    right: 1.2rem;
    bottom: 1.2rem;
  }

  .chat-launcher {
    right: 1.2rem;
    bottom: 5.6rem;
  }

  .gallery-lightbox__inner {
    width: min(96vw, 720px);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(92vw, 480px);
  }

  .hero__badges {
    flex-direction: column;
    gap: 1rem;
  }

  .offer-card,
  .step,
  .testimonial {
    padding: 1.6rem;
  }

  .gallery {
    padding-inline: clamp(3vw, 6vw, 4rem);
  }

  .floating-cta__text {
    display: none;
  }

  .chat-panel__sheet {
    width: 100%;
    max-height: 90vh;
  }

  .chat-launcher {
    width: calc(100% - 2.4rem);
    right: 1.2rem;
    bottom: 5.2rem;
    justify-content: center;
  }

  .gallery-lightbox__inner {
    padding: 1.2rem;
  }

  .gallery-lightbox__close {
    top: 0.8rem;
    right: 0.8rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(92vw, 480px);
  }

  .hero__badges {
    flex-direction: column;
    gap: 1rem;
  }

  .offer-card,
  .step,
  .testimonial {
    padding: 1.6rem;
  }

  .gallery {
    padding-inline: clamp(3vw, 6vw, 4rem);
  }

  .floating-cta__text {
    display: none;
  }
}
