/*
Theme Name: Crestmont Hotel
Author: Crestmont
Description: A polished mountain hotel theme for Crestmont on Kabnekaise.
Version: 1.1.0
*/

:root {
  --ink: #122026;
  --muted: #5a6970;
  --line: #d9e2e4;
  --paper: #f7f4ee;
  --snow: #ffffff;
  --pine: #143d35;
  --fjord: #1d6572;
  --copper: #b46a3c;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247,244,238,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18,32,38,.12);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: grid;
  gap: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand strong { font-size: 22px; line-height: 1; }
.brand span { font-size: 10px; color: var(--muted); letter-spacing: .18em; margin-top: 4px; }
.menu {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #26363b;
}
.button, .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--pine);
  color: white;
  border-radius: 4px;
  font-weight: 700;
}
.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  background: linear-gradient(180deg, rgba(18,32,38,.20), rgba(18,32,38,.78)), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: white;
}
.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 110px 24px 64px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: #d8e9ec;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  margin: 0;
}
h1 {
  max-width: 920px;
  font-size: clamp(46px, 8vw, 96px);
  letter-spacing: 0;
  margin-top: 18px;
}
.hero p {
  max-width: 650px;
  font-size: 20px;
  color: #eef6f7;
  margin: 24px 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button.secondary {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.45);
}
.section {
  padding: 68px 24px;
}
.section.tight {
  padding-top: 34px;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .6fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}
.section h2 {
  font-size: clamp(34px, 5vw, 60px);
}
.lead {
  color: var(--muted);
  font-size: 18px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(217,226,228,.82);
  border-radius: 8px;
  padding: 24px;
  min-height: 168px;
  box-shadow: 0 14px 30px rgba(18,32,38,.05);
}
.card h3 { font-size: 24px; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; }
.image-card {
  overflow: hidden;
  padding: 0;
}
.image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.image-card div {
  padding: 24px;
}
.experience-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18,32,38,.06);
}
.experience-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.experience-card div {
  padding: 26px;
}
.experience-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.experience-card p {
  margin: 0;
  color: var(--muted);
}
.booking-strip {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.booking-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18,32,38,.16);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}
.booking-field {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}
.booking-field span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
.booking-field strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}
.booking-field.action {
  background: var(--copper);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
}
.stat-band {
  background: var(--pine);
  color: white;
}
.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.18);
}
.stat {
  background: var(--pine);
  padding: 28px;
}
.stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.photo-panel {
  min-height: 520px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20,61,53,.08), rgba(20,61,53,.12)), var(--valley-image);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.image-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}
.image-strip figure {
  margin: 0;
  position: relative;
  min-height: 250px;
  border-radius: 8px;
  overflow: hidden;
  background: #d9e2e4;
}
.image-strip figure:first-child { min-height: 340px; }
.image-strip img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.image-strip figcaption {
  display: none;
}
.list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.list-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.list-item strong { display: block; font-size: 18px; }
.list-item span { color: var(--muted); }
.page-hero {
  padding: 88px 24px 54px;
  background: var(--pine);
  color: white;
}
.page-hero .wrap { display: grid; gap: 16px; }
.page-hero h1 { font-size: clamp(42px, 7vw, 76px); }
.content {
  background: var(--paper);
  padding: 64px 24px;
}
.content .wrap {
  max-width: 900px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px;
}
.content h2, .content h3 { margin-top: 30px; margin-bottom: 12px; }
.content p, .content li { color: var(--muted); }
.content figure {
  margin: 28px 0;
}
.content figure img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.content figure figcaption {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}
.quote-band {
  background: #eef3f1;
}
.quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin: 0;
}
.quote span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.site-footer {
  background: #0e1b20;
  color: #d8e2e4;
  padding: 42px 24px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.site-footer strong { color: white; }
.site-footer p { color: #aebdc2; margin: 8px 0 0; }
@media (max-width: 820px) {
  .nav, .menu { align-items: flex-start; }
  .nav { flex-direction: column; }
  .section-head, .split, .grid-2, .grid-3, .stats, .footer-grid, .booking-strip-inner, .image-strip { grid-template-columns: 1fr; }
  .hero { min-height: 760px; }
  .booking-strip { margin-top: 0; }
}