

: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_8056777a {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.c_95b71776.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_95b71776.hidden {
  transform: translateY(-100%);
}

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

.c_c91d2df4 {
  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_c91d2df4:hover {
  transform: scale(1.05);
  color: var(--muted-gold);
}

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

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

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

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

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

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

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

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

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

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

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

.c_30af0a59 {
  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_623154f7 {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--imperial-moss);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

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

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


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

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

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

.c_aef471c5 {
  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_9297b5de {
  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_7316d4c1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(166, 138, 86, 0.15) 0%, transparent 70%);
  top: -10%;
  right: 10%;
}

.c_a9f3e344 {
  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_11d6131d {
  position: absolute;
  border: 1px solid rgba(166, 138, 86, 0.2);
  border-radius: 50%;
  opacity: 0;
}

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

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

.c_75d34b8c {
  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_1674fe25 .c_30af0a59 {
  animation: none;
}

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

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

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

.c_1674fe25 .c_30af0a59 .c_297c2441 {
  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_1674fe25 .c_46d243d7 {
  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_74db9c41 .c_9a5d16ec {
  opacity: 0.85;
}

.c_74db9c41 .c_e45bee61 {
  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_74db9c41 .c_30af0a59 .c_623154f7,
.c_74db9c41 .c_30af0a59 h1,
.c_74db9c41 .c_30af0a59 p {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: heroClipReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.c_74db9c41 .c_30af0a59 .c_623154f7 { animation-delay: 0.15s; }
.c_74db9c41 .c_30af0a59 h1 { animation-delay: 0.3s; }
.c_74db9c41 .c_30af0a59 p { animation-delay: 0.45s; }

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


.c_3a31fcd1 {
  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_3a31fcd1 .c_2ffb899b {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--burnished-gold);
  border-radius: 50%;
  opacity: 0.3;
}

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

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

.c_3a31fcd1 .c_5acb31e0 {
  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_3a31fcd1 .c_30af0a59 .c_623154f7,
.c_3a31fcd1 .c_30af0a59 h1,
.c_3a31fcd1 .c_30af0a59 p {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRevealUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.c_3a31fcd1 .c_30af0a59 .c_623154f7 { animation-delay: 0.1s; }
.c_3a31fcd1 .c_30af0a59 h1 { animation-delay: 0.25s; }
.c_3a31fcd1 .c_30af0a59 p { animation-delay: 0.4s; }


.c_61cb1d94 {
  min-height: 50vh;
}

.c_61cb1d94 .c_9a5d16ec {
  opacity: 0.5;
}

.c_61cb1d94 .c_992b66c5 {
  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_61cb1d94 .c_30af0a59 .c_623154f7 {
  opacity: 0;
  letter-spacing: 0.4em;
  animation: heroContactReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.1s forwards;
}

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

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

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

.c_61cb1d94 .c_928a4233 {
  display: inline-block;
  position: relative;
}

.c_61cb1d94 .c_928a4233::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_297c2441 {
  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_297c2441::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_297c2441:hover::before {
  width: 300px;
  height: 300px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c_48882e98:hover .c_1ba1fe17 {
  transform: scale(1.05);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c_c4eff06f,
.c_63a0863a {
  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_c4eff06f:focus,
.c_63a0863a:focus {
  outline: none;
  border-color: var(--burnished-gold);
  box-shadow: 0 0 0 3px rgba(166, 138, 86, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c_6e992660 .c_687258c6 a:hover {
  color: var(--burnished-gold);
}

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

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

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

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

.c_60b47180 a:hover {
  opacity: 1;
}

.c_79e073bc {
  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_79e073bc.active {
  display: flex;
  opacity: 1;
}

.c_a8ebb4eb {
  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_79e073bc.active .c_a8ebb4eb {
  transform: scale(1);
}

.c_f9edb1ea {
  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_f9edb1ea:hover {
  color: var(--burnished-gold);
}

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

.c_5a710e5d 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_dd9ead92 {
    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_dd9ead92.active {
    right: 0;
  }

  .c_23d3d333 {
    display: flex;
  }

  .c_30af0a59 {
    max-width: 100%;
  }

  .c_11d6131d,
  .c_46d243d7 {
    display: none;
  }

  .c_7316d4c1,
  .c_a9f3e344 {
    filter: blur(50px);
    opacity: 0.6;
  }

  .c_3a31fcd1 .c_2ffb899b {
    width: 6px;
    height: 6px;
  }

  .c_aa53aa0f,
  .c_d3625c86 {
    grid-template-columns: 1fr;
  }

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

  .c_693d0049 {
    transform: none;
  }

  .c_693d0049 > * {
    transform: none;
  }

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

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

  .c_1ba1fe17 {
    height: 220px;
  }

  .c_a8260aca {
    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_50e7feb3 {
    padding: 0 0.5rem;
    min-height: 3.25rem;
  }

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

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

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

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

  .c_23d3d333 {
    padding: 0.5rem;
  }

  .c_23d3d333 span {
    width: 1.5rem;
  }

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

  .c_30af0a59 {
    padding-right: 0;
  }

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

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

  .c_297c2441 {
    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_bb5c3701 {
    padding: 2rem 0;
  }

  .c_c909c1f6 {
    margin-bottom: 1.5rem;
  }

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

  .c_18b14150 {
    gap: 0.75rem;
  }

  .c_fc8f84cd,
  .c_80807c53 {
    grid-template-columns: 1fr;
  }

  .c_48882e98 {
    min-width: 0;
  }

  .c_1ba1fe17 {
    height: 180px;
  }

  .c_9fbe47e6 {
    padding: 0.875rem;
  }

  .c_8d8af60a {
    font-size: 1.125rem;
  }

  .c_796de86c {
    font-size: 0.8125rem;
  }

  .c_28a2bbc7 {
    font-size: 1.375rem;
  }

  .c_aa53aa0f {
    gap: 1.5rem;
  }

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

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

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

  .c_a01655cc {
    padding: 1.25rem 0;
  }

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

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

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

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

  .c_8dc09292 {
    padding: 2rem 0;
  }

  .c_d3625c86 {
    gap: 1.5rem;
  }

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

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

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

  .c_a8260aca {
    padding: 1rem;
  }

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

  .c_0bfa409f {
    margin-bottom: 0.875rem;
  }

  .c_b45acf3c {
    font-size: 0.8125rem;
  }

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

  .c_63a0863a {
    min-height: 120px;
  }

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

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

  .c_6e992660 .c_687258c6 {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .c_bb5c3701 .c_8056777a > div > div.fade-in > div:last-child .c_297c2441 {
    width: 100%;
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c_e9ae371d {
  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);
  }
}
