

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

.c_aeef99f2 {
  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_37f44a45 .c_3dc6ae7e {
  animation: none;
}

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

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

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

.c_37f44a45 .c_3dc6ae7e .c_21814ac2 {
  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_37f44a45 .c_2b50babf {
  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_18ece7dd .c_d4772630 {
  opacity: 0.85;
}

.c_18ece7dd .c_cee9c80a {
  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_18ece7dd .c_3dc6ae7e .c_ca7d7416,
.c_18ece7dd .c_3dc6ae7e h1,
.c_18ece7dd .c_3dc6ae7e p {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: heroClipReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.c_18ece7dd .c_3dc6ae7e .c_ca7d7416 { animation-delay: 0.15s; }
.c_18ece7dd .c_3dc6ae7e h1 { animation-delay: 0.3s; }
.c_18ece7dd .c_3dc6ae7e p { animation-delay: 0.45s; }

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


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

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

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

.c_f3398952 .c_6788b643 {
  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_f3398952 .c_3dc6ae7e .c_ca7d7416,
.c_f3398952 .c_3dc6ae7e h1,
.c_f3398952 .c_3dc6ae7e p {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRevealUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.c_f3398952 .c_3dc6ae7e .c_ca7d7416 { animation-delay: 0.1s; }
.c_f3398952 .c_3dc6ae7e h1 { animation-delay: 0.25s; }
.c_f3398952 .c_3dc6ae7e p { animation-delay: 0.4s; }


.c_c8ffec85 {
  min-height: 50vh;
}

.c_c8ffec85 .c_d4772630 {
  opacity: 0.5;
}

.c_c8ffec85 .c_dcd664c2 {
  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_c8ffec85 .c_3dc6ae7e .c_ca7d7416 {
  opacity: 0;
  letter-spacing: 0.4em;
  animation: heroContactReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.1s forwards;
}

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

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

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

.c_c8ffec85 .c_a3147c25 {
  display: inline-block;
  position: relative;
}

.c_c8ffec85 .c_a3147c25::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_21814ac2 {
  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_21814ac2::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_21814ac2:hover::before {
  width: 300px;
  height: 300px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c_3e84cdf7:hover .c_557dde59 {
  transform: scale(1.05);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c_efdfb6cb .c_9cd23ba8 a:hover {
  color: var(--burnished-gold);
}

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

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

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

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

.c_d587710c a:hover {
  opacity: 1;
}

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

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

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

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

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

  .c_3df7b56d {
    display: flex;
  }

  .c_3dc6ae7e {
    max-width: 100%;
  }

  .c_0f79464b,
  .c_2b50babf {
    display: none;
  }

  .c_16fc409b,
  .c_9887849d {
    filter: blur(50px);
    opacity: 0.6;
  }

  .c_f3398952 .c_7dfe1020 {
    width: 6px;
    height: 6px;
  }

  .c_a669e0fa,
  .c_b9234431 {
    grid-template-columns: 1fr;
  }

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

  .c_a58b3d23 {
    transform: none;
  }

  .c_a58b3d23 > * {
    transform: none;
  }

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

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

  .c_557dde59 {
    height: 220px;
  }

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

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

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

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

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

  .c_3df7b56d {
    padding: 0.5rem;
  }

  .c_3df7b56d span {
    width: 1.5rem;
  }

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

  .c_3dc6ae7e {
    padding-right: 0;
  }

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

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

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

  .c_111796b3 {
    margin-bottom: 1.5rem;
  }

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

  .c_c7c7319f {
    gap: 0.75rem;
  }

  .c_9fce42bc,
  .c_a50799ec {
    grid-template-columns: 1fr;
  }

  .c_3e84cdf7 {
    min-width: 0;
  }

  .c_557dde59 {
    height: 180px;
  }

  .c_38391fbd {
    padding: 0.875rem;
  }

  .c_b05e4e9c {
    font-size: 1.125rem;
  }

  .c_ad925ccf {
    font-size: 0.8125rem;
  }

  .c_88fd2648 {
    font-size: 1.375rem;
  }

  .c_a669e0fa {
    gap: 1.5rem;
  }

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

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

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

  .c_af328f03 {
    padding: 1.25rem 0;
  }

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

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

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

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

  .c_07195f7c {
    padding: 2rem 0;
  }

  .c_b9234431 {
    gap: 1.5rem;
  }

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

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

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

  .c_c72667aa {
    padding: 1rem;
  }

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

  .c_2e911d76 {
    margin-bottom: 0.875rem;
  }

  .c_30f8634c {
    font-size: 0.8125rem;
  }

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

  .c_aba5e1a6 {
    min-height: 120px;
  }

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

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

  .c_efdfb6cb .c_9cd23ba8 {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .c_f14223e6 .c_0ed627bd > div > div.fade-in > div:last-child .c_21814ac2 {
    width: 100%;
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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