/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #c41e3a;
  --red-dark: #9b1830;
  --green: #0b6623;
  --green-light: #1a8a3a;
  --cream: #fff8f0;
  --snow: #ffffff;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --gold: #d4a017;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --radius: 16px;
  --font-display: 'Mountains of Christmas', cursive;
  --font-body: 'Nunito', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Snowflakes ===== */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -20px;
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  animation: fall linear infinite;
  text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; font-size: 1rem; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 15s; animation-delay: 2s; font-size: 1.4rem; }
.snowflake:nth-child(3) { left: 25%; animation-duration: 10s; animation-delay: 4s; font-size: 0.9rem; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 18s; animation-delay: 1s; font-size: 1.3rem; }
.snowflake:nth-child(5) { left: 55%; animation-duration: 13s; animation-delay: 3s; font-size: 1.1rem; }
.snowflake:nth-child(6) { left: 65%; animation-duration: 16s; animation-delay: 5s; font-size: 1.5rem; }
.snowflake:nth-child(7) { left: 75%; animation-duration: 11s; animation-delay: 0.5s; font-size: 0.8rem; }
.snowflake:nth-child(8) { left: 85%; animation-duration: 14s; animation-delay: 2.5s; font-size: 1.2rem; }
.snowflake:nth-child(9) { left: 92%; animation-duration: 17s; animation-delay: 1.5s; font-size: 1rem; }
.snowflake:nth-child(10){ left: 48%; animation-duration: 12s; animation-delay: 4.5s; font-size: 1.6rem; }

@keyframes fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0.3; }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 30, 58, 0.1);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
}

.logo-icon {
  font-size: 1.8rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--red);
}

.btn-nav {
  background: var(--red);
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
}

.btn-nav:hover {
  background: var(--red-dark);
  color: white !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: white;
}

.btn-full {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #fff8f0 0%, #ffe8e0 40%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 380px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: white;
  padding: 12px;
}

/* ===== Sections Common ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--red);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== Services ===== */
.services {
  padding: 90px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(196, 30, 58, 0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--red);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-card ul {
  font-size: 0.9rem;
  color: var(--text);
}

.service-card ul li {
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

/* ===== Pricing ===== */
.pricing {
  padding: 90px 0;
  background: linear-gradient(180deg, #f0faf2 0%, #fff8f0 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--red);
  transform: scale(1.03);
  z-index: 1;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text);
}

.price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.price-card ul {
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-card ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== Gallery ===== */
.gallery {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  z-index: 2;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 24px 14px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover figcaption {
  opacity: 1;
}

/* ===== About ===== */
.about {
  padding: 90px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-list {
  margin-top: 24px;
}

.about-list li {
  padding: 8px 0;
  font-weight: 600;
  color: var(--green);
}

.about-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 380px;
}

.quote-card {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.quote-card p {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}

.quote-card span {
  font-weight: 700;
  opacity: 0.9;
}

/* ===== Contact ===== */
.contact {
  padding: 90px 0;
  background: linear-gradient(160deg, #fff8f0 0%, #ffe8e0 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: white;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d5d0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
  background: white;
}

.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--red);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  margin-bottom: 2px;
}

.info-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand .logo-text {
  color: white;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.footer-brand p {
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #ccc;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 700px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero-image img {
    max-width: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item.large {
    grid-column: span 2;
  }
}
