@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --green:       #1E341B;
  --green-mid:   #2E4A28;
  --green-light: #4a7042;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D8;
  --warm-white:  #FDFAF5;
  --text:        #1a1a18;
  --text-muted:  #6b6b62;
  --gold:        #B8955A;
  --gold-light:  #D4AF7A;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0.8rem 4rem;
}
.nav-logo img { height: 44px; width: auto; border-radius: 8px; border: 1.5px solid var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links .nav-cta {
  background: var(--green);
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--green-mid); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 5rem 6rem 8rem;
  background: var(--warm-white);
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--green);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; font-weight: 300; }
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 2.8rem;
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 1.8rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--green);
  color: var(--cream);
  padding: 1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-ghost {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--green); border-color: var(--green); }
.hero-right {
  position: relative;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, transparent 20%);
}
.hero-stats {
  position: absolute; bottom: 3rem; left: -3rem; z-index: 2;
  display: flex; gap: 0;
}
.stat-card {
  background: var(--green);
  color: var(--cream);
  padding: 1.4rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-card:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  display: block;
  line-height: 1;
  color: var(--gold-light);
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.3rem;
  display: block;
}

/* ── SECTIONS ── */
.section { padding: 7rem 8rem; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--green); color: var(--cream); }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.section-dark .section-title { color: var(--cream); }
.section-title em { font-style: italic; }
.section-intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}
.section-dark .section-intro { color: rgba(245,240,232,0.7); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--cream-dark);
}
.service-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,52,27,0.92) 0%, rgba(30,52,27,0.1) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(30,52,27,0.97) 0%, rgba(30,52,27,0.3) 60%, transparent 100%);
}
.service-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.service-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.service-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.service-card:hover .service-desc { opacity: 1; transform: translateY(0); }
.service-link {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex; align-items: center; gap: 0.5rem;
}

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.about-image {
  position: relative;
  height: 680px;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-image-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 180px; height: 180px;
  border: 1px solid var(--gold);
  border-radius: 0;
  z-index: -1;
}
.about-content {
  padding: 5rem 6rem;
}
.about-quote {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.about-list {
  list-style: none;
  margin-top: 1.5rem;
}
.about-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.about-list li::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--gold);
  margin-top: 0.75rem;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--warm-white);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── JOKER GAME SECTION ── */
.joker-section {
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}
.joker-content {
  padding: 6rem 5rem 6rem 8rem;
  display: flex; flex-direction: column; justify-content: center;
}
.joker-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.joker-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.joker-title em { font-style: italic; color: var(--gold-light); }
.joker-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,240,232,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.btn-play {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--gold);
  color: var(--green);
  padding: 1.1rem 2.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.btn-play:hover { background: var(--gold-light); transform: translateY(-2px); }
.joker-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-mid);
  overflow: hidden;
}
.joker-mockup {
  width: 200px;
  background: #1a2e18;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  position: relative; z-index: 1;
}
.joker-mockup-screen {
  background: #1E341B;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}
.joker-mockup-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 4px;
}
.joker-mockup-sub {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.joker-mockup-btn {
  background: linear-gradient(135deg, #4ECDC4, #2a9e97);
  color: #1E341B;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.joker-bg-text {
  position: absolute;
  font-family: var(--serif);
  font-size: 12rem;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  user-select: none;
  white-space: nowrap;
}

/* ── VIDEO SECTION ── */
.video-section {
  text-align: center;
  padding: 0 2rem;
}
.video-section video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  display: block;
  border: 1px solid var(--cream-dark);
  background: #000;
}

/* ── CORPORATE CARDS ── */
.corporate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.corporate-card {
  border: 1px solid var(--cream-dark);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}
.corporate-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green);
  margin-bottom: 0.8rem;
}
.corporate-card h3 em { font-style: italic; }
.corporate-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.corporate-card .btn-primary { margin-top: auto; align-self: flex-start; }

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 700px;
}
.stats-row .stat-card { flex: 1; }

/* ── WEDDING PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.process-number {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.process-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.8rem;
}
.process-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── WEDDING SERVICES ── */
.wedding-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.wedding-service-card {
  border: 1px solid var(--cream-dark);
  padding: 3rem;
}
.wedding-service-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.wedding-service-title em { font-style: italic; }
.wedding-service-timeline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.wedding-service-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── WEDDING GALLERY ── */
.wedding-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.wedding-gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
}
.wedding-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.wedding-gallery-item:hover img {
  transform: scale(1.05);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-info { padding-top: 1rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
  font-weight: 400;
}
.contact-detail-text span {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 0;
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  background: var(--cream);
  border: 1px solid var(--gold);
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  color: var(--green);
  text-align: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--green);
  color: var(--cream);
  padding: 4rem 8rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 40px; width: auto; border-radius: 8px; border: 1.5px solid rgba(245,240,232,0.6); margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.7); }
.footer-brand p {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(245,240,232,0.6);
  line-height: 1.8; max-width: 260px;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.footer-col a {
  display: block;
  font-size: 0.85rem; font-weight: 300;
  color: rgba(245,240,232,0.6);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.4);
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 10rem 8rem 5rem;
  background: var(--green);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: attr(data-title);
  position: absolute;
  font-family: var(--serif);
  font-size: 18rem;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.page-header-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.page-header-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.page-header-title em { font-style: italic; }

/* ── NAV DARK (joker page) ── */
.nav-dark .nav-links a { color: var(--cream); opacity: 0.8; }
.nav-dark .nav-links a:hover { opacity: 1; }
.nav-dark .nav-toggle span { background: var(--cream); }
.nav-dark.scrolled { background: rgba(30,52,27,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-dark.scrolled .nav-links a { color: var(--cream); opacity: 0.8; }
.nav-dark.scrolled .nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-dark.scrolled .nav-toggle span { background: var(--cream); }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--warm-white);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  padding-top: max(3.5rem, env(safe-area-inset-top, 3.5rem));
}
.mobile-menu.open { display: flex; }
.nav-dark .nav-logo img {
  border: none;
  outline: none;
  box-shadow: none;
}
.footer-brand img {
  border: none;
  outline: none;
  box-shadow: none;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--green);
}
.mobile-menu-close {
  position: absolute;
  top: max(1.5rem, env(safe-area-inset-top, 1.5rem));
  right: 1.5rem;
  font-size: 1.5rem; cursor: pointer;
  background: none; border: none; color: var(--text);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section { padding: 5rem 3rem; }
  .hero-left { padding: 8rem 3rem 5rem 4rem; }
  .about-content { padding: 3rem 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-cards { grid-template-columns: 1fr 1fr; }
  .wedding-gallery { grid-template-columns: repeat(3, 1fr); }
  .footer { padding: 3rem 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 1.5rem 3rem; }
  .hero-right { height: 50vw; }
  .hero-stats { left: 0; bottom: 0; width: 100%; }
  .stat-card { flex: 1; padding: 0.6rem 0.8rem; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.55rem; letter-spacing: 0.1em; }
  .about-split { grid-template-columns: 1fr; }
  .about-image { height: 380px; }
  .about-content { padding: 2.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .process-card { padding: 1.5rem 1rem; }
  .corporate-cards { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; align-items: center; }
  .stats-row .stat-card { width: 100%; }
  .wedding-services-grid { grid-template-columns: 1fr; gap: 2rem; }
  .wedding-service-card { padding: 2rem 1.5rem; }
  .wedding-gallery { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .joker-section { grid-template-columns: 1fr; }
  .joker-content { padding: 4rem 1.5rem; }
  .joker-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.5rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.whatsapp-float::after {
  content: 'Fala connosco no WhatsApp';
  position: absolute;
  left: 64px;
  right: auto;
  background: #25D366;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-family: var(--sans);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover::after {
  opacity: 1;
}

