/* =========================================================
   LIKE HOSPITALITY — refined institutional minimalism
   Palette: navy + forest green on cream/white
   ========================================================= */

:root {
  /* Palette */
  --navy: #1F2D5A;
  --navy-deep: #14204A;
  --navy-soft: #4A5A85;
  --green: #2C5F2D;
  --green-soft: #4F7F4F;
  --ink: #1A1A1A;
  --muted: #6B7280;
  --rule: #C9CDD6;
  --bg: #FFFFFF;
  --cream: #F8F7F3;       /* warm off-white for soft sections */
  --panel: #F1F2F5;       /* subtle navy-tinted panel */
  --panel-warm: #EFEDE5;  /* cream panel for warmth */
  --gold: #B89F5B;        /* sparingly, premium accent */

  /* Typography */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
em { font-style: italic; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.tm {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--green);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--navy-deep); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: white;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 75%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(44,95,45,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--green-soft);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(79,127,79,0.4);
  animation: fadeUp 0.8s ease-out;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease-out 0.1s backwards;
}

.hero-title em {
  color: #B5BCD0;
  font-style: italic;
  font-weight: 400;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  color: #C9CDE0;
  font-weight: 400;
  margin-bottom: 3rem;
  animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  animation: fadeUp 1.1s ease-out 0.3s backwards;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: white;
  color: var(--navy);
  border: 1px solid white;
}

.btn-primary:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: white;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
}

.hero-rule {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 2.5rem;
  animation: scaleX 1.2s ease-out 0.4s backwards;
  transform-origin: left;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  animation: fadeUp 1.3s ease-out 0.5s backwards;
}

.hero-meta-item {
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 1.2rem;
}

.meta-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: white;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.meta-label {
  font-size: 0.78rem;
  color: #B5BCD0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleX {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ============================================
   GENERIC SECTION
   ============================================ */
.section {
  padding: 6rem 0;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.eyebrow-light { color: rgba(255,255,255,0.65); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-title-light { color: white; }

.section-lede {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.section-lede-light { color: rgba(255,255,255,0.85); }

.section-lede:last-of-type { margin-bottom: 0; }

.section-foot {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  max-width: 800px;
  margin: 4rem auto 0;
}

.section-foot-light {
  color: rgba(255,255,255,0.85);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem {
  background: var(--cream);
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reason-card {
  background: white;
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--navy);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31,45,90,0.08);
}

.reason-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--panel);
  line-height: 1;
  margin-bottom: 1rem;
}

.reason-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.reason-card p {
  color: var(--ink);
  line-height: 1.6;
}

/* ============================================
   WHAT WE DO — DASHBOARDS
   ============================================ */
.section-what {
  background: white;
}

.dashboards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dashboard-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s ease;
}

.dashboard-card:hover {
  background: var(--panel-warm);
}

.dashboard-num {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.dashboard-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.dashboard-rule {
  width: 36px;
  height: 1px;
  background: var(--navy);
  margin-bottom: 1.2rem;
}

.dashboard-card p {
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.dashboard-feats {
  border-top: 1px solid var(--rule);
  padding-top: 1.2rem;
}

.dashboard-feats li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1rem;
}

.dashboard-feats li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
}

/* ============================================
   TECHNICAL LAYER
   ============================================ */
.section-tech {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-tech::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(44,95,45,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-head-light .section-lede strong {
  color: white;
  font-weight: 600;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 4rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.system {
  background: var(--navy);
  padding: 2rem 1.5rem;
  transition: background 0.25s ease;
}

.system:hover {
  background: var(--navy-deep);
}

.system-icon {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--green-soft);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.system h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.system p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ============================================
   WSJ
   ============================================ */
.section-wsj {
  background: var(--cream);
}

.wsj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.wsj-text .eyebrow { display: inline-block; }
.wsj-text .section-title { text-align: left; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.wsj-text .section-lede { color: var(--ink); }
.wsj-text .section-lede strong { color: var(--navy); }

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--navy);
  border-left: 3px solid var(--green);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-top: 2rem;
}

.wsj-data {
  background: white;
  padding: 2rem;
  border-top: 3px solid var(--navy);
  box-shadow: 0 4px 20px rgba(31,45,90,0.05);
}

.wsj-data-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0.5rem;
}

.wsj-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--ink);
}

.wsj-row:last-of-type { border-bottom: none; }

.wsj-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy);
}

.wsj-quotes {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.wsj-quotes p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.6rem 0 0.6rem 1rem;
  border-left: 2px solid var(--green);
  margin-bottom: 0.8rem;
}

/* ============================================
   USE CASES
   ============================================ */
.section-uses {
  background: white;
}

.uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.use-card {
  padding: 3rem 2.5rem;
  position: relative;
  transition: transform 0.3s ease;
}

.use-spot {
  background: var(--cream);
  border-left: 3px solid var(--navy);
}

.use-cont {
  background: var(--navy);
  color: white;
  border-left: 3px solid var(--green);
}

.use-card:hover { transform: translateY(-3px); }

.use-label {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.use-spot .use-label { color: var(--navy); }
.use-cont .use-label { color: rgba(255,255,255,0.7); }

.use-card h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.use-spot h3 { color: var(--navy); }
.use-cont h3 { color: white; }

.use-tag {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.use-spot .use-tag { color: var(--muted); }
.use-cont .use-tag { color: rgba(255,255,255,0.75); }

.use-card ul li {
  padding: 0.55rem 0 0.55rem 1.2rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.use-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
}

.use-spot ul li::before { color: var(--navy); }
.use-cont ul li::before { color: var(--green-soft); }

/* ============================================
   ABOUT
   ============================================ */
.section-about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text .eyebrow { display: inline-block; }
.about-text .section-title { text-align: left; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link-arrow:hover {
  color: var(--green);
  border-color: var(--green);
}

.about-side {
  display: grid;
  gap: 2rem;
}

.about-stat {
  border-left: 2px solid var(--green);
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-num span {
  font-size: 0.55em;
  color: var(--muted);
  margin-left: 0.2em;
  font-weight: 400;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.about-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  margin-top: 1rem;
}

.about-logos span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--navy-soft);
}

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
  background: var(--navy);
  padding: 5rem 0;
}

.contact-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.contact-lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-card .btn {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
}

.contact-meta {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  padding: 2.5rem 0;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand .brand-mark {
  color: white;
  font-size: 1.2rem;
}

.footer-tag {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.footer-meta {
  text-align: right;
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero { padding: 5rem 0 4rem; }
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .reasons,
  .dashboards { grid-template-columns: 1fr; gap: 1rem; }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .wsj-grid,
  .uses,
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .section { padding: 4.5rem 0; }
  .section-head { margin-bottom: 3rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links li:not(:last-child) { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 540px) {
  .systems-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
}

/* ============================================
   SCROLL REVEAL (subtle)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
