.elementor-6323 .elementor-element.elementor-element-a203fe5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6323 .elementor-element.elementor-element-5fc28a5{width:100%;max-width:100%;}.elementor-6323 .elementor-element.elementor-element-2868481{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6323 .elementor-element.elementor-element-b85225d{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-5fc28a5 */@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --brand-pink: #A0455C;
  --brand-green: #556B5D;
  --brand-offwhite: #F6F2ED;
  --brand-clay: #8A6A5A;
  --brand-gold: #D4AF37;
  --white: #ffffff;
  
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--brand-offwhite);
  color: var(--brand-clay);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: rgba(160, 69, 92, 0.2);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Spacing Utilities */
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pb-12 { padding-bottom: 3rem; }

/* Typography Utilities */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tight { letter-spacing: -0.025em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-none { line-height: 1; }

.text-brand-pink { color: var(--brand-pink); }
.text-brand-gold { color: var(--brand-gold); }
.text-brand-green { color: var(--brand-green); }
.text-brand-clay { color: var(--brand-clay); }
.text-white { color: var(--white); }

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-pink {
  background-color: var(--brand-pink);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(160, 69, 92, 0.1), 0 4px 6px -2px rgba(160, 69, 92, 0.05);
}

.btn-pink:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--white);
  color: var(--brand-pink);
}

.card {
  background-color: var(--white);
  border-radius: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.gold-border {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-gold), transparent);
}

.bg-paper-texture {
  background-image: url("https://www.transparenttextures.com/patterns/handmade-paper.png");
}

.bg-brand-offwhite { background-color: var(--brand-offwhite); }
.bg-white { background-color: var(--white); }
.bg-brand-pink { background-color: var(--brand-pink); }

/* Specific Sections */
.nav-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--brand-clay);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-pink);
}

.hero-image-container {
  aspect-ratio: 4/5;
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky Video */
.sticky-video {
  position: fixed !important;
  bottom: 2rem;
  right: 2rem;
  width: 320px !important;
  aspect-ratio: 16/9;
  z-index: 100;
  border-radius: 1rem !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1) !important;
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 640px) {
  .sticky-video {
    width: 200px !important;
    bottom: 1rem;
    right: 1rem;
  }
}

@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */