/* ============ Solara Wellness — shared foundation ============ */

:root {
  --bg: #f3ece1;
  --panel: #faf6ee;
  --card: #fcf9f3;
  --white: #fffdf8;
  --ink: #40362b;
  --ink-soft: #574c3e;
  --muted: #8b7f6f;
  --terra: #bc6936;
  --terra-deep: #a8542a;
  --terra-pale: #f6e7d7;
  --line: #e9dfce;
  --grad: linear-gradient(135deg, #d2854e 0%, #bc6936 55%, #a8542a 100%);
  --shadow-soft: 0 10px 30px rgba(94, 70, 45, 0.08);
  --shadow-card: 0 14px 36px rgba(94, 70, 45, 0.1);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

.page {
  max-width: 1480px;
  margin: 0 auto;
  padding: 22px 28px 34px;
}

.icon { width: 1em; height: 1em; flex: none; }

/* ---------- Navigation ---------- */

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--panel);
  border-radius: 999px;
  padding: 14px 16px 14px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 26px;
}

.brand .icon {
  width: 30px;
  height: 30px;
  color: var(--terra);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--ink);
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.46em;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.18s ease;
}

.nav-links a:hover { color: var(--terra); }

.nav-links a.active {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 15px 26px;
  white-space: nowrap;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.btn:hover { filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--grad);
  color: #fff7ee;
  box-shadow: 0 10px 22px rgba(168, 84, 42, 0.32);
}

.btn-primary .icon { width: 16px; height: 16px; }

.btn-light {
  background: var(--white);
  color: var(--terra-deep);
  box-shadow: 0 6px 16px rgba(70, 40, 20, 0.16);
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  transition: gap 0.18s ease;
}

.link-cta:hover { gap: 13px; }

.link-cta .icon { width: 13px; height: 13px; }

.link-cta.on-dark { color: #fff7ee; }

/* ---------- Eyebrow / headings ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
}

.eyebrow.dashed::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--terra);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.06;
}

.display {
  font-size: clamp(44px, 4.6vw, 66px);
  letter-spacing: 0.005em;
  margin: 18px 0 22px;
}

.lede {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 430px;
}

/* ---------- Feature chips ---------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(233, 223, 206, 0.8);
  border-radius: 14px;
  padding: 10px 18px 10px 10px;
  box-shadow: 0 6px 18px rgba(94, 70, 45, 0.07);
}

.chip-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--terra);
}

.chip-icon .icon { width: 19px; height: 19px; }

.chip span {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-soft);
}

/* ---------- Hero (landing + accommodations) ---------- */

.hero {
  position: relative;
  margin-top: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--panel);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(244, 237, 226, 0.97) 0%,
    rgba(244, 237, 226, 0.88) 32%,
    rgba(244, 237, 226, 0.42) 52%,
    rgba(244, 237, 226, 0) 70%
  );
}

.hero-content {
  position: relative;
  padding: 64px 70px;
  max-width: 730px;
}

.hero .chips { margin: 30px 0 34px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ---------- Cards / panels ---------- */

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
}

.icon-row + .icon-row { border-top: 1px solid var(--line); }

.icon-bubble {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--terra-pale);
  color: var(--terra);
  flex: none;
}

.icon-bubble .icon { width: 22px; height: 22px; }

.icon-row strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.icon-row small {
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.label-caps {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
}

/* ---------- Check list ---------- */

.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}

.check-list .icon {
  width: 18px;
  height: 18px;
  color: var(--terra);
}

/* ---------- CTA bar (countdown / journey) ---------- */

.cta-bar {
  margin-top: 34px;
  background: var(--grad);
  border-radius: 22px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff7ee;
  box-shadow: 0 18px 40px rgba(168, 84, 42, 0.3);
}

.cta-bar .sun-icon {
  width: 26px;
  height: 26px;
  color: rgba(255, 247, 238, 0.95);
  flex: none;
}

.cta-bar-label {
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
}

.cta-bar-title { font-size: 15.5px; font-weight: 600; }

.cta-bar-sub {
  font-size: 12.5px;
  color: rgba(255, 247, 238, 0.82);
  margin-top: 3px;
}

.countdown {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

.count-cell {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  min-width: 66px;
  padding: 9px 12px 7px;
  text-align: center;
}

.count-cell b {
  display: block;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.count-cell span {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 247, 238, 0.8);
}

.cta-bar .btn-light { margin-left: 18px; }

.cta-bar .spacer { margin-left: auto; }

/* ============ Landing page ============ */

.overview {
  display: grid;
  grid-template-columns: 0.92fr 1fr 1.42fr;
  gap: 34px;
  align-items: center;
  margin-top: 36px;
}

.overview-facts { padding: 12px 30px; }

.overview-copy h2 {
  font-size: clamp(30px, 2.6vw, 40px);
  margin: 14px 0 18px;
}

.overview-copy p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 360px;
}

.included {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 26px;
  align-items: stretch;
  padding: 26px 28px;
}

.included .label-caps { display: block; margin-bottom: 16px; }

.video-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 230px;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 253, 248, 0.9);
  background: rgba(255, 253, 248, 0.28);
  backdrop-filter: blur(3px);
  color: #fffdf8;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.18s ease;
}

.play-button:hover { background: rgba(255, 253, 248, 0.45); }

.play-button .icon { width: 20px; height: 20px; margin-left: 3px; }

/* ============ About page ============ */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}

.about-hero .display { font-size: clamp(40px, 3.8vw, 56px); }

.about-hero .chips { margin-top: 32px; }

.about-hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.philosophy {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 34px;
  margin-top: 34px;
  box-shadow: var(--shadow-soft);
}

.philosophy-intro {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
}

.philosophy-intro h2 { font-size: 34px; margin-bottom: 16px; }

.philosophy-intro p { font-size: 14px; color: var(--muted); }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}

.value {
  text-align: center;
  padding: 26px 22px;
}

.value + .value { border-left: 1px solid var(--line); }

.value .icon {
  width: 30px;
  height: 30px;
  color: var(--terra);
  margin-bottom: 14px;
}

.value h3 {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 9px;
}

.value p { font-size: 13px; color: var(--muted); line-height: 1.55; }

.sanctuary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 34px;
  padding: 52px 60px 46px;
  text-align: center;
}

.sanctuary-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sanctuary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(244, 237, 226, 0.82) 0%,
    rgba(244, 237, 226, 0.6) 55%,
    rgba(244, 237, 226, 0.74) 100%
  );
}

.sanctuary > :not(.sanctuary-bg) { position: relative; z-index: 1; }

.sanctuary h2 { font-size: clamp(28px, 2.4vw, 36px); margin-bottom: 30px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat + .stat { border-left: 1px solid rgba(168, 84, 42, 0.3); }

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 500;
  color: var(--terra-deep);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat span { font-size: 13px; color: var(--ink-soft); line-height: 1.45; display: inline-block; max-width: 200px; }

/* ============ Accommodations page ============ */

.rooms-head {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 44px 0 26px;
  padding: 0 6px;
}

.rooms-head h2 { font-size: clamp(30px, 2.6vw, 40px); margin-top: 10px; }

.rooms-head .rooms-intro {
  font-size: 14px;
  color: var(--muted);
  max-width: 380px;
  margin-left: 20px;
}

.carousel-nav {
  margin-left: auto;
  display: flex;
  gap: 12px;
}

.carousel-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.carousel-nav button:hover { color: var(--terra); border-color: var(--terra); }

.carousel-nav .icon { width: 17px; height: 17px; }

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.room-card {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 20px;
  padding: 16px;
}

.room-photo {
  border-radius: 14px;
  overflow: hidden;
}

.room-photo img {
  width: 100%;
  height: 100%;
  min-height: 252px;
  object-fit: cover;
}

.room-info { padding: 12px 8px 10px 0; display: flex; flex-direction: column; }

.room-info h3 { font-size: 24px; margin-bottom: 10px; }

.room-info > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.room-meta {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.room-meta li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}

.room-meta .icon { width: 17px; height: 17px; color: var(--terra); }

.room-info .link-cta { margin-top: auto; }

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .overview { grid-template-columns: 1fr 1fr; }
  .overview .included { grid-column: 1 / -1; }
  .rooms { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
}

@media (max-width: 980px) {
  .about-hero, .philosophy { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(3) { border-left: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .stat:nth-child(3) { border-left: 0; }
  .rooms-head { flex-wrap: wrap; gap: 18px; }
  .overview { grid-template-columns: 1fr; }
}

/* ---------- Responsive (shared) ---------- */

@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .hero-content { padding: 48px 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .site-nav { justify-content: space-between; }
  .hero-veil {
    background: linear-gradient(
      90deg,
      rgba(244, 237, 226, 0.95) 0%,
      rgba(244, 237, 226, 0.75) 60%,
      rgba(244, 237, 226, 0.4) 100%
    );
  }
  .cta-bar { flex-wrap: wrap; }
  .countdown { margin-left: 0; }
}
