:root {
  --cream: #fff8f0;
  --blush: #f9c5d1;
  --rose: #e8728a;
  --deep-rose: #c04f66;
  --gold: #e8c97a;
  --deep-gold: #c4973a;
  --lilac: #c8b4d8;
  --sage: #a8c5b0;
  --charcoal: #2d2d2d;
  --mid: #6b5b5b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ===== CONFETTI CANVAS ===== */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255, 248, 240, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 114, 138, 0.15);
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--deep-rose);
  letter-spacing: 0.02em;
}
.nav-logo span {
  color: var(--deep-gold);
  font-style: italic;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232, 114, 138, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--deep-rose);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
nav.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
nav.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
nav ul a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--deep-rose);
}

.nav-cta {
  background: var(--rose);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--deep-rose) !important;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 48px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 40%,
      rgba(249, 197, 209, 0.55) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 50% at 15% 70%,
      rgba(200, 180, 216, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 50% 100%,
      rgba(168, 197, 176, 0.3) 0%,
      transparent 60%
    ),
    var(--cream);
}

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--blush);
  top: 10%;
  right: 8%;
  animation-delay: 0s;
}
.blob-2 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}
.blob-3 {
  width: 250px;
  height: 250px;
  background: var(--lilac);
  top: 30%;
  left: 2%;
  animation-delay: 4s;
}
.blob-4 {
  width: 180px;
  height: 180px;
  background: var(--sage);
  bottom: 10%;
  left: 15%;
  animation-delay: 1s;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Decorative circles */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(232, 114, 138, 0.3);
  animation: spin 30s linear infinite;
}
.ring-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}
.ring-2 {
  width: 300px;
  height: 300px;
  bottom: 50px;
  left: 50px;
  animation-direction: reverse;
  animation-duration: 20s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Floating emojis */
.float-emoji {
  position: absolute;
  font-size: 2rem;
  animation: floatUp 6s ease-in-out infinite;
  opacity: 0.7;
}
.fe-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  font-size: 1.6rem;
}
.fe-2 {
  top: 15%;
  right: 25%;
  animation-delay: 1.5s;
  font-size: 2.2rem;
}
.fe-3 {
  bottom: 30%;
  right: 8%;
  animation-delay: 3s;
  font-size: 1.8rem;
}
.fe-4 {
  bottom: 20%;
  left: 30%;
  animation-delay: 0.8s;
  font-size: 1.4rem;
}
.fe-5 {
  top: 50%;
  left: 5%;
  animation-delay: 2.2s;
  font-size: 1.5rem;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 201, 122, 0.25);
  border: 1px solid var(--gold);
  color: var(--deep-gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--deep-rose);
  font-style: italic;
}
.hero h1 .gold-accent {
  color: var(--deep-gold);
}

.hero p {
  font-size: 1.1rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(192, 79, 102, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(192, 79, 102, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--deep-rose);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid var(--rose);
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-secondary:hover {
  background: var(--rose);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  animation: fadeInUp 1s ease both;
}
.stat:nth-child(1) {
  animation-delay: 0.2s;
}
.stat:nth-child(2) {
  animation-delay: 0.4s;
}
.stat:nth-child(3) {
  animation-delay: 0.6s;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--deep-rose);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 96px 48px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .it {
  font-style: italic;
  color: var(--deep-rose);
}
.section-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
}

/* ===== SERVICES ===== */
#services {
  background: #fff;
  position: relative;
  overflow: hidden;
}
#services::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(249, 197, 209, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1.5px solid rgba(232, 114, 138, 0.12);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(192, 79, 102, 0.12);
  border-color: rgba(232, 114, 138, 0.3);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.icon-rose {
  background: rgba(249, 197, 209, 0.5);
}
.icon-gold {
  background: rgba(232, 201, 122, 0.35);
}
.icon-lilac {
  background: rgba(200, 180, 216, 0.4);
}
.icon-sage {
  background: rgba(168, 197, 176, 0.4);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== WHY US ===== */
#why {
  background: linear-gradient(135deg, #fff0f4 0%, #fff8f0 50%, #f5f0ff 100%);
  position: relative;
  overflow: hidden;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 480px;
}

.why-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(192, 79, 102, 0.1);
}
.wc-main {
  width: 280px;
  top: 0;
  left: 0;
}
.wc-accent1 {
  width: 200px;
  top: 80px;
  right: 0;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: #fff;
}
.wc-accent2 {
  width: 220px;
  bottom: 30px;
  left: 40px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: #fff;
}

.wc-main .card-emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.wc-main h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.wc-main p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
  font-weight: 300;
}
.wc-accent1 h4,
.wc-accent2 h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.wc-accent1 p,
.wc-accent2 p {
  font-size: 0.82rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.5;
}
.wc-accent1 .num {
  font-size: 2.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.why-text .section-sub {
  margin-bottom: 40px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-list .check {
  width: 36px;
  height: 36px;
  background: rgba(232, 114, 138, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list .check-text h5 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.why-list .check-text p {
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.5;
}

/* ===== OCCASIONS ===== */
#occasions {
  background: var(--cream);
}
.occasions-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.occasions-header .section-sub {
  margin: 0 auto;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.occ-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  border: 1.5px solid rgba(232, 114, 138, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: default;
}
.occ-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(192, 79, 102, 0.1);
}
.occ-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 12px;
}
.occ-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.occ-card p {
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: linear-gradient(160deg, #2d1a20 0%, #3d1f2a 50%, #2a1f30 100%);
  color: #fff;
}

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.testimonials-header .section-tag {
  color: var(--gold);
}
.testimonials-header .section-title {
  color: #fff;
}
.testimonials-header .section-sub {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition:
    background 0.3s,
    transform 0.3s;
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.testi-name {
  font-weight: 500;
  font-size: 0.92rem;
}
.testi-event {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 2px;
}

/* ===== PACKAGES ===== */
#packages {
  background: #fff;
}
.packages-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.packages-header .section-sub {
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.pkg-card {
  border-radius: 28px;
  padding: 40px 32px;
  position: relative;
  border: 2px solid rgba(232, 114, 138, 0.15);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.pkg-card:hover {
  transform: translateY(-6px);
}

.pkg-card.featured {
  background: linear-gradient(160deg, var(--deep-rose), #9b2845);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 24px 60px rgba(192, 79, 102, 0.35);
}

.pkg-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pkg-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: inherit;
}
.pkg-card:not(.featured) .pkg-name {
  color: var(--charcoal);
}
.pkg-price {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pkg-card:not(.featured) .pkg-price {
  color: var(--deep-rose);
}
.pkg-unit {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-bottom: 24px;
  font-weight: 300;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pkg-features li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}
.pkg-features li::before {
  content: "✦";
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
}
.pkg-card:not(.featured) .pkg-features li {
  color: var(--mid);
}

.pkg-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pkg-btn-light {
  background: #fff;
  color: var(--deep-rose);
}
.pkg-btn-dark {
  background: var(--cream);
  color: var(--deep-rose);
  border: 2px solid var(--rose);
}
.pkg-btn:hover {
  transform: scale(1.03);
}

/* ===== CONTACT / BOOKING ===== */
#contact {
  background: linear-gradient(135deg, #fff0f4 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 201, 122, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info .section-sub {
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.cd-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 114, 138, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cd-text label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 2px;
}
.cd-text span,
.cd-text a {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 400;
}
.cd-text a {
  text-decoration: none;
}
.cd-text a:hover {
  text-decoration: underline;
  color: var(--deep-rose);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 114, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  border: 1px solid rgba(232, 114, 138, 0.2);
}
.social-btn:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

.contact-form {
  background: #fff;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 16px 60px rgba(192, 79, 102, 0.1);
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(232, 114, 138, 0.2);
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232, 114, 138, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: #fff;
  padding: 16px;
  border-radius: 50px;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(192, 79, 102, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 8px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(192, 79, 102, 0.45);
}
.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.88;
}
.submit-btn:disabled:hover {
  transform: none;
  box-shadow: 0 8px 24px rgba(192, 79, 102, 0.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(168, 197, 176, 0.2);
  border-radius: 16px;
  border: 1px solid var(--sage);
  margin-top: 16px;
}
.form-success.visible {
  display: block;
}
.form-success p {
  color: var(--charcoal);
  font-size: 0.95rem;
}
.form-success.error {
  background: rgba(255, 226, 226, 0.6);
  border-color: rgba(211, 86, 86, 0.35);
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 48px;
  text-align: center;
}
footer .footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
footer .footer-logo span {
  color: var(--gold);
  font-style: italic;
}
footer p {
  font-size: 0.85rem;
  line-height: 1.6;
}
footer .footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
footer .footer-links a:hover {
  color: var(--gold);
}
footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  nav ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 248, 240, 0.98);
    border: 1px solid rgba(232, 114, 138, 0.2);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(45, 45, 45, 0.12);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  nav.menu-open ul {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  nav ul a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px;
    border-radius: 10px;
  }
  .nav-cta {
    display: block;
    text-align: center;
    padding: 12px 16px;
  }
  section {
    padding: 72px 24px;
  }
  .hero {
    padding: 100px 24px 60px;
  }
  #why {
    overflow: visible;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-inner > * {
    min-width: 0;
  }
  .why-visual {
    position: relative;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .why-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .wc-accent1 .num {
    font-size: 1.85rem;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 32px 24px;
  }
  footer {
    padding: 32px 24px;
  }
}
