/* corporate-retreat.css — page-specific styles */

/* Dark page body — overrides base.css linen default */
body {
  background: var(--ink);
  color: var(--text);
}

/* ── GRAIN OVERLAY ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}

nav.scrolled {
  background: rgba(13,15,12,0.94);
  backdrop-filter: blur(16px);
  border-color: var(--rim);
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 9px 22px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold-lt); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 40px 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,15,12,0.3) 0%, rgba(13,15,12,0.15) 40%, rgba(13,15,12,0.72) 75%, rgba(13,15,12,1) 100%),
    linear-gradient(135deg, #1a2010 0%, #0d1208 40%, #1a1410 100%);
  z-index: 0;
}

/* Simulated mountain silhouette layers */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background:
    radial-gradient(ellipse 120% 60% at 50% 100%, rgba(30,45,20,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 20% 100%, rgba(20,35,15,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 35% at 80% 100%, rgba(25,40,18,0.4) 0%, transparent 55%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 60% 30%, rgba(201,165,90,0.06) 0%, transparent 60%);
}

/* Stars */
.stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.stars::before, .stars::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 5%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 18%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 30%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 28%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 32%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 48% 12%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 22%, rgba(255,255,255,0.5) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--soft);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

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

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: none;
  color: var(--soft);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rim);
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--gold-bdr); color: var(--text); }

/* ── HERO STAT BAR ───────────────────────────── */
.stat-bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--rim);
  margin-top: 64px;
  opacity: 0;
  animation: riseIn 0.7s ease 0.9s forwards;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 24px 28px;
  border-right: 1px solid var(--rim);
}

.stat-item:last-child { border-right: none; }

.stat-n {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-l {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTIONS ──────────────────────────────── */
section { padding: 100px 40px; }

.inner { max-width: 1080px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h2 em { font-style: italic; color: var(--gold-lt); }

.section-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--soft);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ── WHY SECTION ─────────────────────────── */
.why { background: var(--deep); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--rim);
  border-radius: var(--r);
  overflow: hidden;
}

.why-item {
  background: var(--panel);
  padding: 36px 32px;
  position: relative;
  transition: background 0.25s;
}

.why-item:hover { background: var(--surface); }

.why-item::before {
  content: attr(data-num);
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--rim);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.25s;
}

.why-item:hover::before { color: var(--gold-dim); }

.why-icon {
  font-size: 20px;
  margin-bottom: 16px;
}

.why-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-/* ── SCHEDULE SECTION ───────────────────── */
.schedule { background: var(--ink); }

.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.schedule-copy p {
  font-size: 15px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.75;
  margin-bottom: 14px;
}

.schedule-copy p strong {
  color: var(--text);
  font-weight: 500;
}

.schedule-timeline {
  position: relative;
}

.tl-item.visible { opacity: 1; transform: none; }
.js-ready .tl-item:last-child { padding-bottom: 0; }

.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.tl-line {
  width: 1px;
  flex: 1;
  background: var(--rim);
  margin-top: 6px;
}

.tl-item:last-child .tl-line { display: none; }

.tl-time {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  white-space: nowrap;
  min-width: 80px;
}

.tl-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.tl-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── SPACES SECTION ──────────────────── */
.spaces { background: var(--deep); }

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.space-card {
  background: var(--panel);
  border: 1px solid var(--rim);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}

.space-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.space-card:hover { border-color: var(--gold-bdr); background: var(--surface); }
.space-card:hover::after { opacity: 1; }

.space-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-bdr);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.space-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}

.space-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.space-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.space-pill {
  font-size: 11px;
  font-weight: 400;
  color: var(--soft);
  background: var(--rim);
  padding: 3px 9px;
  border-radius: 20px;
}

/* ── PRICING SECTION ──────────────────── */
.pricing { background: var(--ink); }

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.pricing-card {
  background: var(--panel);
  border: 1px solid var(--rim);
  border-radius: var(--r);
  padding: 36px 32px;
  transition: border-color 0.3s;
}

.pricing-card.featured {
  border-color: var(--gold-bdr);
  background: linear-gradient(135deg, var(--panel) 0%, rgba(201,165,90,0.05) 100%);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-bdr);
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 20px;
}

.pricing-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.pricing-nights {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 300;
}

.pricing-rate {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
}

.pricing-unit {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.pricing-per-head {
  font-size: 12px;
  font-weight: 300;
  color: var(--sage);
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: var(--rim);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-bdr);
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
}

.pricing-features li::before {
  background: var(--gold-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23C9A55A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/8px no-repeat;
}

.pricing-note {
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-top: 24px;
  grid-column: 1 / -1;
}

.pricing-note p {
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
}

.pricing-note strong { color: var(--text); font-weight: 500; }

/* ── TESTIMONIAL ──────────────────────── */
.testimonial-section { background: var(--deep); padding: 80px 40px; }

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold-bdr);
  margin-bottom: 16px;
  display: block;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 28px;
}

.quote-attr {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-attr span { color: var(--gold); }

/* ── COMPARISON ──────────────────────── */
.compare { background: var(--ink); }

.compare-table {
  width: 100%;
  margin-top: 52px;
  border-collapse: collapse;
  border: 1px solid var(--rim);
  border-radius: var(--r);
  overflow: hidden;
}

.compare-table th {
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  background: var(--panel);
  color: var(--muted);
  border-bottom: 1px solid var(--rim);
}

.compare-table th:first-child { color: var(--soft); }
.compare-table th.hl { color: var(--gold); background: rgba(201,165,90,0.07); }

.compare-table td {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
  border-bottom: 1px solid var(--rim);
  vertical-align: middle;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table td.hl {
  background: rgba(201,165,90,0.04);
  color: var(--text);
  font-weight: 400;
}

.compare-table td:first-child {
  color: var(--text);
  font-weight: 400;
}

.check { color: var(--gold); }
.cross { color: var(--rim); }
.partial { color: var(--sage); }

/* ── CTA SECTION ─────────────────────── */
.cta-section {
  background: var(--deep);
  padding: 100px 40px;
}

.cta-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-copy h2 { margin-bottom: 14px; }

.cta-copy p {
  font-size: 15px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--soft);
}

.contact-row a { color: var(--gold); text-decoration: none; }
.contact-row a:hover { color: var(--gold-lt); }

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── FORM ────────────────────────────── */
.inquiry-form {
  background: var(--panel);
  border: 1px solid var(--rim);
  border-radius: var(--r);
  padding: 32px 28px;
}

.form-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-field.full { grid-column: 1 / -1; }

label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

input, select, textarea {
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-bdr);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A55A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

select option { background: var(--panel); }

textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }

.form-disclaimer {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ── FOOTER STRIP ─────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--rim);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--soft);
}

.footer-logo span { color: var(--gold); font-style: italic; }

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

/* ── ANIMATIONS ─────────────────────── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.reveal { }

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .spaces-grid { grid-template-columns: 1fr 1fr; }
  .schedule-layout { grid-template-columns: 1fr; gap: 40px; }
  .pricing-layout { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .compare-table { display: none; }
}

@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .hero, section, .cta-section, .testimonial-section { padding-left: 20px; padding-right: 20px; }
  .stat-bar { display: none; }
  .spaces-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 20px; flex-direction: column; align-items: flex-start; }
}
