:root {
  --bg: #0b1a33;             /* deep navy blue */
  --panel: #112344;          /* darker panel for contrast */
  --muted: #162c4a;          /* section background */
  --text: #f1f1f1;           /* light text */
  --subtext: #c2d4f2;        /* frosty text tone */
  --accent: #e53935;         /* Christmas red */
  --accent-2: #f5f5f5;       /* holiday green */
  --stroke: #1f3558;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}


* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  background: linear-gradient(180deg, #0b1a33 0%, #112344 100%);
  line-height: 1.6;
}

.container { width: min(1120px, 92%); margin-inline: auto; }

/* Header */
.site-header {
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(11, 26, 51, 0.95); /* semi-transparent dark blue */
  border-bottom: 1px solid var(--stroke);
  color: var(--text);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.brand svg { color: var(--accent); }
.brand-name { font-weight: 700; font-size: 1.05rem; }
.brand img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}


.nav { display: flex; gap: 20px; align-items: center; }
.nav a { color: var(--subtext); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 6px 0; }

/* Buttons & links */
.btn {
  display: inline-block;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s transform ease, 0.2s box-shadow ease;
  box-shadow: 0 6px 16px rgba(198, 40, 40, 0.3);
}
.btn:hover { transform: translateY(-2px); background: #a31616; }
.btn-small { padding: 8px 12px; font-size: 0.9rem; }
.link { margin-left: 12px; color: var(--accent-2); text-decoration: underline; }

/* Hero */
.hero { padding: 64px 0 24px; }
.hero-inner { display: grid; gap: 28px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin: 0; }
.hero p { color: var(--subtext); max-width: 54ch; }
.hero-cta { display: flex; align-items: center; gap: 12px; }
.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: block;
}
.hero-image:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}


/* Sections */
.section { padding: 52px 0; }
.section-compact { padding: 32px 0; }
.section-muted { background: var(--muted); border-block: 1px solid var(--stroke); }
.section-title {
  font-size: 1.6rem; margin: 0 0 18px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
.section-sub { color: var(--subtext); margin-top: -6px; }

/* Cards */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.card p, .card h3 {
  color: #f1f1f1;
}


/* Logo strip */
.logo-strip {
  display: grid; gap: 14px; grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}
.logo {
  height: 56px;
  background: #f8f8f8;
  border: 1px dashed #ccc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ph-logo { user-select: none; }

/* Gallery grid */
.grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ph-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: block;
}


/* Quotes */
.quotes { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.quote {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05); /* soft transparent box */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #f1f1f1;
}
.quote blockquote {
  margin: 0 0 8px;
  color: #f8f8f8;
  font-size: 1.05rem;
}


/* Form */
.form { display: grid; gap: 14px; max-width: 640px; }
.form-row { display: grid; gap: 6px; }
label { font-weight: 700; color: var(--accent-2); }
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background: #13356f;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
.form-note { color: var(--subtext); font-size: 0.9rem; }

/* Contact */
.contact {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.contact h3 { margin: 0 0 6px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 18px 0;
  background: #0b1a33; /* match dark blue background */
  color: #f1f1f1;
}

.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-nav { display: flex; gap: 16px; }
.footer-nav a { color: var(--accent-2); text-decoration: none; }
.footer-nav a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav {
    display: none;
    position: absolute;
    right: 4%;
    top: 64px;
    flex-direction: column;
    background: var(--panel);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 12px;
    width: min(280px, 92%);
    box-shadow: var(--shadow);
  }
  .nav a { padding: 8px 10px; }
  .nav.show { display: flex; }
  .nav-toggle { display: block; }
}

#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  font-weight: bold;
}

