/* Your Favorite Santa — storybook winter evening
   Palette drawn from the hero photograph: night blue, fur cream, velvet, gold. */

:root {
  --night: #16263b;
  --dusk: #1f3350;
  --deep: #101d2e;
  --cream: #f3ead8;
  --cream-dim: #d9cfba;
  --parchment: #f6efe1;
  --ink: #26374d;
  --ink-soft: #48586c;
  --velvet: #a8212f;
  --velvet-deep: #8c1a26;
  --gold: #c8a15c;
  --gold-soft: #a98a52;

  --font-display: "Young Serif", "Georgia", serif;
  --font-body: "Alegreya", "Georgia", serif;
  --font-utility: "Alegreya Sans", "Gill Sans", "Segoe UI", sans-serif;

  --measure: 62ch;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
}

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- utility text ---------- */

.eyebrow {
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- header ---------- */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--pad);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.wordmark svg { flex: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.8rem);
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--cream-dim);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover { color: var(--cream); border-bottom-color: var(--gold); }

.nav-phone {
  color: var(--gold) !important;
  font-weight: 700;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(92vh, 56rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  padding: 7.5rem var(--pad) 4rem;
  max-width: 40rem;
  justify-self: end;
  animation: rise 900ms ease-out both;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.08;
  font-weight: 400;
  margin: 1.1rem 0 1.4rem;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-lede {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--cream-dim);
  max-width: 34rem;
}

.hero-photo {
  position: relative;
  align-self: stretch;
  min-height: 420px;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 18%;
}

/* the blend: photo dissolves into the night field */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--night) 0%, rgba(22, 38, 59, 0.55) 22%, rgba(22, 38, 59, 0) 55%),
    linear-gradient(0deg, var(--night) 0%, rgba(22, 38, 59, 0) 32%),
    linear-gradient(180deg, rgba(22, 38, 59, 0.65) 0%, rgba(22, 38, 59, 0) 28%),
    rgba(22, 38, 59, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.5rem;
  margin-top: 2.2rem;
}

.btn {
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--cream);
  background: var(--velvet);
  padding: 0.85rem 1.6rem;
  border-radius: 3px;
  box-shadow: 0 2px 0 var(--velvet-deep);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  background: #b5303e;
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--velvet-deep);
}

.link-gold {
  font-family: var(--font-utility);
  font-weight: 500;
  text-decoration: none;
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 160ms ease;
}

.link-gold:hover { color: var(--gold); }

/* ---------- gold language band ---------- */

.band {
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  background: var(--dusk);
  padding: 1.4rem var(--pad);
  text-align: center;
}

.band p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  color: var(--gold);
}

.band .sep { opacity: 0.55; padding: 0 0.4em; }

/* ---------- sections ---------- */

.section { padding: clamp(3.5rem, 8vw, 6rem) var(--pad); }

.section-inner {
  max-width: 68rem;
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin: 0.9rem 0 1.5rem;
}

/* story — parchment interior, like opening the card */

.story {
  background: var(--parchment);
  color: var(--ink);
}

.story .eyebrow { color: var(--velvet); }

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.story p { max-width: var(--measure); color: var(--ink); }
.story p + p { margin-top: 1em; }

.story .dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  line-height: 0.82;
  color: var(--velvet);
  float: left;
  padding: 0.06em 0.12em 0 0;
}

.story-photo figure { margin: 0; }

.story-photo img {
  border: 6px solid #fff;
  outline: 1px solid var(--gold-soft);
  box-shadow: 0 14px 34px rgba(38, 55, 77, 0.22);
  transform: rotate(1.4deg);
}

.story-photo figcaption {
  font-family: var(--font-utility);
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 1.1rem;
}

.pull {
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1.6rem 0;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  max-width: var(--measure);
}

.credentials {
  list-style: none;
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.7rem 2rem;
  font-family: var(--font-utility);
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}

.credentials li { padding-left: 1.3rem; position: relative; }

.credentials li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--velvet);
  font-size: 0.75em;
  top: 0.35em;
}

/* services — back into the night */

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.service-list { list-style: none; max-width: 36rem; }

.service-list li {
  padding: 1.05rem 0 1.05rem 1.7rem;
  position: relative;
  border-bottom: 1px solid rgba(200, 161, 92, 0.25);
}

.service-list li:last-child { border-bottom: none; }

.service-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1.25rem;
  color: var(--gold);
  font-size: 0.8em;
}

.service-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.15rem;
}

.service-list span { color: var(--cream-dim); font-size: 1rem; }

.services-photos {
  display: grid;
  gap: 1.5rem;
}

.services-photos figure { margin: 0; }

.services-photos img {
  border: 5px solid rgba(243, 234, 216, 0.92);
  outline: 1px solid var(--gold-soft);
  box-shadow: 0 16px 36px rgba(6, 12, 20, 0.5);
  width: 100%;
  aspect-ratio: 5 / 4.6;
  object-fit: cover;
}

.services-photos .crop-high { object-position: 50% 22%; }
.services-photos .crop-mid { object-position: 50% 42%; }

.services-photos figcaption {
  font-family: var(--font-utility);
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-top: 0.8rem;
  text-align: center;
}

/* territory */

.territory {
  background: var(--deep);
  text-align: center;
  border-top: 1px solid rgba(200, 161, 92, 0.3);
  border-bottom: 1px solid rgba(200, 161, 92, 0.3);
}

.territory p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.45;
}

.territory .note {
  font-family: var(--font-utility);
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-top: 1rem;
}

/* booking */

.book { text-align: center; }

.book .section-inner { max-width: 46rem; }

.book .lede { color: var(--cream-dim); max-width: 40rem; margin: 0 auto; }

.contact-block {
  margin: 2.6rem auto 0;
  display: grid;
  gap: 1.4rem;
  justify-items: center;
}

.contact-phone {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: var(--cream);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.15em;
  transition: color 160ms ease;
}

.contact-phone:hover { color: var(--gold); }

.contact-email {
  font-family: var(--font-utility);
  font-size: 1.15rem;
  color: var(--gold);
  text-decoration: none;
}

.contact-email:hover { text-decoration: underline; }

.contact-mail {
  font-family: var(--font-utility);
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* footer */

.site-footer {
  background: var(--deep);
  border-top: 1px solid rgba(200, 161, 92, 0.3);
  padding: 2rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-utility);
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.site-footer a { color: var(--cream-dim); }
.site-footer a:hover { color: var(--cream); }

/* privacy page */

.prose {
  background: var(--parchment);
  color: var(--ink);
  min-height: 60vh;
}

.prose .section-inner { max-width: var(--measure); }
.prose h1 { font-family: var(--font-display); font-weight: 400; font-size: 2.2rem; margin-bottom: 1.4rem; }
.prose h2 { font-size: 1.3rem; margin-top: 2rem; }
.prose p { margin-top: 1em; }
.prose a { color: var(--velvet); }

/* ---------- motion & responsive ---------- */

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy { animation: none; }
  .btn, .btn:hover { transform: none; }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }
  .hero-photo { order: -1; min-height: 0; aspect-ratio: 1; max-height: 70vh; }
  .hero-photo img { object-position: 50% 12%; }
  .hero-photo::after {
    background:
      linear-gradient(0deg, var(--night) 4%, rgba(22, 38, 59, 0) 45%),
      linear-gradient(180deg, rgba(22, 38, 59, 0.7) 0%, rgba(22, 38, 59, 0) 30%),
      rgba(22, 38, 59, 0.15);
  }
  .hero-copy { padding: 0.5rem var(--pad) 3.5rem; justify-self: start; }
  .story-grid, .services-grid { grid-template-columns: 1fr; }
  .story-photo { max-width: 24rem; }
  .site-nav .nav-link { display: none; }
}
