/* ============================================
   NORDIC HEAT — GLOBAL STYLESHEET
   Aesthetic: Nordic warmth, cedar & fire, cozy northern glow
   ============================================ */

:root {
  --fire: #D9400A;
  --fire-deep: #A62D05;
  --fire-glow: #F26B1D;
  --amber: #F5A623;
  --amber-soft: #E8B84D;
  --coal: #0D0D0B;
  --ash: #1A1915;
  --smoke: #2C2B27;
  --cedar: #C4874E;
  --cedar-light: #E8C99A;
  --cedar-warm: #D4A373;
  --cream: #F5F0E8;
  --white: #FDFCFA;
  --text-muted: #8C8A82;
  --blue-ice: #7BB8D4;
  --aurora-green: #4CAF82;
  --aurora-purple: #7B5EA7;
  --warm-black: #151310;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-condensed: 'Barlow Condensed', sans-serif;
  --ff-body: 'Barlow', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
  --shadow-fire: 0 0 40px rgba(217, 64, 10, 0.3);
  --shadow-warm: 0 8px 32px rgba(196, 135, 78, 0.12);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--coal);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }

.section-label {
  font-family: var(--ff-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic;
  color: var(--cedar-light);
}
.section-title.text-center { margin-bottom: 64px; }

.body-text {
  font-size: 1.0625rem;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 20px;
  max-width: 540px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-fire {
  background: var(--fire);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(217,64,10,0.4);
}
.btn-fire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-fire:hover {
  background: var(--fire-glow);
  box-shadow: 0 4px 28px rgba(217,64,10,0.65), 0 0 60px rgba(217,64,10,0.2);
  transform: translateY(-2px);
}
.btn-fire:hover::before { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,240,232,0.35);
}
.btn-ghost:hover {
  background: rgba(245,240,232,0.08);
  border-color: rgba(245,240,232,0.65);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   FLOATING EMBER PARTICLES
   ============================================ */
.embers {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--fire-glow);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.5px);
  animation: emberFloat linear infinite;
}

.ember::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle, rgba(242,107,29,0.6), transparent);
  border-radius: 50%;
}

.ember:nth-child(1)  { left: 5%;  bottom: -10px; width: 3px; height: 3px; animation-duration: 6s;  animation-delay: 0s; }
.ember:nth-child(2)  { left: 15%; bottom: -10px; width: 5px; height: 5px; animation-duration: 8s;  animation-delay: 1s; }
.ember:nth-child(3)  { left: 25%; bottom: -10px; width: 2px; height: 2px; animation-duration: 7s;  animation-delay: 0.5s; }
.ember:nth-child(4)  { left: 40%; bottom: -10px; width: 4px; height: 4px; animation-duration: 9s;  animation-delay: 2s; }
.ember:nth-child(5)  { left: 55%; bottom: -10px; width: 3px; height: 3px; animation-duration: 6.5s; animation-delay: 3s; }
.ember:nth-child(6)  { left: 65%; bottom: -10px; width: 5px; height: 5px; animation-duration: 7.5s; animation-delay: 0.8s; }
.ember:nth-child(7)  { left: 75%; bottom: -10px; width: 2px; height: 2px; animation-duration: 8.5s; animation-delay: 1.5s; }
.ember:nth-child(8)  { left: 85%; bottom: -10px; width: 4px; height: 4px; animation-duration: 7s;  animation-delay: 4s; }
.ember:nth-child(9)  { left: 10%; bottom: -10px; width: 3px; height: 3px; animation-duration: 9.5s; animation-delay: 2.5s; }
.ember:nth-child(10) { left: 50%; bottom: -10px; width: 2px; height: 2px; animation-duration: 6s;  animation-delay: 3.5s; }
.ember:nth-child(11) { left: 35%; bottom: -10px; width: 4px; height: 4px; animation-duration: 8s;  animation-delay: 1.2s; }
.ember:nth-child(12) { left: 90%; bottom: -10px; width: 3px; height: 3px; animation-duration: 7.2s; animation-delay: 0.3s; }

@keyframes emberFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(40px) scale(0);
    opacity: 0;
  }
}

.embers--cta .ember {
  animation-duration: 5s;
}

/* ============================================
   NORDIC GEOMETRIC DIVIDER
   ============================================ */
.nordic-divider {
  height: 24px;
  color: var(--fire);
  opacity: 0.2;
  overflow: hidden;
}
.nordic-divider svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(13,13,11,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--ff-condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--cedar-light); }
.nav-links .nav-cta {
  opacity: 1;
  background: var(--fire);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--fire-glow);
  box-shadow: 0 2px 16px rgba(217,64,10,0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(13,13,11,0.88) 0%,
      rgba(13,13,11,0.55) 55%,
      rgba(13,13,11,0.2) 100%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(217,64,10,0.08) 0%,
      transparent 60%
    );
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 72px;
  animation: fadeUp 1s 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--ff-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(245,166,35,0.3);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--cedar-light);
  display: block;
  text-shadow: 0 0 40px rgba(232,201,154,0.15);
}
.hero-sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.82;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  opacity: 0.5;
}
.hero-scroll-hint span {
  font-family: var(--ff-condensed);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--cream);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--ash);
  border-top: 1px solid rgba(245,240,232,0.08);
  border-bottom: 1px solid rgba(245,240,232,0.08);
  padding: 20px 24px;
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(217,64,10,0.03), transparent);
  pointer-events: none;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  font-family: var(--ff-condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.trust-item:hover { opacity: 1; }
.trust-icon { font-size: 18px; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(245,240,232,0.15);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
  background: var(--coal);
  position: relative;
}
.experience::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,135,78,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience-text .btn { margin-top: 16px; }
.experience-images {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  align-items: start;
}
.exp-img-main img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 460px;
  box-shadow: var(--shadow);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.6s;
}
.exp-img-main:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow), 0 0 40px rgba(196,135,78,0.1);
}
.exp-img-secondary {
  margin-top: 60px;
}
.exp-img-secondary img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 320px;
  box-shadow: var(--shadow);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.6s;
}
.exp-img-secondary:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow), 0 0 40px rgba(196,135,78,0.1);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  background: var(--ash);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217,64,10,0.04), transparent 70%);
  pointer-events: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--smoke);
  padding: 40px 32px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.feature-card:hover {
  background: #333230;
  box-shadow: 0 -4px 30px rgba(217,64,10,0.06);
  transform: translateY(-2px);
}
.feature-card:hover::after { width: 80%; }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 {
  font-family: var(--ff-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cedar-light);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9375rem;
  opacity: 0.75;
  line-height: 1.65;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--coal);
  padding-bottom: 0;
}
.gallery .container { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--smoke);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1) saturate(1.1);
}
.gallery-item--large {
  grid-column: span 2;
}
.gallery-item--large img { height: 380px; }
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item--wide img { height: 300px; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,13,11,0.85), transparent);
  padding: 24px 20px 16px;
  font-family: var(--ff-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  background: var(--ash);
  position: relative;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(217,64,10,0.04), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(196,135,78,0.03), transparent 50%);
  pointer-events: none;
}
.steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  position: relative;
}
.step-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--fire);
  opacity: 0.25;
  line-height: 1;
  padding-top: 4px;
  transition: opacity var(--transition), text-shadow var(--transition);
}
.step:hover .step-number {
  opacity: 0.5;
  text-shadow: 0 0 30px rgba(217,64,10,0.3);
}
.step-body h3 {
  font-family: var(--ff-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cedar-light);
  margin-bottom: 8px;
}
.step-body p { opacity: 0.8; }
.step-connector {
  height: 1px;
  background: linear-gradient(to right, var(--fire), transparent);
  margin-left: 80px;
  opacity: 0.25;
}

/* ============================================
   OCCASIONS
   ============================================ */
.occasions { background: var(--coal); }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.occasion-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: default;
}
.occasion-card img {
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.occasion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,11,0.92) 0%, rgba(13,13,11,0.3) 60%, rgba(13,13,11,0.1) 100%);
  transition: background 0.5s;
}
.occasion-card:hover .occasion-overlay {
  background: linear-gradient(to top, rgba(13,13,11,0.96) 0%, rgba(13,13,11,0.5) 60%, rgba(13,13,11,0.2) 100%);
}
.occasion-card h3,
.occasion-card p {
  position: relative;
  z-index: 1;
}
.occasion-card h3 {
  position: absolute;
  bottom: 60px;
  left: 24px; right: 24px;
  font-family: var(--ff-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: transform 0.4s, text-shadow 0.4s;
}
.occasion-card:hover h3 {
  transform: translateY(-8px);
  text-shadow: 0 0 20px rgba(217,64,10,0.2);
}
.occasion-card p {
  position: absolute;
  bottom: 24px;
  left: 24px; right: 24px;
  font-size: 0.875rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s;
  color: var(--cream);
}
.occasion-card:hover p {
  opacity: 0.8;
  transform: translateY(0);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--ash);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(13,13,11,0.3), transparent);
  pointer-events: none;
}
.faq-container { max-width: 760px; }
.faq-list { border-top: 1px solid rgba(245,240,232,0.1); }
.faq-item {
  border-bottom: 1px solid rgba(245,240,232,0.1);
  transition: border-color var(--transition);
}
.faq-item.open { border-bottom-color: rgba(217,64,10,0.3); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--ff-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--cedar-light); }
.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--fire);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding-bottom: 24px;
  opacity: 0.75;
  font-size: 0.9375rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    rgba(13,13,11,0.78),
    radial-gradient(ellipse at 50% 100%, rgba(217,64,10,0.12), transparent 60%);
}
.cta-content {
  position: relative;
  z-index: 4;
  padding: 0 24px;
}
.cta-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-content h2 em {
  font-style: italic;
  color: var(--cedar-light);
  text-shadow: 0 0 40px rgba(232,201,154,0.2);
}
.cta-content p {
  font-size: 1.0625rem;
  opacity: 0.78;
  margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--coal);
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: 72px 24px 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
  opacity: 0.3;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.5;
  line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9375rem;
  opacity: 0.65;
  transition: opacity var(--transition), color var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--cedar-light); }
.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.9375rem;
  opacity: 0.65;
}
.footer-contact a:hover { opacity: 1; color: var(--cedar-light); }
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(245,240,232,0.18);
  border-radius: var(--radius);
  opacity: 0.55;
  transition: opacity var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.footer-social a:hover {
  opacity: 1;
  border-color: var(--fire);
  box-shadow: 0 0 16px rgba(217,64,10,0.2);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.footer-credit {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.footer-credit a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.footer-credit a:hover {
  color: var(--white);
  border-bottom-color: currentColor;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.book-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}
.book-hero-bg {
  position: absolute;
  inset: 0;
}
.book-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.book-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13,13,11,0.92), rgba(13,13,11,0.5)),
    radial-gradient(ellipse at 30% 80%, rgba(217,64,10,0.08), transparent 60%);
}
.book-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 72px;
  width: 100%;
  animation: fadeUp 0.8s 0.2s both;
}
.book-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.book-hero-content h1 em { font-style: italic; color: var(--cedar-light); }
.book-hero-content p {
  opacity: 0.7;
  margin-top: 12px;
}

.book-section { padding: 72px 0 100px; }
.book-container {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

/* Pricing Sidebar */
.pricing-sidebar h3 {
  font-family: var(--ff-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 20px;
}
.price-card {
  background: var(--ash);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  border-color: rgba(245,240,232,0.2);
}
.price-card--featured {
  background: var(--smoke);
  border-color: var(--fire);
  box-shadow: var(--shadow-fire);
}
.price-card--featured:hover {
  border-color: var(--fire-glow);
  box-shadow: 0 0 50px rgba(217, 64, 10, 0.4);
}
.price-label {
  font-family: var(--ff-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}
.price-features { display: flex; flex-direction: column; gap: 8px; }
.price-features li {
  font-size: 0.875rem;
  opacity: 0.75;
}
.price-note {
  background: rgba(245,240,232,0.04);
  border-radius: var(--radius);
  padding: 16px;
}
.price-note p { font-size: 0.8125rem; opacity: 0.6; line-height: 1.6; }

/* Booking Form */
.book-form-wrap {
  background: var(--ash);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
}
.book-form-wrap::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,64,10,0.3), transparent);
}
.book-form { display: flex; flex-direction: column; gap: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--ff-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cedar-light);
  opacity: 0.7;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--smoke);
  border: 1.5px solid rgba(245,240,232,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { opacity: 0.35; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fire);
  box-shadow: 0 0 12px rgba(217,64,10,0.15);
}
.form-group select option { background: var(--smoke); }
.form-group textarea { resize: vertical; }
.form-disclaimer {
  font-size: 0.8125rem;
  opacity: 0.45;
  text-align: center;
  margin-top: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--coal);
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,135,78,0.03), transparent 70%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--ash);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(245,240,232,0.15);
  transform: translateY(-2px);
}
.testimonial-stars {
  font-size: 1.1rem;
  color: var(--amber);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-photo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--smoke);
  border: 1px solid rgba(245,240,232,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--cedar-light);
}
.testimonial-author strong {
  display: block;
  font-family: var(--ff-condensed);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cedar-light);
}
.testimonial-author span {
  font-size: 0.75rem;
  opacity: 0.45;
}

/* ============================================
   BLOG
   ============================================ */
.blog-section { background: var(--coal); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--ash);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  color: var(--cream);
}
.blog-card:hover {
  border-color: rgba(245,240,232,0.18);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-family: var(--ff-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.blog-card p {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
  flex: 1;
}
.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.blog-tag {
  font-family: var(--ff-condensed);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  background: rgba(245,240,232,0.06);
  color: var(--text-muted);
}
.blog-card-external {
  display: block;
  margin-top: 12px;
  font-family: var(--ff-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}
.blog-loading, .blog-empty {
  text-align: center;
  padding: 60px 0;
  opacity: 0.5;
  font-family: var(--ff-condensed);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Blog Post Page */
.blog-post-page {
  padding: 120px 0 80px;
  background: var(--coal);
  min-height: 80vh;
}
.blog-back {
  display: inline-block;
  font-family: var(--ff-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 32px;
  transition: opacity var(--transition);
}
.blog-back:hover { opacity: 0.7; }
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.blog-post-date {
  font-family: var(--ff-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fire);
}
.blog-post-tags {
  display: flex;
  gap: 6px;
}
.blog-post-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.blog-post-excerpt {
  font-size: 1.125rem;
  opacity: 0.7;
  margin-bottom: 32px;
  max-width: 680px;
}
.blog-post-hero {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-post-hero img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
/* Prose: blog post body typography */
.prose {
  max-width: 720px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.88;
}
.prose h2 {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  margin: 48px 0 16px;
}
.prose h3 {
  font-family: var(--ff-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cedar-light);
  margin: 36px 0 12px;
}
.prose p { margin-bottom: 20px; }
.prose a { color: var(--fire); border-bottom: 1px solid rgba(217,64,10,0.3); transition: border-color var(--transition); }
.prose a:hover { border-bottom-color: var(--fire); }
.prose strong { color: var(--white); font-weight: 500; }
.prose em { color: var(--cedar-light); }
.prose ul, .prose ol { margin: 16px 0 20px 24px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--fire); }
.prose blockquote {
  border-left: 3px solid var(--fire);
  padding: 12px 24px;
  margin: 24px 0;
  font-style: italic;
  opacity: 0.8;
}
.prose img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
.prose hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, var(--fire), transparent);
  margin: 48px 0;
  opacity: 0.25;
}

/* ============================================
   WARM AMBIENT BACKGROUND GLOW (section accents)
   ============================================ */
.experience,
.gallery,
.occasions {
  position: relative;
}

/* ============================================
   SMOOTH SCROLL REVEAL DEFAULTS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   WARM LOADING TRANSITION
   ============================================ */
body {
  animation: pageLoad 0.6s ease-out;
}
@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   SELECTION STYLE
   ============================================ */
::selection {
  background: rgba(217,64,10,0.3);
  color: var(--white);
}

/* ============================================
   SCROLLBAR (webkit)
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--coal); }
::-webkit-scrollbar-thumb {
  background: var(--smoke);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(196,135,78,0.4); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .experience-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; }
  .gallery-item--wide { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .book-container { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(13,13,11,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245,240,232,0.08);
    padding: 16px 0 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 4px 0; }
  .nav-links a { padding: 12px 24px; display: block; font-size: 16px; }
  .nav-links .nav-cta { margin: 12px 24px 0; display: block; text-align: center; }
  .nav-toggle { display: flex; }
  .trust-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .trust-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large, .gallery-item--wide { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .book-form-wrap { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nordic-divider { display: none; }
  .embers .ember:nth-child(n+7) { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-title { font-size: 2rem; }
}
