.hero {
  min-height: clamp(520px, 80vh, 760px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(224, 176, 147, 0.15), transparent 38%),
    radial-gradient(circle at 84% 80%, rgba(165, 120, 84, 0.13), transparent 42%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 8% 2%;
  border: 1px solid rgba(198, 160, 98, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(244, 218, 194, 0.08),
    0 0 0 1px rgba(101, 67, 39, 0.2);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 12% 5%;
  border: 1px solid rgba(231, 186, 151, 0.17);
  pointer-events: none;
}

.hero-bg-plane,
.hero-vignette,
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-plane {
  z-index: -4;
  background:
    radial-gradient(circle at 28% 24%, rgba(228, 174, 153, 0.18), transparent 44%),
    linear-gradient(130deg, rgba(25, 17, 15, 0.5), rgba(9, 7, 7, 0.9));
}

.hero-vignette {
  z-index: -3;
  background:
    radial-gradient(circle at 78% 32%, rgba(223, 172, 152, 0.3), transparent 43%),
    radial-gradient(circle at 20% 82%, rgba(0, 0, 0, 0.82), transparent 58%),
    linear-gradient(175deg, rgba(6, 4, 4, 0.04) 0%, rgba(6, 4, 4, 0.8) 82%),
    linear-gradient(112deg, rgba(255, 219, 189, 0.2) 8%, rgba(37, 24, 20, 0.6) 44%, rgba(8, 6, 6, 0.92) 90%);
  filter: blur(4px);
}

.hero-noise {
  z-index: -2;
  opacity: 0.22;
  mix-blend-mode: screen;
  background:
    radial-gradient(rgba(255, 255, 255, 0.16) 0.8px, transparent 1.8px) 0 0 / 4px 4px,
    linear-gradient(115deg, transparent 0 34%, rgba(214, 151, 129, 0.34) 50%, transparent 66%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-panel {
  width: min(700px, 100%);
  text-align: center;
  padding: clamp(1.7rem, 4vw, 3.1rem);
  border: 1px solid rgba(199, 159, 97, 0.48);
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 232, 212, 0.08), transparent 52%),
    linear-gradient(158deg, rgba(21, 16, 15, 0.84), rgba(8, 6, 6, 0.8));
  box-shadow:
    0 38px 84px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(231, 192, 162, 0.16),
    0 0 55px rgba(223, 146, 138, 0.16);
  backdrop-filter: blur(4px);
  position: relative;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(236, 197, 162, 0.24);
  pointer-events: none;
}

.brand-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 10vw, 7.5rem);
  color: var(--rose-gold);
  margin: 0;
  line-height: 1;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hero-preheading {
  margin: 0.45rem 0 0;
  color: rgba(247, 221, 196, 0.9);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-variant-caps: small-caps;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(0.72rem, 1.6vw, 0.95rem);
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 7.1vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--text-light);
}

.hero-copy {
  font-size: clamp(1.02rem, 2.35vw, 1.23rem);
  max-width: 54ch;
  margin: 0 auto;
  color: var(--text-muted);
}

.hero-cta-wrap {
  margin-top: 1.65rem;
  margin-bottom: 0.35rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(245, 217, 190, 0.54);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 238, 220, 0.94);
  background: rgba(20, 12, 11, 0.55);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: rgba(241, 213, 183, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(241, 213, 183, 0.3);
  padding-bottom: 0.2rem;
}

.hero-link:hover {
  color: var(--blush-gold);
  border-bottom-color: var(--blush-gold);
}


.decor-ornament {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  isolation: isolate;
}

.decor-ornament img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: plus-lighter;
  opacity: 0.8;
  filter:
    saturate(1.08)
    brightness(0.94)
    contrast(1.05)
    drop-shadow(0 0 26px rgba(227, 171, 126, 0.2))
    drop-shadow(0 0 62px rgba(176, 106, 88, 0.2));
}

.decor-top-left {
  left: clamp(-12.8rem, -12.2vw, -5.4rem);
  top: clamp(-6.4rem, -9.8vw, -4.4rem);
  width: clamp(560px, 62vw, 1080px);
}

.decor-top-right {
  top: clamp(-8rem, -10vw, -4.8rem);
  right: clamp(-15rem, -16vw, -8rem);
  width: clamp(700px, 76vw, 1480px);
}

.decor-bottom-left {
  left: clamp(-10rem, -13vw, -6.4rem);
  bottom: clamp(-9.2rem, -8.2vw, -3.2rem);
  width: clamp(560px, 61vw, 1120px);
}

.decor-bottom-right {
  right: clamp(-11rem, -15vw, -7.8rem);
  top: clamp(16rem, -10.6vw, -5.6rem);
  width: clamp(520px, 58vw, 1040px);
}

.ornamental-divider {
  display: block;
  width: clamp(120px, 18vw, 186px);
  height: 1px;
  margin: 0.95rem auto 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(224, 184, 122, 0.82) 24%, rgba(246, 219, 181, 0.92) 50%, rgba(224, 184, 122, 0.82) 76%, transparent);
  box-shadow: 0 0 12px rgba(208, 154, 102, 0.34);
}

.section-kicker {
  color: var(--gold);
}

.welcome-grid {
  position: relative;
  z-index: 1;
}

.welcome,
.services,
.bridal,
.gallery-preview,
.testimonials,
.social-cta,
.booking-cta {
  position: relative;
}

.welcome > .container,
.services > .container,
.bridal > .container,
.gallery-preview > .container,
.testimonials > .container,
.social-cta > .container,
.booking-cta > .container {
  position: relative;
  z-index: 1;
}

.welcome::before,
.services::before,
.bridal::before,
.gallery-preview::before,
.testimonials::before,
.social-cta::before,
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.welcome::before {
  background:
    radial-gradient(circle at 12% 26%, rgba(214, 158, 133, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(16, 12, 11, 0.5), rgba(10, 8, 8, 0.28));
}

.welcome::after,
.bridal::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.24;
  background-image: linear-gradient(120deg, transparent 0 26%, rgba(224, 178, 126, 0.16) 49%, transparent 71%);
}

.services::after,
.booking-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image:
    radial-gradient(rgba(232, 184, 154, 0.14) 1px, transparent 1px),
    radial-gradient(rgba(232, 184, 154, 0.07) 1px, transparent 1px);
  background-size: 22px 22px, 44px 44px;
}

.services::after {
  background-position: top left;
}

.booking-cta::after {
  background-position: center;
  opacity: 0.07;
}

.services::before {
  background:
    linear-gradient(180deg, rgba(15, 11, 10, 0.7), rgba(8, 6, 6, 0.45)),
    radial-gradient(circle at 84% 18%, rgba(214, 168, 142, 0.09), transparent 44%);
}

.bridal::before {
  background:
    radial-gradient(circle at 72% 68%, rgba(227, 179, 158, 0.09), transparent 48%),
    linear-gradient(180deg, rgba(12, 9, 9, 0.55), rgba(11, 8, 8, 0.28));
}

.gallery-preview::before,
.testimonials::before,
.social-cta::before,
.booking-cta::before {
  background: linear-gradient(180deg, rgba(13, 10, 10, 0.55), rgba(8, 6, 6, 0.25));
}

.premium-image-frame {
  margin: 0;
  background: linear-gradient(160deg, rgba(198, 160, 98, 0.32), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(198, 160, 98, 0.65);
  padding: 0.8rem;
  box-shadow: var(--shadow-glow);
  position: relative;
}

.premium-image-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(246, 215, 186, 0.17);
  pointer-events: none;
}

.premium-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #171310;
}

.welcome-content h2 {
  font-size: clamp(2.2rem, 4.7vw, 3.8rem);
  color: var(--blush-gold);
}

.content-measure-narrow {
  max-width: 36ch;
}

.content-measure-wide {
  max-width: 58ch;
}

.welcome-content .content-measure-narrow {
  max-width: 32ch;
}

.bridal-copy-wrap .content-measure-wide {
  max-width: 52ch;
}

.social-wrap .content-measure-narrow {
  max-width: 42ch;
}

.booking-panel .content-measure-wide {
  max-width: 46ch;
}

.welcome-content .btn,
.social-wrap .btn {
  margin-top: 0.8rem;
}

.service-grid,
.gallery-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.gallery-card,
.testimonial-card,
.booking-panel {
  border: 1px solid rgba(198, 160, 98, 0.45);
  background:
    linear-gradient(165deg, rgba(22, 17, 15, 0.95), rgba(11, 8, 8, 0.9));
  box-shadow: var(--shadow-glow);
}

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: 2.1rem 1.1rem 1.35rem;
  border: 1px solid rgba(198, 160, 98, 0.56);
  background:
    linear-gradient(152deg, rgba(242, 214, 183, 0.09), rgba(242, 214, 183, 0) 42%),
    linear-gradient(168deg, rgba(19, 14, 13, 0.97), rgba(11, 8, 8, 0.91));
  box-shadow:
    12px 16px 32px rgba(0, 0, 0, 0.38),
    -8px -8px 22px rgba(246, 221, 194, 0.06),
    inset 0 0 0 1px rgba(255, 226, 198, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(236, 197, 162, 0.34);
  background: linear-gradient(170deg, rgba(255, 231, 208, 0.08), rgba(255, 231, 208, 0) 48%);
  box-shadow: inset 0 1px 0 rgba(255, 236, 219, 0.32);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: var(--blush-gold);
  box-shadow:
    18px 24px 44px rgba(0, 0, 0, 0.42),
    -10px -10px 24px rgba(246, 221, 194, 0.08);
}

.icon-placeholder {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 177, 154, 0.72);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 235, 214, 0.32), rgba(255, 235, 214, 0) 52%),
    linear-gradient(170deg, rgba(48, 33, 30, 0.9), rgba(20, 13, 12, 0.96));
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 233, 215, 0.5);
  display: grid;
  place-items: center;
  color: var(--rose-gold);
  font-size: 1.35rem;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-bottom: 0.42rem;
  transition: color 0.25s ease;
}

.service-card:hover h3 {
  color: var(--blush-gold);
}

.service-meta {
  margin: 0 0 0.7rem;
  color: var(--gold);
}

.bridal-grid {
  align-items: stretch;
}

.bridal-copy-wrap {
  border: 1px solid rgba(198, 160, 98, 0.5);
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 18% 15%, rgba(242, 212, 187, 0.07), transparent 48%),
    linear-gradient(180deg, rgba(16, 13, 12, 0.88), rgba(11, 9, 9, 0.75));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(241, 202, 169, 0.08);
}

.bridal-copy-wrap h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--blush-gold);
  line-height: 1.06;
}

.gold-corners {
  position: relative;
}

.gold-corners::before,
.gold-corners::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(215, 154, 139, 0.75);
}

.gold-corners::before {
  top: -10px;
  left: -10px;
  border-right: 0;
  border-bottom: 0;
}

.gold-corners::after {
  right: -10px;
  bottom: -10px;
  border-left: 0;
  border-top: 0;
}

.gallery-card {
  position: relative;
  overflow: hidden;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(245, 213, 183, 0.15);
  pointer-events: none;
  z-index: 1;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #171310;
  transition: transform 0.35s ease;
}

.gallery-card h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 0.9rem 0.8rem;
  font-size: 1.4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(9, 7, 7, 0), rgba(9, 7, 7, 0.78) 42%, rgba(8, 6, 6, 0.94));
  pointer-events: none;
  transition: color 0.25s ease;
}

.gallery-card:hover img {
  transform: scale(1.07);
}

.gallery-card:hover h3 {
  color: var(--blush-gold);
}

.section-cta { text-align: center; margin-top: 1.5rem; }
.section-cta { margin-bottom: 0.4rem; }

.testimonial-card {
  margin: 0;
  padding: 1.6rem;
  border-left: 1px solid rgba(231, 178, 164, 0.56);
  border-top: 1px solid rgba(198, 160, 98, 0.32);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(243, 210, 178, 0.06);
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
}

.testimonial-card cite {
  color: var(--blush-gold);
  font-size: 0.9rem;
}

.social-wrap {
  text-align: center;
  max-width: 760px;
}

.section-overlap .booking-panel {
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    var(--shadow-glow);
}

.social-wrap h2,
.booking-panel h2 {
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  line-height: 0.99;
}

.booking-panel {
  padding: clamp(1.3rem, 4vw, 2.7rem);
  text-align: center;
  position: relative;
  background:
    radial-gradient(circle at 50% -18%, rgba(255, 234, 212, 0.09), transparent 54%),
    linear-gradient(168deg, rgba(17, 13, 12, 0.95), rgba(9, 7, 7, 0.86));
}

.booking-panel::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(198, 160, 98, 0.35);
}

.booking-panel > * { position: relative; z-index: 1; }

.section-kicker,
.service-meta,
.hero-badge,
.hero-preheading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-variant-caps: small-caps;
  letter-spacing: 0.16em;
}

h2 + h3 {
  margin-top: -0.15rem;
  margin-bottom: 0.58rem;
}

h3 + p {
  margin-top: -0.1rem;
}

@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 699px) {
  .hero {
    min-height: clamp(480px, 72vh, 640px);
  }

  .hero::before {
    inset: 6% 4%;
    border-color: rgba(198, 160, 98, 0.28);
  }

  .hero::after {
    inset: 10% 7%;
    border-color: rgba(231, 186, 151, 0.12);
  }

  .hero-bg-plane {
    background:
      radial-gradient(circle at 50% 20%, rgba(228, 174, 153, 0.14), transparent 44%),
      linear-gradient(146deg, rgba(23, 16, 14, 0.48), rgba(9, 7, 7, 0.86));
  }

  .hero-vignette {
    background:
      radial-gradient(circle at 58% 22%, rgba(223, 172, 152, 0.2), transparent 45%),
      radial-gradient(circle at 24% 84%, rgba(0, 0, 0, 0.72), transparent 58%),
      linear-gradient(180deg, rgba(7, 5, 5, 0.22) 0%, rgba(7, 5, 5, 0.76) 80%);
    filter: blur(2px);
  }

  .hero-noise {
    opacity: 0.12;
  }

  .hero-layout {
    padding-inline: clamp(0.45rem, 3vw, 0.95rem);
    align-items: flex-end;
  }

  .hero-panel {
    width: min(640px, 100%);
    padding: clamp(1.2rem, 5vw, 1.75rem);
  }

  .hero-panel::after {
    inset: 7px;
  }

  .hero-copy {
    max-width: 42ch;
  }

  .service-card {
    padding: 1.75rem 1rem 1.15rem;
  }

  .service-card::before {
    inset: 7px;
    border-color: rgba(236, 197, 162, 0.26);
  }

  .icon-placeholder {
    width: 62px;
    height: 62px;
    margin-bottom: 0.85rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .booking-panel {
    padding: 1.15rem;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: clamp(450px, 68vh, 600px);
  }

  .hero::before {
    inset: 7% 6%;
    border-color: rgba(198, 160, 98, 0.2);
  }

  .hero::after {
    inset: 10% 9%;
    border-color: rgba(231, 186, 151, 0.09);
  }

  .hero-vignette {
    background:
      radial-gradient(circle at 52% 20%, rgba(223, 172, 152, 0.16), transparent 48%),
      linear-gradient(180deg, rgba(8, 6, 6, 0.2) 0%, rgba(8, 6, 6, 0.7) 84%);
  }

  .hero-noise {
    opacity: 0.08;
    mix-blend-mode: normal;
  }

  .hero-panel {
    padding: 1rem 0.9rem 1.05rem;
    box-shadow:
      0 20px 48px rgba(0, 0, 0, 0.46),
      inset 0 0 0 1px rgba(231, 192, 162, 0.12);
  }

  .hero-panel::after {
    inset: 6px;
  }

  .brand-script {
    font-size: clamp(2.35rem, 14vw, 3.2rem);
  }

  .hero h1 {
    margin-top: 0.75rem;
    font-size: clamp(1.72rem, 9.2vw, 2.32rem);
    line-height: 1.02;
  }

  .hero-preheading {
    letter-spacing: 0.14em;
  }

  .hero-copy {
    font-size: clamp(0.92rem, 3.7vw, 1rem);
    max-width: 34ch;
  }

  .hero-badge {
    margin-bottom: 0.65rem;
    padding: 0.2rem 0.56rem;
  }

  .hero-cta-wrap {
    margin-top: 1.2rem;
  }

  .welcome-content h2,
  .social-wrap h2,
  .booking-panel h2 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .service-card {
    padding: 1.55rem 0.85rem 1rem;
  }

  .service-card::before {
    inset: 6px;
    border-color: rgba(236, 197, 162, 0.2);
    background: linear-gradient(172deg, rgba(255, 231, 208, 0.05), rgba(255, 231, 208, 0) 46%);
  }

  .gallery-card h3 {
    padding: 0.85rem 0.65rem 0.7rem;
    font-size: 1.2rem;
  }

  .testimonial-card {
    padding: 1.05rem;
    border-left-width: 1px;
  }

  .booking-panel {
    padding: 0.95rem 0.8rem;
  }

  .booking-panel::before {
    inset: 7px;
  }

  .gold-corners::before,
  .gold-corners::after {
    width: 42px;
    height: 42px;
  }

  .gold-corners::before {
    top: -6px;
    left: -6px;
  }

  .gold-corners::after {
    right: -6px;
    bottom: -6px;
  }
}

@media (max-width: 360px) {
  .hero-layout {
    padding-inline: 0.4rem;
  }

  .hero-panel {
    padding-inline: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 9.8vw, 2rem);
  }

  .hero-copy {
    max-width: 30ch;
  }

  .service-card {
    padding-inline: 0.7rem;
  }

  .service-card::before {
    inset: 5px;
  }
}

@media (min-width: 900px) {
  .welcome-content .content-measure-narrow,
  .bridal-copy-wrap .content-measure-wide,
  .social-wrap .content-measure-narrow,
  .booking-panel .content-measure-wide {
    margin-inline: 0;
  }

  .welcome-content .content-measure-narrow,
  .bridal-copy-wrap .content-measure-wide,
  .booking-panel .content-measure-wide {
    text-wrap: balance;
  }

  .hero-layout {
    justify-content: flex-start;
    padding-left: clamp(1.5rem, 8vw, 6rem);
  }

  .hero-panel {
    text-align: left;
    width: min(690px, 76%);
  }

  .hero-copy {
    margin: 0;
  }

  .gallery-preview.section-overlap {
    margin-top: clamp(-2.4rem, -3vw, -1rem);
  }
}

@media (min-width: 1040px) {
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .gallery-card img,
  .service-card h3,
  .gallery-card h3 {
    transition: none;
  }

  .service-card:hover {
    transform: none;
  }

  .gallery-card:hover img {
    transform: none;
  }
}


@media (max-width: 640px) {
  .decor-ornament img {
    opacity: 0.78;
  }

  .decor-top-left {
    left: clamp(-3.1rem, -6vw, -1.2rem);
    top: clamp(-2.8rem, -5.6vw, -1rem);
    width: clamp(180px, 22vw, 340px);
  }

  .decor-top-right {
    right: clamp(-4.2rem, -8vw, -1.8rem);
    top: clamp(-3rem, -5.6vw, -1.1rem);
    width: clamp(180px, 24vw, 360px);
  }

  .decor-bottom-left {
    left: clamp(-3.6rem, -6.8vw, -1.4rem);
    bottom: clamp(-2.1rem, -4.2vw, -0.8rem);
    width: clamp(160px, 20vw, 300px);
  }

  .decor-bottom-right {
    right: clamp(-4.6rem, -8.6vw, -2rem);
    top: clamp(-3.3rem, -6vw, -1.4rem);
    width: clamp(180px, 22vw, 340px);
  }

  .ornamental-divider {
    width: 124px;
  }
}

@media (max-width: 430px) {
  .decor-ornament img {
    opacity: 0.74;
  }

  .decor-top-left {
    left: -2.75rem;
    top: -0.45rem;
    width: clamp(180px, 52vw, 300px);
  }


  .decor-top-right {
    right: -2.6rem;
    top: -0.9rem;
    width: clamp(187px, 75vw, 327px);
  }

  .decor-bottom-left {
    left: -2.25rem;
    bottom: -2rem;
    width: clamp(160px, 65vw, 270px);
  }

  .decor-bottom-right {
    right: -2.65rem;
    top: 23.9rem;
    width: clamp(170px, 65vw, 300px);
  }
}
