@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600&display=swap');

:root {
  --deep:    #060d06;
  --forest:  #0c1f0c;
  --moss:    #173017;
  --amber:   #c4782a;
  --gold:    #e8a84a;
  --ice:     #60c4f0;
  --frost:   #c0e8f8;
  --cream:   #f5ede0;
  --text:    #c8bfb0;
  --muted:   #7a6e5e;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--deep);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(6,13,6,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,120,42,0.18);
  transition: padding 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; filter: brightness(1.1); }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--cream); letter-spacing: 0.12em; text-transform: uppercase;
}
.brand-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.5rem; font-weight: 500;
  color: var(--amber); letter-spacing: 0.45em; text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-book {
  background: var(--amber); color: var(--deep) !important;
  padding: 0.55rem 1.4rem; font-weight: 500 !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-book:hover { background: var(--gold) !important; transform: translateY(-1px); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); transition: all 0.3s; }
.mobile-nav {
  display: none; position: fixed; top: 65px; left: 0; right: 0;
  background: rgba(6,13,6,0.97); padding: 2rem; z-index: 199;
  flex-direction: column; gap: 0;
  border-bottom: 1px solid rgba(196,120,42,0.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}
.hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,13,6,0.2) 0%, rgba(6,13,6,0.05) 45%, rgba(6,13,6,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo { width: 70px; margin-bottom: 1.8rem; animation: fadeUp 1s ease 0.2s both; }
.hero-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(5.5rem, 16vw, 13rem);
  font-weight: 300; color: var(--cream);
  letter-spacing: 0.18em; line-height: 0.88;
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-sub {
  font-size: clamp(0.6rem, 1.8vw, 0.82rem);
  font-weight: 500; color: var(--amber);
  letter-spacing: 0.65em; text-transform: uppercase;
  margin-top: 0.6rem;
  animation: fadeUp 1s ease 0.6s both;
}
.hero-tagline {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  font-style: italic; color: var(--text);
  margin-top: 2rem;
  animation: fadeUp 1s ease 0.8s both;
}
.hero-cta {
  margin-top: 2.8rem;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease 1s both;
}
.partner-badge {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2;
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(6,13,6,0.72); border: 1px solid rgba(196,120,42,0.3);
  padding: 0.55rem 1rem; backdrop-filter: blur(8px);
  animation: fadeUp 1s ease 1.2s both;
}
.partner-badge .pb-label {
  font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.partner-badge a {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); text-decoration: none; font-weight: 500;
}
.partner-badge a:hover { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: var(--amber); color: var(--deep);
  padding: 0.9rem 2.4rem;
  font-family: 'Jost', sans-serif; font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-block; transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cream);
  padding: 0.9rem 2.4rem;
  font-family: 'Jost', sans-serif; font-size: 0.72rem;
  font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(245,237,224,0.35);
  display: inline-block; transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--cream); background: rgba(245,237,224,0.05); }

/* ── SHARED SECTION STYLES ───────────────────────── */
section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400; color: var(--cream); line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); }
.text-center { text-align: center; }

/* ── SERVICES ─────────────────────────────────────── */
.services { background: var(--forest); overflow: hidden; }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 4rem; position: relative;
}
.service-card { position: relative; overflow: hidden; height: 68vh; min-height: 420px; }
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s ease; opacity: 0.68;
}
.service-card:hover img { transform: scale(1.06); opacity: 0.8; }
.service-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem 3rem;
  background: linear-gradient(to top, rgba(6,13,6,0.92) 0%, rgba(6,13,6,0.1) 60%);
}
.service-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.service-heat .service-icon { color: var(--amber); }
.service-cold .service-icon { color: var(--ice); }
.service-card h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 2rem; font-weight: 400; color: var(--cream);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.86rem; line-height: 1.75; color: var(--text); max-width: 300px; }
.service-temp {
  margin-top: 0.8rem;
  font-family: 'Cormorant Garant', serif;
  font-size: 2.4rem; font-weight: 300;
}
.service-heat .service-temp { color: var(--amber); }
.service-cold .service-temp { color: var(--ice); }
.services-divider {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--amber) 30%, var(--ice) 70%, transparent);
  transform: translateX(-50%);
}

/* ── STATS ────────────────────────────────────────── */
.stats {
  background: var(--deep);
  border-top: 1px solid rgba(196,120,42,0.12);
  border-bottom: 1px solid rgba(196,120,42,0.12);
  padding: 3.5rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 3.2rem; font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-lbl {
  font-size: 0.65rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--muted); margin-top: 0.5rem;
}

/* ── WHY PLUNGE ───────────────────────────────────── */
.why { background: var(--forest); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 3rem;
}
.why-image { position: relative; }
.why-image img { width: 100%; height: 580px; object-fit: cover; display: block; }
.why-image::after {
  content: '';
  position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px;
  border: 1px solid rgba(196,120,42,0.28);
  pointer-events: none; z-index: -1;
}
.why-text .section-title { margin-bottom: 1.8rem; }
.why-text p { font-size: 0.96rem; line-height: 1.95; color: var(--text); margin-bottom: 1.4rem; }
.why-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.why-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.9rem; color: var(--text);
}
.why-list li::before { content: '—'; color: var(--amber); flex-shrink: 0; margin-top: 2px; }

/* ── BOOKING SECTION ──────────────────────────────── */
.booking-section { background: var(--deep); }
.booking-intro { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.booking-intro p { font-size: 0.96rem; line-height: 1.85; color: var(--text); margin-top: 1.5rem; }
.booking-frame-wrap {
  border: 1px solid rgba(196,120,42,0.22);
  overflow: hidden; background: #fff;
  position: relative; min-height: 720px;
}
.booking-frame-wrap iframe { width: 100%; height: 780px; border: none; display: block; }
.booking-note {
  text-align: center; margin-top: 1.2rem;
  font-size: 0.72rem; letter-spacing: 0.1em; color: var(--muted);
}
.booking-note a { color: var(--amber); text-decoration: none; }
.booking-note a:hover { color: var(--gold); }

/* ── GALLERY PREVIEW ──────────────────────────────── */
.gallery-preview { background: var(--forest); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto auto;
  gap: 4px; margin-top: 3rem;
}
.gp-item { overflow: hidden; position: relative; }
.gp-item img {
  width: 100%; height: 280px; object-fit: cover;
  transition: all 0.6s ease; opacity: 0.82; display: block;
}
.gp-item:hover img { transform: scale(1.05); opacity: 1; }
.gp-item.wide { grid-column: span 2; }
.gp-item.wide img { height: 280px; }
.gp-item.tall { grid-row: span 2; }
.gp-item.tall img { height: 564px; }
.gallery-preview .btn-wrap { text-align: center; margin-top: 3rem; }

/* ── BLOG PREVIEW ─────────────────────────────────── */
.blog-preview { background: var(--deep); }
.blog-cards {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.blog-card {
  background: var(--forest); text-decoration: none;
  display: block; overflow: hidden;
  transition: transform 0.35s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s; opacity: 0.78;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); opacity: 0.9; }
.blog-card-body { padding: 1.8rem; }
.blog-tag {
  font-size: 0.58rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 0.7rem; display: block;
}
.blog-card h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--cream); line-height: 1.3; margin-bottom: 0.7rem;
}
.blog-card p { font-size: 0.82rem; line-height: 1.75; color: var(--muted); }
.blog-preview .btn-wrap { text-align: center; margin-top: 3rem; }

/* ── CONTACT / FOOTER ─────────────────────────────── */
.contact { background: var(--forest); border-top: 1px solid rgba(196,120,42,0.18); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem; margin-top: 4rem;
}
.contact-block h4 {
  font-size: 0.6rem; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.1rem;
}
.contact-block p, .contact-block address {
  font-size: 0.88rem; line-height: 1.9; color: var(--text); font-style: normal;
}
.contact-block a {
  font-size: 0.88rem; color: var(--text); text-decoration: none;
  display: block; line-height: 2; transition: color 0.3s;
}
.contact-block a:hover { color: var(--gold); }
.contact-partner {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber); text-decoration: none;
  border: 1px solid rgba(196,120,42,0.3); padding: 0.5rem 1rem;
  margin-top: 1rem; transition: all 0.3s;
}
.contact-partner:hover { background: rgba(196,120,42,0.1); color: var(--gold); }
footer {
  background: var(--deep); border-top: 1px solid rgba(196,120,42,0.1);
  padding: 2rem; text-align: center;
}
footer p { font-size: 0.66rem; letter-spacing: 0.15em; color: var(--muted); line-height: 2; }
footer a { color: var(--amber); text-decoration: none; }

/* ── INNER PAGE HEADER ────────────────────────────── */
.page-header {
  padding: 11rem 0 5rem; text-align: center;
  background: var(--forest); position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(196,120,42,0.07) 0%, transparent 65%);
}
.page-header .section-title { margin-top: 0.8rem; }

/* ── GALLERY PAGE ─────────────────────────────────── */
.gallery-full { background: var(--deep); }
.gallery-masonry { columns: 3; column-gap: 4px; margin-top: 3rem; }
.gallery-masonry img {
  width: 100%; display: block; margin-bottom: 4px;
  opacity: 0.82; transition: opacity 0.35s, transform 0.35s;
  cursor: pointer; break-inside: avoid;
}
.gallery-masonry img:hover { opacity: 1; transform: scale(1.01); }

/* lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.94); z-index: 1000;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: var(--cream); font-size: 2.2rem;
  cursor: pointer; background: none; border: none;
  font-family: 'Jost', sans-serif; line-height: 1;
}

/* ── BLOG LISTING PAGE ───────────────────────────── */
.blog-full { background: var(--deep); }
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }

/* ── BLOG POST ───────────────────────────────────── */
.post-wrap { background: var(--deep); padding-top: 80px; }
.post-hero { width: 100%; height: 55vh; object-fit: cover; opacity: 0.75; display: block; }
.post-body { max-width: 780px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.post-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--amber); text-decoration: none;
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 2.5rem; transition: color 0.3s;
}
.post-back:hover { color: var(--gold); }
.post-tag { margin-bottom: 0.8rem; }
.post-body h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400; color: var(--cream); line-height: 1.15;
  margin-bottom: 2.5rem;
}
.post-body h2 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.75rem; font-weight: 400;
  color: var(--gold); margin: 3rem 0 1rem;
}
.post-body p { font-size: 0.97rem; line-height: 1.95; color: var(--text); margin-bottom: 1.5rem; }
.post-body ul { list-style: none; margin: 1.5rem 0 1.5rem 0; }
.post-body ul li {
  padding: 0.45rem 0 0.45rem 1.6rem;
  position: relative; font-size: 0.94rem;
  line-height: 1.75; color: var(--text);
}
.post-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--amber); }
.post-body .highlight {
  background: var(--forest); border-left: 3px solid var(--amber);
  padding: 1.4rem 1.8rem; margin: 2rem 0;
  font-family: 'Cormorant Garant', serif;
  font-size: 1.25rem; font-style: italic; color: var(--cream); line-height: 1.6;
}
.post-mid-img { width: 100%; height: 380px; object-fit: cover; opacity: 0.8; margin: 2.5rem 0; }
.post-cta {
  background: var(--forest); padding: 3rem;
  text-align: center; margin-top: 4rem;
  border: 1px solid rgba(196,120,42,0.22);
}
.post-cta h3 {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.8rem; color: var(--cream); margin-bottom: 0.8rem;
}
.post-cta p { font-size: 0.88rem; color: var(--text); margin-bottom: 1.8rem; }

/* ── BOOKING PAGE ─────────────────────────────────── */
.booking-page { background: var(--deep); padding-top: 80px; min-height: 100vh; }
.booking-page .booking-frame-wrap { min-height: 85vh; border: none; }
.booking-page .booking-frame-wrap iframe { height: 85vh; }

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-image img { height: 380px; }
  .why-image::after { display: none; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 55vw; min-height: 300px; }
  .services-divider { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gp-item.wide { grid-column: span 1; }
  .gp-item.tall img { height: 280px; }
  .gp-item.tall { grid-row: span 1; }
  .blog-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .partner-badge { bottom: 5rem; right: 1rem; }
  .hero-cta { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── BOOKING CTA BOX (homepage) ───────────────────── */
.booking-cta-box {
  border: 1px solid rgba(196,120,42,0.25);
  background: var(--forest);
}
.booking-cta-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center; padding: 3.5rem;
}
.booking-cta-details { display: flex; flex-direction: column; gap: 1.4rem; }
.booking-cta-item { display: flex; align-items: flex-start; gap: 1.1rem; }
.bci-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.booking-cta-item strong {
  display: block; font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem; color: var(--cream); font-weight: 400; margin-bottom: 2px;
}
.booking-cta-item span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.booking-cta-action { text-align: center; min-width: 240px; }
.booking-cta-action p { font-size: 0.84rem; color: var(--text); margin-bottom: 1.5rem; line-height: 1.6; }
.booking-cta-sub {
  display: block; font-size: 0.65rem;
  letter-spacing: 0.12em; color: var(--muted); margin-top: 0.9rem;
}
@media (max-width: 750px) {
  .booking-cta-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .booking-cta-action { text-align: left; }
}
