/* RetreatOS — Hospitality OS Landing Page */

:root {
  --bg-dark: #0c1a0e;
  --bg-darker: #07120a;
  --bg-cream: #faf7f2;
  --text-light: #e8dcc4;
  --text-light-muted: rgba(232, 220, 196, 0.6);
  --text-dark: #1c1c1a;
  --text-dark-muted: rgba(28, 28, 26, 0.6);
  --accent: #c9883a;
  --accent-dim: rgba(201, 136, 58, 0.15);
  --forest: #2a5c38;
  --forest-light: rgba(42, 92, 56, 0.15);
  --border: rgba(232, 220, 196, 0.12);
  --border-dark: rgba(28, 28, 26, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #2a5c38, transparent 70%);
  top: -150px;
  left: -200px;
  animation: drift 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #c9883a, transparent 70%);
  bottom: 50px;
  right: -100px;
  animation: drift 14s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #1d4a28, transparent 70%);
  top: 30%;
  right: 20%;
  animation: drift 22s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light-muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light-muted);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light-muted);
}

.scroll-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Features */
.features {
  background: var(--bg-cream);
  padding: 7rem 2rem;
  color: var(--text-dark);
}

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

.section-header {
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  max-width: 600px;
}

.section-title em {
  font-style: italic;
  color: var(--forest);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.feature-card {
  background: var(--bg-cream);
  padding: 2.5rem 2rem;
  transition: background 0.2s ease;
}

.feature-card:hover {
  background: #f4f0e9;
}

.feature-icon {
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-dark-muted);
}

/* Operators */
.operators {
  background: var(--bg-dark);
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.operators-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.operators-left .section-label {
  color: var(--accent);
}

.operators-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.operators-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 2rem;
}

.operators-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.operators-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.check {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.operator-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat {
  background: rgba(42, 92, 56, 0.08);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.stat:hover {
  background: rgba(42, 92, 56, 0.15);
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* Manifesto */
.manifesto {
  background: var(--forest);
  padding: 7rem 2rem;
}

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

.manifesto-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.5);
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.manifesto-divider {
  width: 60px;
  height: 1px;
  background: rgba(232, 220, 196, 0.3);
  margin: 0 auto 3rem;
}

.manifesto-answer-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.manifesto-answer-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light-muted);
}

/* Closing */
.closing {
  background: var(--bg-darker);
  padding: 7rem 2rem;
}

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

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-light-muted);
  margin-bottom: 4rem;
  line-height: 1.7;
}

.closing-visual {
  max-width: 600px;
  margin: 0 auto;
}

.visual-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 0.75rem;
}

.bar-fill {
  height: 12px;
  border-radius: 2px;
  background: var(--accent-dim);
}

.bar-1 { width: 25%; background: rgba(232, 220, 196, 0.15); }
.bar-2 { width: 25%; background: rgba(232, 220, 196, 0.3); }
.bar-3 { width: 25%; background: rgba(201, 136, 58, 0.4); }
.bar-4 { width: 25%; background: var(--accent); }

.visual-labels {
  display: flex;
  justify-content: space-between;
}

.visual-labels span {
  font-size: 0.68rem;
  color: var(--text-light-muted);
  text-align: center;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-light);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-light-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .features { padding: 5rem 1.5rem; }
  .operators { padding: 5rem 1.5rem; }
  .operators-inner { grid-template-columns: 1fr; gap: 3rem; }
  .manifesto { padding: 5rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .visual-labels { flex-wrap: wrap; gap: 0.5rem; }
}