:root {
  --coral: #FF5A36;
  --coral-deep: #E8421F;
  --coral-light: #FFE5DD;
  --ink: #0F1419;
  --ink-soft: #2A2F36;
  --cream: #FAF6F0;
  --cream-warm: #F2EBDF;
  --olive: #4A5D3A;
  --gold: #E5A52E;
  --grey: #8A8780;
  --grey-light: #D9D4CB;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(15, 20, 25, 0.06);
  --shadow-md: 0 8px 28px rgba(15, 20, 25, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 20, 25, 0.14);
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

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

/* === NAV === */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-light);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--coral);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; font-weight: 800;
  transform: rotate(-4deg);
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-size: 15px; font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--coral) !important; color: white !important; }

@media (max-width: 968px) {
  .nav-inner { padding: 14px 20px; }
  .nav-links { gap: 16px; font-size: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* === BUTTONS === */
.btn-primary {
  background: var(--coral);
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 8px 20px rgba(255, 90, 54, 0.3);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 90, 54, 0.4); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  font-weight: 600; font-size: 16px;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

/* === PAGE HEADER === */
.page-header {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 40px 60px;
  position: relative;
}
.page-header .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--coral-light);
  color: var(--coral-deep);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.page-header h1 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 24px;
}
.page-header h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p.lead {
  font-size: 19px; color: var(--ink-soft);
  max-width: 640px;
}

/* Page header layout with visual */
.page-header.with-visual {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}
.header-visual {
  position: relative;
  height: 380px;
}
.float-card {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  border: 1px solid var(--grey-light);
}
.float-card .icon-big {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
  background: var(--coral-light);
}
.float-card .label-tiny {
  font-size: 11px; color: var(--grey);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}
.float-card .title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.float-card .desc {
  font-size: 12px; color: var(--ink-soft);
}

@media (max-width: 968px) {
  .page-header { padding: 40px 20px 32px; }
  .page-header.with-visual {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
  .header-visual { height: 320px; margin-top: 20px; }
}

/* === FOOTER === */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  color: rgba(250,246,240,0.6);
  font-size: 14px; margin-top: 16px; max-width: 320px;
}
.footer-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(250,246,240,0.7);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(250,246,240,0.5);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
