/* ==============================================
   CSS RESET & BASE STYLES
   ============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Color System */
  --forest-green: #2A4B3A;
  --antique-gold: #B89B5F;
  --snowfall-white: #FDFDFC;
  --first-frost: #FFFFFF;
  --charcoal: #222222;
  --winter-mist: #6B7280;
  --muted-blue: #5F87B8;
  --muted-red: #C36A6A;
  /* Typography */
  --font-headline: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --spacing-xxl: 96px;
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  /* Shadows */
  --shadow-card: 0 8px 24px rgba(184, 155, 95, 0.08);
  --shadow-card-hover: 0 12px 32px rgba(184, 155, 95, 0.12);
  /* Transitions */
  --transition-fast: all 250ms ease-out;
  --transition-smooth: all 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* Dark Theme */
[data-theme="dark"] {
  --snowfall-white: #1a1a1a;
  --first-frost: #2d2d2d;
  --charcoal: #e5e5e5;
  --winter-mist: #9ca3af;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--snowfall-white);
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}
/* ==============================================
   TYPOGRAPHY
   ============================================== */
h1 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--forest-green);
}
h2 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--forest-green);
}
h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--forest-green);
}
p {
  margin-bottom: var(--spacing-sm);
}
/* ==============================================
   HEADER & NAVIGATION
   ============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(253, 253, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 155, 95, 0.1);
  z-index: 1000;
  transition: var(--transition-smooth);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--forest-green);
}
.logo svg {
  transition: var(--transition-smooth);
}
.holiday-decoration {
  position: relative;
}
.snow-cap {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: var(--antique-gold);
  border-radius: 50%;
  animation: twinkle 2s infinite alternate;
}
.brand-text {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 20px;
  color: var(--forest-green);
}
.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
}
.nav-link {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}
.nav-link:hover {
  color: var(--antique-gold);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--antique-gold);
  transition: var(--transition-fast);
}
.nav-link:hover::after {
  width: 100%;
}
/* ==============================================
   THEME TOGGLE
   ============================================== */
.theme-toggle {
  position: fixed;
  top: 100px;
  right: var(--spacing-sm);
  background: var(--first-frost);
  border: 1px solid rgba(184, 155, 95, 0.3);
  border-radius: var(--radius-md);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 1001;
  box-shadow: var(--shadow-card);
}
.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.theme-icon {
  color: var(--antique-gold);
  transition: var(--transition-smooth);
}
.theme-icon.hidden {
  display: none;
}
/* ==============================================
   SNOW CANVAS
   ============================================== */
#snowCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--spacing-xxl) 0;
}
.hero-content {
  text-align: center;
  max-width: 800px;
}
.hero-logo {
  margin-bottom: var(--spacing-lg);
}
.logo-large {
  display: inline-block;
  animation: float 6s ease-in-out infinite;
}
.hero-title {
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--forest-green), var(--antique-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 20px;
  color: var(--winter-mist);
  margin-bottom: var(--spacing-xl);
}
/* ==============================================
   COUNTDOWN
   ============================================== */
.countdown-container {
  margin-top: var(--spacing-xl);
}
.countdown-container h3 {
  color: var(--winter-mist);
  font-size: 18px;
  margin-bottom: var(--spacing-md);
}
.countdown {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}
.countdown-item {
  background: var(--first-frost);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 80px;
}
.countdown-number {
  display: block;
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 600;
  color: var(--forest-green);
  line-height: 1;
}
.countdown-label {
  font-size: 12px;
  color: var(--winter-mist);
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* ==============================================
   SECTIONS
   ============================================== */
.about,
.services,
.contact {
  padding: var(--spacing-xxl) 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}
.section-title {
  margin-bottom: var(--spacing-sm);
}
.section-decoration {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--antique-gold), var(--forest-green));
  margin: 0 auto;
  border-radius: 2px;
  animation: shimmer 3s infinite;
}
/* ==============================================
   ABOUT SECTION
   ============================================== */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}
.about-text p {
  margin-bottom: var(--spacing-md);
  font-size: 18px;
  line-height: 1.8;
}
.about-stats {
  display: grid;
  gap: var(--spacing-lg);
}
.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--first-frost);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.stat-number {
  font-family: var(--font-headline);
  font-size: 48px;
  font-weight: 600;
  color: var(--antique-gold);
  line-height: 1;
}
.stat-label {
  color: var(--winter-mist);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--spacing-xs);
}
/* ==============================================
   SERVICES SECTION
   ============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
}
.service-card {
  background: var(--first-frost);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  color: var(--antique-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(184, 155, 95, 0.1);
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
  background: rgba(184, 155, 95, 0.2);
  transform: scale(1.1);
}
.service-title {
  margin-bottom: var(--spacing-sm);
}
.service-description {
  color: var(--winter-mist);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}
.service-link {
  color: var(--antique-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}
.service-link:hover {
  color: var(--forest-green);
}
.service-link::after {
  content: '→';
  transition: var(--transition-fast);
}
.service-link:hover::after {
  transform: translateX(4px);
}
/* ==============================================
   CONTACT SECTION
   ============================================== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}
.greeting-message {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  color: var(--forest-green);
}
.contact-info {
  display: grid;
  gap: var(--spacing-sm);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--winter-mist);
}
.contact-item svg {
  color: var(--antique-gold);
  flex-shrink: 0;
}
/* ==============================================
   CONTACT FORM
   ============================================== */
.contact-form {
  background: var(--first-frost);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.form-group {
  margin-bottom: var(--spacing-md);
}
.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--forest-green);
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  background: var(--first-frost);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--antique-gold);
  box-shadow: 0 0 0 3px rgba(184, 155, 95, 0.2);
}
.submit-btn {
  width: 100%;
  background: var(--forest-green);
  color: var(--first-frost);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
}
.submit-btn:hover {
  background: #1e3a2a;
  transform: translateY(-2px);
}
.submit-btn:active {
  transform: translateY(0);
}
/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--first-frost);
  padding: var(--spacing-xl) 0;
  border-top: 1px solid rgba(184, 155, 95, 0.1);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--forest-green);
  font-family: var(--font-headline);
  font-weight: 600;
}
.footer-text {
  color: var(--winter-mist);
  text-align: center;
}
/* ==============================================
   ANIMATIONS
   ============================================== */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
.fade-in-delay {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}
.fade-in-delay-2 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}
/* ==============================================
   UTILITY CLASSES
   ============================================== */
.hidden {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}