

:root {
  --imperial-moss: #064E3B;
  --ivory-linen: #FDFCF0;
  --burnished-gold: #A68A56;
  --deep-forest: #022C22;
  --muted-gold: #C5A021;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(6, 78, 59, 0.08);
  --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.12);
  --shadow-lg: 0 8px 32px rgba(6, 78, 59, 0.16);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--deep-forest);
  background: var(--ivory-linen);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--burnished-gold);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 300;
}

a {
  color: var(--burnished-gold);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--muted-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.c_eab7cf46 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.c_023044e9 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-smooth);
}

.c_023044e9.scrolled {
  position: fixed;
  background: rgba(253, 252, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
  transform: translateY(0);
}

.c_023044e9.hidden {
  transform: translateY(-100%);
}

.c_462a3e11 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.c_412c6503 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--burnished-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.c_412c6503:hover {
  transform: scale(1.05);
  color: var(--muted-gold);
}

.c_5136e078 {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.c_5136e078 a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.c_5136e078 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--muted-gold);
  transition: width var(--transition-fast);
}

.c_5136e078 a:hover::after {
  width: 100%;
}

.c_3f0c2374 {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  z-index: 1001;
}

.c_3f0c2374 span {
  width: 1.75rem;
  height: 2px;
  background: var(--burnished-gold);
  transition: all var(--transition-fast);
}

.c_3f0c2374.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.c_3f0c2374.active span:nth-child(2) {
  opacity: 0;
}

.c_3f0c2374.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.c_134a6caa {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.c_7983c1f4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.c_6fc50375 {
  position: relative;
  z-index: 1;
  max-width: 50%;
  animation: none;
}

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

.c_49d31efc {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--imperial-moss);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.c_134a6caa h1 {
  margin-bottom: var(--space-md);
}

.c_134a6caa p {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  color: var(--imperial-moss);
  opacity: 0.8;
}


.c_de4cb371 {
  position: relative;
  z-index: 1;
  width: 100%;
}

.c_fe0294cf {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--burnished-gold), transparent);
  height: 1px;
  opacity: 0.6;
  transform-origin: left center;
}

.c_4b1e5aff {
  top: 0;
  left: 0;
  width: 0;
  animation: heroLineExpand 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

.c_c1e04b8c {
  bottom: 0;
  left: 0;
  width: 0;
  animation: heroLineExpand 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}

@keyframes heroLineExpand {
  to { width: 120px; }
}

.c_c27fdd74 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: heroGlowIn 1.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

.c_14f94b4c {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(166, 138, 86, 0.15) 0%, transparent 70%);
  top: -10%;
  right: 10%;
}

.c_4b2c7dfd {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 78, 59, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: 0.6s;
}

.c_8fb2ce91 {
  position: absolute;
  border: 1px solid rgba(166, 138, 86, 0.2);
  border-radius: 50%;
  opacity: 0;
}

.c_458ab8f4 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 15%;
  animation: heroShapeFloat 6s ease-in-out 1s infinite;
}

.c_dc180a52 {
  width: 40px;
  height: 40px;
  bottom: 25%;
  right: 25%;
  animation: heroShapeFloat 5s ease-in-out 2s infinite;
}

.c_88edbb2f {
  width: 30px;
  height: 30px;
  top: 40%;
  left: 10%;
  animation: heroShapeFloat 7s ease-in-out 0.5s infinite;
}

@keyframes heroGlowIn {
  to { opacity: 1; }
}

@keyframes heroShapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(15px, -20px) scale(1.1); opacity: 0.7; }
}


.c_daad0deb .c_6fc50375 {
  animation: none;
}

.c_daad0deb .c_49d31efc {
  opacity: 0;
  transform: translateY(20px);
  animation: heroRevealUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

.c_daad0deb .c_134a6caa h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroRevealUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.35s forwards;
}

.c_daad0deb .c_6fc50375 > p {
  opacity: 0;
  transform: translateY(20px);
  animation: heroRevealUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

.c_daad0deb .c_6fc50375 .c_3530898d {
  opacity: 0;
  transform: translateY(20px);
  animation: heroRevealUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.65s forwards;
}

@keyframes heroRevealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c_daad0deb .c_f0add2cf {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--muted-gold), transparent);
  opacity: 0.5;
  animation: heroAccentGrow 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}

@keyframes heroAccentGrow {
  to { height: 200px; }
}


.c_7bbc0866 .c_7983c1f4 {
  opacity: 0.85;
}

.c_7bbc0866 .c_29a16173 {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(166, 138, 86, 0.06),
    transparent
  );
  animation: heroShimmer 4s ease-in-out 1s infinite;
}

@keyframes heroShimmer {
  0% { left: -50%; }
  60%, 100% { left: 150%; }
}

.c_7bbc0866 .c_6fc50375 .c_49d31efc,
.c_7bbc0866 .c_6fc50375 h1,
.c_7bbc0866 .c_6fc50375 p {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: heroClipReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.c_7bbc0866 .c_6fc50375 .c_49d31efc { animation-delay: 0.15s; }
.c_7bbc0866 .c_6fc50375 h1 { animation-delay: 0.3s; }
.c_7bbc0866 .c_6fc50375 p { animation-delay: 0.45s; }

@keyframes heroClipReveal {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}


.c_29ee2ab1 {
  background: linear-gradient(
    135deg,
    var(--ivory-linen) 0%,
    rgba(253, 252, 240, 0.97) 40%,
    rgba(166, 138, 86, 0.04) 70%,
    var(--ivory-linen) 100%
  );
  background-size: 200% 200%;
  animation: heroGradientMorph 12s ease-in-out infinite;
}

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

.c_29ee2ab1 .c_35b254c3 {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--burnished-gold);
  border-radius: 50%;
  opacity: 0.3;
}

.c_29ee2ab1 .c_3d62272d {
  top: 25%;
  left: 20%;
  animation: heroFloatDot 5s ease-in-out 0s infinite;
}

.c_29ee2ab1 .c_e6d30bc2 {
  top: 60%;
  right: 20%;
  animation: heroFloatDot 6s ease-in-out 1s infinite;
}

.c_29ee2ab1 .c_f681c20c {
  bottom: 30%;
  left: 15%;
  animation: heroFloatDot 5.5s ease-in-out 0.5s infinite;
}

@keyframes heroFloatDot {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  33% { transform: translate(10px, -15px); opacity: 0.5; }
  66% { transform: translate(-5px, 10px); opacity: 0.4; }
}

.c_29ee2ab1 .c_6fc50375 .c_49d31efc,
.c_29ee2ab1 .c_6fc50375 h1,
.c_29ee2ab1 .c_6fc50375 p {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRevealUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.c_29ee2ab1 .c_6fc50375 .c_49d31efc { animation-delay: 0.1s; }
.c_29ee2ab1 .c_6fc50375 h1 { animation-delay: 0.25s; }
.c_29ee2ab1 .c_6fc50375 p { animation-delay: 0.4s; }


.c_98232126 {
  min-height: 50vh;
}

.c_98232126 .c_7983c1f4 {
  opacity: 0.5;
}

.c_98232126 .c_dc62846b {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(166, 138, 86, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 138, 86, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  opacity: 0;
  animation: heroGridFade 1.5s ease-out 0.3s forwards;
}

@keyframes heroGridFade {
  to { opacity: 1; }
}

.c_98232126 .c_6fc50375 .c_49d31efc {
  opacity: 0;
  letter-spacing: 0.4em;
  animation: heroContactReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.1s forwards;
}

.c_98232126 .c_6fc50375 h1 {
  opacity: 0;
  animation: heroContactReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.25s forwards;
}

.c_98232126 .c_6fc50375 p {
  opacity: 0;
  animation: heroContactReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

@keyframes heroContactReveal {
  to { opacity: 1; }
}

.c_98232126 .c_d4b05d69 {
  display: inline-block;
  position: relative;
}

.c_98232126 .c_d4b05d69::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 0;
  height: 2px;
  background: var(--muted-gold);
  animation: heroUnderlineDraw 1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

@keyframes heroUnderlineDraw {
  to { width: 100%; }
}

.c_3530898d {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.c_3530898d::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width var(--transition-smooth), height var(--transition-smooth);
}

.c_3530898d:hover::before {
  width: 300px;
  height: 300px;
}

.c_1f5e29dc {
  background: var(--deep-forest);
  color: var(--ivory-linen);
}

.c_1f5e29dc:hover {
  background: var(--imperial-moss);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.c_420e79a7 {
  background: transparent;
  color: var(--burnished-gold);
  border: 2px solid var(--burnished-gold);
}

.c_420e79a7:hover {
  background: var(--burnished-gold);
  color: var(--ivory-linen);
  transform: translateY(-2px);
}

.c_b968dfe0 {
  padding: var(--space-xl) 0;
  position: relative;
}

.c_43948763 {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

.c_43948763.visible {
  opacity: 1;
  transform: translateY(0);
}

.c_356408c8 {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--imperial-moss);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.c_29bb955d {
  display: grid;
  gap: var(--space-md);
}

.c_3ca24a1a {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.c_84ec9d58 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.c_0f71a4f3 {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  transform: translateY(2rem);
}

.c_0f71a4f3.visible {
  opacity: 1;
  transform: translateY(0);
}

.c_0f71a4f3:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.c_2821e8ad {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.c_0f71a4f3:hover .c_2821e8ad {
  transform: scale(1.05);
}

.c_6e819057 {
  padding: var(--space-md);
}

.c_40103b86 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--burnished-gold);
}

.c_5923386b {
  color: var(--imperial-moss);
  margin-bottom: var(--space-sm);
}

.c_2362045c {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--muted-gold);
  margin: var(--space-sm) 0;
}

.c_42be5a34 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.c_42be5a34:nth-child(even) {
  direction: rtl;
}

.c_42be5a34:nth-child(even) > * {
  direction: ltr;
}

.c_f54acb72 {
  position: relative;
  margin-top: -5rem;
}

.c_645be780 {
  transform: skewY(-2deg);
  padding: var(--space-xl) 0;
  background: var(--imperial-moss);
  margin: var(--space-xl) 0;
}

.c_645be780 > * {
  transform: skewY(2deg);
}

.c_645be780 h2,
.c_645be780 p {
  color: var(--ivory-linen);
}

.c_867627f8 {
  margin-bottom: var(--space-md);
}

.c_c0913af8 {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--imperial-moss);
  letter-spacing: 0.05em;
}

.c_6a8fac07,
.c_93fff101 {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 2px solid rgba(6, 78, 59, 0.2);
  border-radius: var(--radius-sm);
  background: white;
  transition: all var(--transition-fast);
}

.c_6a8fac07:focus,
.c_93fff101:focus {
  outline: none;
  border-color: var(--burnished-gold);
  box-shadow: 0 0 0 3px rgba(166, 138, 86, 0.1);
}

.c_93fff101 {
  resize: vertical;
  min-height: 150px;
}

.c_5b26d6f4 {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.c_5b26d6f4 input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.c_5b26d6f4 label {
  font-size: 0.875rem;
  cursor: pointer;
}

.c_53c5ad2f {
  background: linear-gradient(135deg, var(--imperial-moss) 0%, var(--deep-forest) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.c_53c5ad2f::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: rgba(166, 138, 86, 0.05);
  transform: rotate(15deg);
}

.c_e320b4ac {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.c_e28bcbdb h2,
.c_e28bcbdb p,
.c_e28bcbdb a {
  color: var(--ivory-linen);
}

.c_e28bcbdb h2 {
  color: var(--muted-gold);
}

.c_9e3ac039 {
  margin-top: var(--space-md);
}

.c_1556bf73 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--ivory-linen);
}

.c_1556bf73 i {
  font-size: 1.25rem;
  color: var(--muted-gold);
}

.c_e14e4847 {
  background: rgba(253, 252, 240, 0.98);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.c_eb95bbb8 {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
  position: relative;
}

.c_eb95bbb8 iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.c_eb95bbb8 .c_ee41352e {
  margin: var(--space-sm) 0 0;
  font-size: 0.875rem;
  text-align: center;
}

.c_eb95bbb8 .c_ee41352e a {
  color: var(--imperial-moss);
  text-underline-offset: 0.2em;
}

.c_eb95bbb8 .c_ee41352e a:hover {
  color: var(--burnished-gold);
}

.c_ee5749b4 {
  background: var(--deep-forest);
  color: var(--ivory-linen);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.875rem;
}

.c_1e51b412 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.c_e29cd4e2 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.c_e29cd4e2 a {
  color: var(--ivory-linen);
  font-size: 0.8125rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.c_e29cd4e2 a:hover {
  opacity: 1;
}

.c_7ca86fff {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 44, 34, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.c_7ca86fff.active {
  display: flex;
  opacity: 1;
}

.c_3162602a {
  background: var(--ivory-linen);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

.c_7ca86fff.active .c_3162602a {
  transform: scale(1);
}

.c_c3669841 {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 2rem;
  color: var(--imperial-moss);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.c_c3669841:hover {
  color: var(--burnished-gold);
}

.c_c90aa94e {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.c_d6ea8f62 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  margin-bottom: var(--space-sm);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.thankyou-content {
  max-width: 600px;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--muted-gold);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .c_5136e078 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--ivory-linen);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
  }

  .c_5136e078.active {
    right: 0;
  }

  .c_3f0c2374 {
    display: flex;
  }

  .c_6fc50375 {
    max-width: 100%;
  }

  .c_8fb2ce91,
  .c_f0add2cf {
    display: none;
  }

  .c_14f94b4c,
  .c_4b2c7dfd {
    filter: blur(50px);
    opacity: 0.6;
  }

  .c_29ee2ab1 .c_35b254c3 {
    width: 6px;
    height: 6px;
  }

  .c_42be5a34,
  .c_e320b4ac {
    grid-template-columns: 1fr;
  }

  .c_42be5a34:nth-child(even) {
    direction: ltr;
  }

  .c_645be780 {
    transform: none;
  }

  .c_645be780 > * {
    transform: none;
  }

  .c_1e51b412 {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }

  .c_2821e8ad {
    height: 220px;
  }

  .c_e14e4847 {
    padding: var(--space-md);
  }
}


@media (max-width: 320px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
  }

  html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 0.875rem;
    overflow-x: hidden;
    min-width: 280px;
  }

  h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    word-wrap: break-word;
  }

  h2 {
    font-size: 1.375rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  h4 {
    font-size: 1rem;
  }

  .c_462a3e11 {
    padding: 0 0.5rem;
    min-height: 3.25rem;
  }

  .c_eab7cf46 {
    padding: 0 0.75rem;
    min-width: 0;
  }

  .c_412c6503 {
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .c_5136e078 {
    width: 85%;
    max-width: 280px;
    padding: 2rem 1rem;
  }

  .c_5136e078 a {
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .c_3f0c2374 {
    padding: 0.5rem;
  }

  .c_3f0c2374 span {
    width: 1.5rem;
  }

  .c_134a6caa {
    padding: 2.5rem 0;
    min-height: 70vh;
  }

  .c_6fc50375 {
    padding-right: 0;
  }

  .c_49d31efc {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
  }

  .c_134a6caa p {
    font-size: 0.9375rem;
  }

  .c_3530898d {
    padding: 0.75rem 1.25rem;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    min-height: 2.75rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .c_b968dfe0 {
    padding: 2rem 0;
  }

  .c_43948763 {
    margin-bottom: 1.5rem;
  }

  .c_356408c8 {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
  }

  .c_29bb955d {
    gap: 0.75rem;
  }

  .c_3ca24a1a,
  .c_84ec9d58 {
    grid-template-columns: 1fr;
  }

  .c_0f71a4f3 {
    min-width: 0;
  }

  .c_2821e8ad {
    height: 180px;
  }

  .c_6e819057 {
    padding: 0.875rem;
  }

  .c_40103b86 {
    font-size: 1.125rem;
  }

  .c_5923386b {
    font-size: 0.8125rem;
  }

  .c_2362045c {
    font-size: 1.375rem;
  }

  .c_42be5a34 {
    gap: 1.5rem;
  }

  .c_42be5a34 img {
    max-width: 100%;
    height: auto;
  }

  .c_645be780 {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .c_645be780 h2 {
    font-size: 1.25rem;
  }

  .c_ee5749b4 {
    padding: 1.25rem 0;
  }

  .c_1e51b412 {
    gap: 0.75rem;
    flex-direction: column;
    text-align: center;
  }

  .c_1e51b412 p {
    font-size: 0.75rem;
  }

  .c_e29cd4e2 {
    flex-direction: column;
    gap: 0.5rem;
  }

  .c_e29cd4e2 a {
    font-size: 0.75rem;
  }

  .c_53c5ad2f {
    padding: 2rem 0;
  }

  .c_e320b4ac {
    gap: 1.5rem;
  }

  .c_e28bcbdb h2 {
    font-size: 1.25rem;
  }

  .c_1556bf73 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .c_1556bf73 p,
  .c_1556bf73 strong {
    font-size: 0.8125rem;
  }

  .c_e14e4847 {
    padding: 1rem;
  }

  .c_e14e4847 h3 {
    font-size: 1.125rem;
  }

  .c_867627f8 {
    margin-bottom: 0.875rem;
  }

  .c_c0913af8 {
    font-size: 0.8125rem;
  }

  .c_6a8fac07,
  .c_93fff101 {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    min-height: 2.75rem;
  }

  .c_93fff101 {
    min-height: 120px;
  }

  .c_5b26d6f4 label {
    font-size: 0.75rem;
  }

  .c_eb95bbb8 {
    height: 280px;
    margin-top: 0.75rem;
  }

  .c_eb95bbb8 .c_ee41352e {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }

  .c_3162602a {
    padding: 1rem;
    width: 95%;
    max-height: 85vh;
  }

  .c_3162602a h3 {
    font-size: 1.25rem;
  }

  .c_3162602a p {
    font-size: 0.8125rem;
  }

  .c_c3669841 {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
  }

  
  .c_b968dfe0[style*="padding-top: 8rem"],
  .c_b968dfe0[style*="min-height: 100vh"] {
    padding-top: 4.5rem !important;
  }

  
  .c_b968dfe0 .c_eab7cf46 > div > div.fade-in {
    padding: 1.5rem 1rem !important;
    border-radius: 0.75rem;
    margin: 0 0.25rem;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div.fade-in > div:first-child {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 1.25rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div.fade-in > div:first-child i {
    font-size: 2rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div.fade-in h1 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div.fade-in > div[style*="width: 80px"] {
    width: 50px !important;
    margin-bottom: 1rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div.fade-in p {
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.6;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div.fade-in p:last-of-type {
    margin-bottom: 1.5rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div.fade-in > div:last-child {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div.fade-in > div:last-child .c_3530898d {
    width: 100%;
    margin: 0;
  }

  .c_b968dfe0 > div[style*="position: absolute"][style*="border-radius: 50%"]:first-of-type {
    width: 150px !important;
    height: 150px !important;
    top: 5%;
    right: -20%;
  }

  .c_b968dfe0 > div[style*="position: absolute"][style*="border-radius: 50%"]:last-of-type {
    width: 100px !important;
    height: 100px !important;
    bottom: 10%;
    left: -15%;
  }

  
  .c_b968dfe0 .c_eab7cf46 > div > div:first-child:not(:only-child) {
    margin-bottom: 2rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:first-child:not(:only-child) > div {
    padding: 0.375rem 1rem !important;
    border-radius: 1.5rem;
    margin-bottom: 1rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:first-child:not(:only-child) p {
    font-size: 0.6875rem !important;
    letter-spacing: 0.1em;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:first-child:not(:only-child) h1 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:first-child:not(:only-child) p:last-child {
    font-size: 0.8125rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) {
    padding: 1rem !important;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div[style*="border-left"] {
    padding-left: 1rem !important;
    margin-bottom: 1.5rem !important;
    border-left-width: 3px !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div[style*="border-left"] p {
    font-size: 0.875rem !important;
    line-height: 1.65;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) h2 {
    font-size: 1.0625rem !important;
    margin: 1.5rem 0 0.75rem !important;
    padding-top: 1.25rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) p {
    font-size: 0.8125rem !important;
    line-height: 1.65;
    margin-bottom: 0.75rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) ul,
  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) ol {
    margin-left: 1.25rem;
    padding-right: 0.25rem;
    font-size: 0.8125rem;
    line-height: 1.7;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) li {
    margin-bottom: 0.5rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) a {
    word-break: break-word;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div[style*="grid-template-columns"] > div {
    padding: 1rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div[style*="grid-template-columns"] h3 {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div[style*="grid-template-columns"] p {
    font-size: 0.8125rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div[style*="width: 60px"] {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 1rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div[style*="width: 60px"] i {
    font-size: 1.25rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div:last-child {
    margin-top: 1.5rem !important;
    padding: 1rem !important;
    border-radius: 0.5rem;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div:last-child h3 {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div:last-child p {
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.6;
  }

  .c_b968dfe0 .c_eab7cf46 > div > div:nth-child(2) > div:last-child a {
    font-size: 0.75rem;
    word-break: break-all;
  }
}

.c_f2a73ca2 {
  animation: fadeIn var(--transition-smooth) ease-out;
}

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

.c_80997a1e {
  animation: slideInLeft var(--transition-luxury) ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.c_ca69d3d8 {
  animation: slideInRight var(--transition-luxury) ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.c_f3234b27 {
  animation: scaleIn var(--transition-smooth) ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.c_61143e53 {
  animation: rotateIn var(--transition-luxury) ease-out;
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}
