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

:root {
  --font-sans: 'Inter', 'Segoe UI', sans-serif;
  --primary: #8d6672;
  --primary-light: #c95578;
  --primary-soft: #FBF8F5;
  --primary-hover: #6A0F2B;
  --accent: #9b8b6d;
  --accent-soft: #F4F0EB;
  --dark2: #dad1c1;
  --dark3: #F4F0EB;
  --background: #FCFBF9;
  --section: #c2b09b;
  --surface: #FFFFFF;
  --surface-soft: #F4F0EB;
  --heading: #306192;
  --text: #4A4A4A;
  --text-muted: #5C524D;
  --border: #E8DFD7;
  --shadow: rgba(136, 41, 70, 0.08);
  --shadow-lg: rgba(138, 21, 56, 0.15);
  --site-gutter: clamp(18px, 5vw, 64px);
  --site-max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: #FCFBF9;
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

body > main,
body > section,
body > footer,
body > nav {
  min-width: 0;
}

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

img {
  max-width: 100%;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content,
.service-card,
.why-card,
.package-card,
.testimonial-card,
.gallery-item,
.value-card,
.contact-item,
.step {
  animation: fadeInUp 0.9s ease-out both;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(252, 251, 249, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #E8DFD7;
  padding: 0 var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  box-shadow: 0 2px 8px rgba(138, 21, 56, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: logo-spin-in 0.8s cubic-bezier(.22,1,.36,1) both;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}

.logo-icon svg {
  width: 54px;
  height: auto;
}

.logo:hover .logo-icon { transform: scale(1.05); }

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: logo-slide-in 0.7s cubic-bezier(.22,1,.36,1) 0.15s both;
  border-left: 1.5px solid #E8DFD7;
  padding-left: 16px;
}

.logo-line1 {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  color: #1A1D20;
}

.logo-gm   { color: #8A1538; }
.logo-dot  { color: #C5A059; font-size: 0.85rem; margin: 0 3px; }
.logo-event { color: #8A1538; }

.logo-line2 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1A1D20;
  line-height: 1;
}

.logo-sub {
  font-size: 0.5rem;
  font-weight: 600;
  color: #C5A059;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.logo-em { display: none; }

@keyframes logo-spin-in {
  from { opacity: 0; transform: scale(0.6) rotate(-15deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes logo-slide-in {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: none; }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links > li > a {
  font-size: 0.9rem;
  color: #4A4A4A;
  transition: color 0.3s;
  letter-spacing: 0.3px;
  font-weight: 500;
  position: relative;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8A1538, #C5A059);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links > li > a:hover {
  color: #8A1538;
}

.nav-links > li > a:hover::after {
  width: 100%;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #E8DFD7;
  min-width: 210px;
  padding: 10px 0;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.nav-links .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.85rem;
  color: #4A4A4A;
  transition: all 0.25s;
}

.nav-links .dropdown-menu a:hover {
  background: #F4F0EB;
  color: #8A1538;
  padding-left: 26px;
}

.btn-book-nav {
  background: #1A1D20;
  color: #FCFBF9 !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem !important;
  transition: background 0.3s, box-shadow 0.3s !important;
  box-shadow: 0 10px 24px rgba(138, 21, 56, 0.12);
}

.btn-book-nav:hover {
  background: #8A1538;
  box-shadow: 0 16px 32px rgba(138, 21, 56, 0.2);
  color: #FCFBF9 !important;
}

.btn-book-nav::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background: #8A1538;
  border-radius: 3px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(10, 8, 5, 0.62) 0%, rgba(10, 8, 5, 0.50) 100%),
    url('https://images.unsplash.com/photo-1670529776180-60e4132ab90c?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px var(--site-gutter) 90px;
  position: relative;
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(197, 160, 89, 0.7);
  color: #fff;
  padding: 11px 34px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  border-radius: 999px;
  background: rgba(138, 21, 56, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: heroBadgeFloat 3s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0px); box-shadow: 0 4px 16px rgba(197, 160, 89, 0.15); }
  50% { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(197, 160, 89, 0.25); }
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.05em;
  color: #fff;
}

.hero h1 span {
  background: linear-gradient(90deg, #C5A059, #E8DFD7, #C5A059);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease infinite;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-size: 1.15rem;
  color: #C5A059;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  animation: heroTextEnter 0.7s cubic-bezier(.22,1,.36,1) 0.45s both;
}

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

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

/* ===== BUTTONS ===== */
.btn-primary {
  background: #1A1D20;
  color: #FCFBF9;
  padding: 15px 36px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 16px 40px var(--shadow);
}

.btn-primary:hover {
  background: #8A1538;
  box-shadow: 0 22px 50px var(--shadow-lg);
  transform: none;
}

.btn-outline {
  border: 1.5px solid #C5A059;
  color: #1A1D20 !important;
  padding: 13px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  background: transparent;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 999px;
  display: inline-block;
}

.btn-outline:hover {
  background: #C5A059;
  color: #FCFBF9;
  transform: none;
  box-shadow: 0 10px 24px rgba(138, 21, 56, 0.15);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 14px 34px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 16px 38px rgba(18, 140, 126, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(18, 140, 126, 0.4);
}

/* ===== SECTION DIVIDERS ===== */
section {
  padding: 90px var(--site-gutter);
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  color: #8A1538;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  color: #1A1D20;
}

.section-header p {
  color: #4A4A4A;
  max-width: 600px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #8A1538, #C5A059);
  border-radius: 4px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: var(--site-max);
  margin: 0 auto;
  justify-items: stretch;
}

.services-grid > *:last-child:nth-child(3n - 1) {
  grid-column: 2 / 3;
}
.services-grid > *:last-child:nth-child(3n - 2) {
  grid-column: 2 / 3;
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid #E8DFD7;
  padding: 36px 30px;
  border-radius: 20px;
  transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: default;
}

.service-card:hover {
  border-color: #C5A059;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(138, 21, 56, 0.10);
  background: #fff;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: #F4F0EB;
  border: 1px solid #E8DFD7;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.service-card:hover .service-icon {
  background: #C5A059;
  border-color: #C5A059;
  transform: none;
}

.service-icon i {
  font-size: 1.6rem;
  color: #8A1538;
  transition: color 0.35s ease;
}

.service-card:hover .service-icon i {
  color: #FCFBF9;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #1A1D20;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  color: #4A4A4A;
  font-size: 0.9rem;
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.why-grid > *:last-child:nth-child(3n - 1) {
  grid-column: 2 / 3;
}
.why-grid > *:last-child:nth-child(3n - 2) {
  grid-column: 2 / 3;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  text-align: center;
  padding: 38px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #E8DFD7;
  transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s ease, border-color 0.3s, background 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.why-card:hover {
  border-color: #C5A059;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(138, 21, 56, 0.10);
  background: #fff;
}

.why-icon {
  width: 60px;
  height: 60px;
  background: #F4F0EB;
  border: 1px solid #E8DFD7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: #C5A059;
  border-color: #C5A059;
  transform: none;
}

.why-icon i {
  font-size: 1.4rem;
  color: #8A1538;
  transition: color 0.3s;
}

.why-card:hover .why-icon i {
  color: #FCFBF9;
}

.why-card h3 {
  color: #1A1D20;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.why-card p {
  color: #4A4A4A;
  font-size: 0.85rem;
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.process-steps > *:last-child:nth-child(3n - 1) {
  grid-column: 2 / 3;
}
.process-steps > *:last-child:nth-child(3n - 2) {
  grid-column: 2 / 3;
}

@media (max-width: 768px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

.step {
  text-align: center;
  padding: 32px 22px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #E8DFD7;
  transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s ease, border-color 0.3s, background 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(138, 21, 56, 0.10);
  border-color: #C5A059;
  background: #fff;
}

.step-num {
  width: 60px;
  height: 60px;
  border: 2px solid #C5A059;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #8A1538;
  background: #FCFBF9;
  transition: all 0.3s;
}

.step:hover .step-num {
  background: #C5A059;
  color: #FCFBF9;
  border-color: #C5A059;
}

.step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #1A1D20;
  font-weight: 700;
}

.step p {
  font-size: 0.82rem;
  color: #4A4A4A;
}

/* ===== PACKAGES ===== */
.packages-section { background: #FCFBF9; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 10px;
}

@media (max-width: 700px) { .packages-grid { grid-template-columns: 1fr; } }

.package-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #F4F0EB;
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.36s cubic-bezier(.22,1,.36,1), box-shadow 0.36s ease, border-color 0.3s;
  position: relative;
}

.package-card:not(.featured):hover {
  transform: translateY(-6px);
  border-color: #C5A059;
  box-shadow: 0 16px 40px rgba(138, 21, 56, 0.10);
}



/* left icon column */
.pkg-icon {
  grid-column: 1;
  grid-row: 1 / 4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 0 0;
  background: #F4F0EB;
  border-right: 1px solid #E8DFD7;
}

.pkg-icon i {
  font-size: 1.6rem;
  color: #8A1538;
  transition: transform 0.35s ease;
}

.package-card:hover .pkg-icon i { transform: scale(1.15) rotate(-8deg); }

/* right content */
.pkg-header {
  grid-column: 2;
  padding: 22px 24px 12px;
  border-bottom: 1px solid var(--border);
}

.pkg-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1D20;
  margin-bottom: 4px;
}

.pkg-header .pkg-desc {
  font-size: 0.82rem;
  color: #4A4A4A;
  line-height: 1.5;
  margin: 0;
}

.pkg-body {
  grid-column: 2;
  padding: 14px 24px;
}

.pkg-body ul {
  list-style: none;
  margin: 0;
}

.pkg-body ul li {
  padding: 5px 0;
  font-size: 0.83rem;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pkg-body ul li i {
  font-size: 0.6rem;
  color: #8A1538;
  flex-shrink: 0;
}

.pkg-footer {
  grid-column: 2;
  padding: 14px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
}

.pkg-price {
  color: #8A1538;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pkg-btn {
  padding: 9px 22px;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* FEATURED */
.package-card.featured {
  background: #8A1538;
  border-color: #8A1538;
  box-shadow: 0 10px 40px rgba(138, 21, 56, 0.2);
}

.package-card.featured:hover {
  transform: none;
  box-shadow: 0 10px 40px rgba(138, 21, 56, 0.2);
}

.package-card.featured .pkg-icon {
  background: rgba(255,255,255,0.1);
  border-right-color: rgba(255,255,255,0.15);
}

.package-card.featured .pkg-icon i { color: #C5A059; }

.package-card.featured .pkg-header {
  border-bottom-color: rgba(255,255,255,0.12);
}

.package-card.featured .pkg-header h3 { color: #fff; }
.package-card.featured .pkg-header .pkg-desc { color: rgba(255,255,255,0.8); }

.package-card.featured .pkg-body ul li { color: rgba(255,255,255,0.9); }
.package-card.featured .pkg-body ul li i { color: #C5A059; }

.package-card.featured .pkg-footer { border-top-color: rgba(255,255,255,0.12); }
.package-card.featured .pkg-price { color: #C5A059; }

.featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #C5A059;
  color: #FCFBF9;
  padding: 4px 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.3);
  white-space: nowrap;
}

.pkg-note {
  max-width: 800px;
  margin: 44px auto 0;
  background: #F4F0EB;
  border: 1px solid #E8DFD7;
  border-left: 4px solid #C5A059;
  padding: 20px 26px;
  border-radius: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pkg-note-icon {
  color: #8A1538;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-note p {
  color: #4A4A4A;
  font-size: 0.87rem;
  line-height: 1.8;
  margin: 0;
}

.pkg-note strong { color: #8A1538; }

/* ===== TESTIMONIALS ===== */
.feedback-section .section-header h2 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.feedback-section .section-label {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.feedback-section .testimonial-card p {
  color: #303136 !important;
  font-style: italic;
}

.feedback-section .testimonial-card .client {
  color: #7e1738 !important;
}

.feedback-section .stars {
  color: #b0832f;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #E8DFD7;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s ease, border-color 0.3s;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 24px;
  font-size: 5rem;
  color: #E8DFD7;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(138, 21, 56, 0.10);
  border-color: #C5A059;
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
}

.testimonial-card p {
  color: #4A4A4A;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95rem;
  position: relative;
}

.testimonial-card .client {
  color: #8A1538;
  font-weight: 700;
  font-size: 0.9rem;
}

.stars {
  color: #C5A059;
}

/* ===== PHOTOBOOTH CARDS ===== */
.pb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.pb-grid > *:last-child:nth-child(3n - 1) {
  grid-column: 2 / 3;
}
.pb-grid > *:last-child:nth-child(3n - 2) {
  grid-column: 2 / 3;
}

@media (max-width: 768px) { .pb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pb-grid { grid-template-columns: 1fr; } }

.pb-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(197,160,89,0.30);
  border-radius: 20px;
  padding: 34px 24px 28px;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.38s cubic-bezier(.22,1,.36,1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.38s ease;
}

.pb-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,160,89,0.10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}

.pb-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255,255,255,0.13);
  border-color: rgba(197,160,89,0.70);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(197,160,89,0.20);
}

.pb-card:hover::before { opacity: 1; }

.pb-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(197,160,89,0.15);
  border: 1.5px solid rgba(197,160,89,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(.34,1.56,.64,1);
}

.pb-card:hover .pb-icon {
  background: #C5A059;
  border-color: #C5A059;
  transform: scale(1.15) rotate(-6deg);
}

.pb-icon i {
  font-size: 1.5rem;
  color: #C5A059;
  transition: color 0.3s;
}

.pb-card:hover .pb-icon i { color: #1A1D20; }

.pb-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.pb-card p {
  color: rgba(255,255,255,0.70);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #F4F0EB;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  margin-bottom: 16px;
  padding: 22px 26px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  border-color: #F4F0EB;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1D20;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #8A1538;
}

.faq-question span {
  color: #C5A059;
  font-size: 1.4rem;
  transition: transform 0.3s;
  font-weight: 400;
}

.faq-answer {
  display: none;
  padding-top: 15px;
  color: #4A4A4A;
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px dashed #E8DFD7;
  margin-top: 12px;
}

.faq-item.active {
  border-color: #F4F0EB;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: #C5A059;
}

/* ===== CONTACT ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.contact-info h3 {
  color: #1A1D20;
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 800;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: #F4F0EB;
  border: 1px solid #E8DFD7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-item:hover .icon {
  background: #C5A059;
  border-color: #C5A059;
}

.contact-item .icon i {
  font-size: 1rem;
  color: #8A1538;
  transition: color 0.3s;
}

.contact-item:hover .icon i {
  color: #FCFBF9;
}

.contact-item h4 {
  font-size: 0.82rem;
  color: #5C524D;
  margin-bottom: 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-item p, .contact-item a {
  color: #4A4A4A;
  font-size: 0.9rem;
}

.contact-item a:hover {
  color: #8A1538;
}

/* ===== FORM ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-group label {
  font-size: 0.82rem;
  color: #4A4A4A;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #FCFBF9;
  border: 1px solid #E8DFD7;
  color: #1A1D20;
  padding: 12px 15px;
  font-size: 0.9rem;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #8A1538;
  box-shadow: 0 0 0 4px rgba(138, 21, 56, 0.08);
}

.form-group select option {
  background: #FCFBF9;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input[type="checkbox"] {
  width: auto;
  accent-color: var(--accent);
}

/* ===== GALLERY ===== */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border: 1px solid #E8DFD7;
  background: transparent;
  color: #4A4A4A;
  cursor: pointer;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: all 0.3s;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: #8A1538;
  color: #FCFBF9;
  border-color: #8A1538;
  box-shadow: 0 10px 24px rgba(138, 21, 56, 0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  background: #fff;
  border: 1px solid #F4F0EB;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #4A4A4A;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,29,32,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover {
  border-color: #F4F0EB;
  transform: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.gallery-placeholder {
  text-align: center;
  padding: 20px;
}

.gallery-placeholder .g-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #F4F0EB;
  border: 1px solid #E8DFD7;
  border-radius: 50%;
  margin: 0 auto 12px;
  transition: all 0.3s;
}

.gallery-item:hover .g-icon {
  background: #C5A059;
  border-color: #C5A059;
}

.gallery-item:hover .g-icon i {
  color: #FCFBF9;
}

.gallery-placeholder .g-icon i {
  font-size: 1.6rem;
  color: #8A1538;
  transition: color 0.3s;
}

.gallery-placeholder p {
  color: #4A4A4A;
  font-size: 0.8rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 150px var(--site-gutter) 80px;
  text-align: center;
  background: linear-gradient(150deg, #FCFBF9 0%, #F4F0EB 50%, #FCFBF9 100%);
  border-bottom: 1px solid #E8DFD7;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.page-hero h1 span {
  background: linear-gradient(90deg, #8A1538, #C5A059);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  color: #4A4A4A;
  max-width: 600px;
  margin: 0 auto;
}

/* Page hero copy enters in sequence instead of appearing as fixed content. */
.page-hero .section-label {
  animation: heroTextEnter 0.55s cubic-bezier(.22,1,.36,1) 0.12s both;
}

.page-hero h1 {
  animation: heroTextEnter 0.7s cubic-bezier(.22,1,.36,1) 0.25s both;
}

.page-hero p,
.page-hero p.text-reveal-line {
  animation: heroTextEnter 0.7s cubic-bezier(.22,1,.36,1) 0.42s both;
}

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: var(--site-max);
  margin: 0 auto;
}

@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: #fff;
  border: 1px solid #E8DFD7;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s ease, border-color 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
  border-color: #C5A059;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(138, 21, 56, 0.10);
}

.value-card .v-icon {
  width: 56px;
  height: 56px;
  background: #F4F0EB;
  border: 1px solid #E8DFD7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s;
}

.value-card:hover .v-icon {
  background: #C5A059;
  border-color: #C5A059;
}

.value-card .v-icon i {
  font-size: 1.3rem;
  color: #8A1538;
  transition: color 0.3s;
}

.value-card:hover .v-icon i {
  color: #FCFBF9;
}

.value-card h3 {
  color: #1A1D20;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.value-card p {
  color: #4A4A4A;
  font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(150deg, #F4F0EB 0%, #FCFBF9 100%);
  text-align: center;
  border-top: 1px solid #E8DFD7;
  border-bottom: 1px solid #E8DFD7;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
  font-weight: 800;
  color: #1A1D20;
}

.cta-section h2 span {
  background: linear-gradient(90deg, #8A1538, #C5A059);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-section p {
  color: #4A4A4A;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(160deg, #2A2A2E, #1F1F23);
  padding: 60px var(--site-gutter) 30px;
  border-top: 3px solid #8A1538;
  color: #C5A059;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo .logo-em::after {
  background: linear-gradient(90deg, #8A1538, #C5A059);
}

.footer-brand .logo-icon circle {
  animation: none;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}

.footer-brand p {
  color: #C5A059;
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-social-block {
  margin-top: 22px;
  max-width: 430px;
}

.footer-social-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-social-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #C5A059;
}

.footer-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-btn {
  min-height: 42px;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
}

.social-btn i {
  width: 18px;
  text-align: center;
  color: #C5A059;
  font-size: 0.95rem;
}

.social-btn span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-btn:hover {
  background: rgba(138, 21, 56, 0.72);
  border-color: rgba(197, 160, 89, 0.72);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #C5A059;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #C5A059;
  font-size: 0.85rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
  color: #FCFBF9;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: #C5A059;
  font-size: 0.8rem;
}

.footer-bottom span {
  color: #C5A059;
}

/* ===== SUCCESS MSG ===== */
.success-msg {
  display: none;
  background: #F4F0EB;
  border: 1px solid #C5A059;
  color: #8A1538;
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-social {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(31, 138, 112, 0.1);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-social-block {
    max-width: 100%;
  }
  .footer-social {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-social {
    grid-template-columns: 1fr;
  }
  .hero-btns, .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ===== SHARED PREMIUM CARD TREATMENT ===== */
.service-card,
.why-card,
.step,
.package-card,
.testimonial-card,
.pb-card,
.faq-item,
.gallery-item,
.value-card {
  border-radius: 6px;
  border-color: #DED4C9;
}

.service-card,
.why-card,
.step,
.package-card,
.testimonial-card,
.gallery-item,
.value-card {
  box-shadow: 0 5px 18px rgba(26, 29, 32, 0.06);
}

.service-icon {
  border-radius: 8px;
}

/* ===== BOOKING PROCESS TIMELINE ===== */
.booking-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 70px;
}

.booking-timeline::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 10%;
  right: 10%;
  height: 3px;
  z-index: 0;
  background: linear-gradient(90deg, #8A1538, #C5A059, #8A1538, #C5A059, #8A1538);
  background-size: 250% 100%;
  animation: bookingLineFlow 4s linear infinite;
}

.booking-timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.booking-timeline-marker {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border: 2px solid #C5A059;
  border-radius: 50%;
  background: #FCFBF9;
  color: #8A1538;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 0 0 7px #F4F0EB;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: bookingNodePulse 2.8s ease-in-out var(--timeline-delay) infinite;
}

.booking-timeline-step:nth-child(1) { --timeline-delay: 0s; }
.booking-timeline-step:nth-child(2) { --timeline-delay: 0.28s; }
.booking-timeline-step:nth-child(3) { --timeline-delay: 0.56s; }
.booking-timeline-step:nth-child(4) { --timeline-delay: 0.84s; }
.booking-timeline-step:nth-child(5) { --timeline-delay: 1.12s; }

.booking-timeline-content h3 {
  margin-bottom: 8px;
  color: #1A1D20;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.booking-timeline-content p {
  margin: 0;
  color: #5C524D;
  font-size: 0.81rem;
  line-height: 1.65;
}

.booking-timeline-step:hover .booking-timeline-marker {
  background: #8A1538;
  border-color: #8A1538;
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 0 0 9px rgba(197,160,89,0.2), 0 10px 22px rgba(138,21,56,0.2);
  animation-play-state: paused;
}

@keyframes bookingLineFlow {
  to { background-position: 250% 0; }
}

@keyframes bookingNodePulse {
  0%, 100% { box-shadow: 0 0 0 7px #F4F0EB; }
  50% { box-shadow: 0 0 0 11px rgba(197,160,89,0.22); }
}

@media (max-width: 760px) {
  .booking-timeline {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0 22px;
  }

  .booking-timeline::before {
    top: 32px;
    bottom: 32px;
    left: 31px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, #8A1538, #C5A059, #8A1538, #C5A059, #8A1538);
    background-size: 100% 250%;
    animation-name: bookingLineFlowVertical;
  }

  .booking-timeline-step {
    display: contents;
  }

  .booking-timeline-marker {
    grid-column: 1;
    margin: 0;
    align-self: start;
  }

  .booking-timeline-content {
    grid-column: 2;
    padding: 6px 0 34px;
    text-align: left;
  }

  .booking-timeline-step:last-child .booking-timeline-content { padding-bottom: 0; }
}

@keyframes bookingLineFlowVertical {
  to { background-position: 0 250%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tagline,
  .page-hero .section-label,
  .page-hero h1,
  .page-hero p,
  .page-hero p.text-reveal-line {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .booking-timeline::before,
  .booking-timeline-marker {
    animation: none;
  }

  .booking-timeline::before { background-position: 0 0; }
}

/* ===== CONTACT PAGE REFINEMENT ===== */
.contact-page .contact-section {
  background: linear-gradient(180deg, #FCFBF9 0%, #F8F4EF 100%);
  padding:64px var(--site-gutter) 56px;
}

.contact-page .contact-wrapper {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.contact-page .contact-panel,
.contact-page .contact-form-panel {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(138,21,56,0.52);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(26,29,32,0.07);
}

.contact-page .contact-info h3,
.contact-page .contact-form-panel h3 {
  margin-bottom: 10px;
  color: #1A1D20;
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-page .contact-form-panel > p {
  margin: 0 0 20px;
  color: #5C524D;
  font-size: 0.9rem;
}

.contact-page .contact-items-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  column-gap:22px;
  border-top:1px solid rgba(138,21,56,.18);
}

.contact-page .contact-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(138,21,56,.14);
  min-width:0;
}

.contact-page .contact-item .icon {
  border-radius: 6px;
  width: 38px;
  height: 38px;
  border-color:rgba(138,21,56,.32);
}

.contact-page .contact-item h4 {
  margin-bottom: 3px;
  font-size:.72rem;
}

.contact-page .contact-item p,
.contact-page .contact-item a {
  font-size: clamp(.78rem, .92vw, .88rem);
  line-height:1.55;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-page .contact-item a {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-page .contact-item-email a,
.contact-page .contact-item-website a {
  font-size: clamp(.76rem, .84vw, .84rem);
}

.contact-page .contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.contact-page .contact-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  text-align: center;
  font-size: 0.78rem;
}

.contact-page .contact-social-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(138,21,56,.14);
}

.contact-page .contact-social-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #8A1538;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.contact-page .contact-social-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #C5A059;
}

.contact-page .contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-page .contact-social-grid a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(138,21,56,.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(252,251,247,.92), rgba(242,237,229,.72));
  color: #514742;
  font-size: clamp(.72rem, .78vw, .78rem);
  font-weight: 800;
  text-decoration: none;
  transition: border-color .28s ease, background .28s ease, color .28s ease, transform .28s ease;
}

.contact-page .contact-social-grid a i {
  width: 18px;
  flex: 0 0 18px;
  color: #8A1538;
  text-align: center;
  font-size: .95rem;
}

.contact-page .contact-social-grid a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-page .contact-social-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(197,160,89,.65);
  background: #8A1538;
  color: #fff;
}

.contact-page .contact-social-grid a:hover i {
  color: #C5A059;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
  border-radius: 6px;
  background: #fff;
  border-color:rgba(138,21,56,.36);
}

.contact-page .form-grid { gap:12px; }
.contact-page .form-group textarea { min-height:92px; }

.contact-map-section {
  padding: 0 0 60px;
  border-bottom: 0;
  background: #FCFBF9;
}

.location-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 50px var(--site-gutter) 30px;
}

.contact-map-content {
  padding: 0 var(--site-gutter);
}

.contact-map-frame {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #DED4C9;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(26,29,32,0.07);
}

.contact-map-details {
  max-width: 1100px;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .contact-page .contact-wrapper { grid-template-columns: 1fr; }
  .contact-page .contact-items-grid { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .contact-page .contact-item-email,
  .contact-page .contact-item-website,
  .contact-page .contact-item-hours { grid-column: span 2; }
  .contact-page .contact-item-email a,
  .contact-page .contact-item-website a { white-space: nowrap; }
}

@media (max-width: 720px) {
  .contact-page .contact-items-grid { grid-template-columns:1fr; }
  .contact-page .contact-social-grid { grid-template-columns: 1fr; }
  .contact-page .contact-item-email,
  .contact-page .contact-item-website,
  .contact-page .contact-item-hours { grid-column: auto; }
  .contact-page .contact-item p,
  .contact-page .contact-item a { font-size: .92rem; }
  .contact-page .contact-item-email a,
  .contact-page .contact-item-website a { white-space: normal; }
}

@media (max-width: 560px) {
  .contact-page .contact-panel,
  .contact-page .contact-form-panel { padding: 28px 22px; }
  .contact-page .contact-actions { grid-template-columns: 1fr; }
  .location-divider { padding-top: 36px; }
  .location-divider > div:first-child,
  .location-divider > div:last-child { display: none; }
}
