/* ============================================
   Hudson View Holdings, LLC
   Corporate Steel Blue / Slate Grey Palette
   Derived from logo: #60777f
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Core brand color from logo */
  --brand: #60777f;
  --brand-light: #7a9aa5;
  --brand-lighter: #97b5bf;
  --brand-dark: #4a5f66;
  --brand-glow: rgba(96, 119, 127, 0.12);

  /* Backgrounds — soft dark, not pure black */
  --bg-primary: #111820;
  --bg-secondary: #151d25;
  --bg-card: #1a232c;
  --bg-card-hover: #1f2a34;

  /* Text */
  --text-primary: #e4e8eb;
  --text-secondary: #9aa5ad;
  --text-dim: #5e6b75;

  /* Borders */
  --border: rgba(96, 119, 127, 0.12);
  --border-brand: rgba(96, 119, 127, 0.25);

  /* Accent — subtle warm grey for contrast */
  --accent: #b8c4cc;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(96,119,127,0.04) 0%, transparent 100%),
    radial-gradient(ellipse 40% 60% at 85% 70%, rgba(96,119,127,0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(17,24,32,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* Logo as image */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo img {
  height: 48px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--brand-light); line-height: 1.2; }
.logo-sub { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); font-weight: 500; }

.nav-links { display: flex; list-style: none; gap: 0; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 0.78rem; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-secondary); padding: 0.5rem 1.1rem;
  transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-light); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 1.1rem; right: 1.1rem;
  height: 1.5px; background: var(--brand);
}
.nav-cta {
  margin-left: 0.5rem; background: var(--brand) !important; color: #fff !important;
  font-weight: 600 !important; padding: 0.55rem 1.5rem !important; border-radius: 3px !important;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--brand-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--brand-light); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(96,119,127,0.07) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(96,119,127,0.04) 0%, transparent 50%);
  z-index: 1;
}
.hero-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-content { max-width: 720px; animation: slideUp 0.9s var(--ease) both; }
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--brand-light); font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 400; line-height: 1.15; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--brand-light); }
.divider { width: 50px; height: 1.5px; background: var(--brand); margin-bottom: 1.5rem; }
.divider-center { margin-left: auto; margin-right: auto; }
.hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 560px; line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; padding: 0.9rem 2.2rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.35s var(--ease); border-radius: 2px;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(96,119,127,0.25); }
.btn-ghost { background: transparent; color: var(--brand-light); border: 1px solid var(--border-brand); }
.btn-ghost:hover { border-color: var(--brand-light); background: rgba(96,119,127,0.08); transform: translateY(-2px); }

/* ---- SECTIONS ---- */
.section { padding: 7rem 2rem; position: relative; z-index: 1; }
.section-alt { background: var(--bg-secondary); }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .hero-eyebrow { margin-bottom: 1rem; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; margin-bottom: 1rem; }
.section-head p { color: var(--text-secondary); max-width: 580px; margin: 0 auto; font-size: 1rem; font-weight: 300; }

/* ---- SERVICE CARDS ---- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.svc-card {
  background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem;
  text-decoration: none; position: relative; overflow: hidden;
  transition: all 0.4s var(--ease); display: flex; flex-direction: column;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.svc-card:hover { border-color: var(--border-brand); background: var(--bg-card-hover); transform: translateY(-3px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card .icon { font-size: 1.8rem; margin-bottom: 1.5rem; }
.svc-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.75rem; }
.svc-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; font-weight: 300; flex: 1; }
.svc-card .card-arrow { margin-top: 1.5rem; color: var(--brand-light); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.svc-card .card-arrow::after { content: ' →'; }

/* ---- STATS ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat { text-align: center; }
.stat-val { font-family: var(--font-display); font-size: 2.4rem; color: var(--brand-light); display: block; }
.stat-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-top: 0.4rem; }

/* ---- SPLIT LAYOUT (SERVICE PAGES) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; padding-top: calc(var(--nav-h) + 4rem); }
.split-text h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; }
.split-text h1 em { color: var(--brand-light); font-style: italic; }
.split-text p { color: var(--text-secondary); font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; font-weight: 300; }
.features-list { list-style: none; margin: 2rem 0; }
.features-list li { padding: 0.7rem 0; border-bottom: 1px solid var(--border); color: var(--text-secondary); font-size: 0.92rem; display: flex; align-items: center; gap: 0.75rem; }
.features-list li::before { content: '◆'; color: var(--brand); font-size: 0.45rem; flex-shrink: 0; }
.visual-block {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px;
  padding: 3rem; text-align: center; display: flex; flex-direction: column;
  align-items: center; justify-content: center; min-height: 420px;
  position: sticky; top: calc(var(--nav-h) + 2rem);
}
.visual-block .big-icon { font-size: 4.5rem; margin-bottom: 1.5rem; }
.visual-block .tag { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 0.5rem; }
.visual-block .sub { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); }

/* ---- STEPS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.step { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem 2rem; transition: all 0.3s; }
.step:hover { border-color: var(--border-brand); transform: translateY(-2px); }
.step-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--brand); opacity: 0.4; margin-bottom: 1rem; }
.step h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; margin-bottom: 0.75rem; }
.step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

/* ---- CTA ---- */
.cta-band { text-align: center; padding: 6rem 2rem; position: relative; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, var(--brand-glow) 0%, transparent 65%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; margin-bottom: 0.75rem; }
.cta-band p { color: var(--text-secondary); margin-bottom: 2rem; font-weight: 300; }

/* ---- ABOUT ---- */
.about-text { max-width: 700px; margin: 0 auto; text-align: center; }
.about-text p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.5rem; font-weight: 300; }

/* ---- BENEFITS ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.benefit { padding: 2rem; border-left: 2px solid var(--border); transition: border-color 0.3s; }
.benefit:hover { border-color: var(--brand); }
.benefit h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; margin-bottom: 0.5rem; }
.benefit p { color: var(--text-secondary); font-size: 0.9rem; font-weight: 300; line-height: 1.7; }

/* ---- COFFEE ---- */
.coffee-card-wrap { display: flex; justify-content: center; padding-top: calc(var(--nav-h) + 5rem); min-height: 90vh; align-items: center; }
.coffee-card {
  background: var(--bg-card); border: 1px solid var(--border-brand); border-radius: 8px;
  padding: 3.5rem 3rem; max-width: 520px; width: 100%; text-align: center;
  position: relative; animation: slideUp 0.8s var(--ease) both;
}
.coffee-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand-dark), var(--brand-light), var(--brand-dark)); border-radius: 8px 8px 0 0; }
.coffee-icon { font-size: 3rem; margin-bottom: 1rem; }
.coffee-price { font-family: var(--font-display); font-size: 4rem; color: var(--brand-light); margin: 1.5rem 0 0.5rem; }
.coffee-price sup { font-size: 1.5rem; vertical-align: super; }
.coffee-equals { color: var(--text-dim); font-size: 1rem; margin-bottom: 1.5rem; }
.coffee-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }
.invest-btn {
  display: block; width: 100%; padding: 1.1rem; background: var(--brand);
  color: #fff; font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border: none; border-radius: 4px; cursor: pointer;
  transition: all 0.35s var(--ease); text-align: center;
}
.invest-btn:hover { background: var(--brand-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(96,119,127,0.3); }
.trust-row { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; }
.trust-item { color: var(--text-dim); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-q { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.6rem; }
.faq-a { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; font-weight: 300; }

/* ---- HERO VIDEO ---- */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,24,32,0.7) 0%, rgba(17,24,32,0.9) 70%, var(--bg-primary) 100%);
}

/* ---- FOOTER ---- */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; position: relative; z-index: 1; }
.footer-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; max-width: 280px; line-height: 1.7; margin-top: 1rem; font-weight: 300; }
.footer h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--brand-light); margin-bottom: 1.25rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--brand-light); }
.footer-bottom { max-width: var(--max-width); margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-dim); }

/* ---- ANIMATIONS ---- */
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.anim { animation: slideUp 0.7s var(--ease) both; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; } .d3 { animation-delay: 0.3s; } .d4 { animation-delay: 0.4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .visual-block { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: rgba(17,24,32,0.98); flex-direction: column; padding: 2rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 1rem; font-size: 0.9rem; }
  .nav-cta { margin-left: 0 !important; margin-top: 1rem; text-align: center; display: block; }
  .hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stats { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .logo img { height: 36px; }
  .steps-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
}
