/* =====================================================
   Ready Set Rentables — Base Styles
   Reusable utility classes & layout primitives
   ===================================================== */
:root {
   --brand-teal: #4ac4d8;
  --cream: #f2eddf;
  --ink: #000000;
  --muted: #2c2c2c;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    "Fira Sans Condensed",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--ink);
  background: var(--brand-teal);
  line-height: 1.35;
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center; /* vertical centering */
  min-height: 100vh; /* fill full screen height */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Color helpers ---------- */
.bg-cream {
  background: var(--cream);
}
.text-default {
  color: var(--ink);
}
.brand-teal {
  color: var(--brand-teal);
}
.bg-teal {
  background: var(--brand-teal);
}
.text-cream {
  color: var(--cream);
}

/* ---------- Layout primitives ---------- */
.page-frame {
  padding: clamp(var(--space-lg), 6vw, var(--space-3xl));
}

.container {
  max-width: 1600px; /* was 1280px, now wider */
  width: 100%;
  margin-inline: auto;
  padding: 0 2rem; /* add some breathing room */
}

.grid {
  display: grid;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-60-40 {
  grid-template-columns: 3fr 2fr;
} /* ~60/40 split */
.align-center {
  align-items: center;
}
.gap-xl {
  gap: clamp(var(--space-xl), 6vw, var(--space-3xl));
}
.col {
  min-width: 0;
}


/* Vertical stacking helper with variable gaps */
.stack-xxl > * + * {
  margin-top: clamp(var(--space-lg), 5vw, var(--space-2xl));
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(3rem, 2.2vw, 1.6rem);
  margin: var(--space-xl) 0 0;
}

.headline {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-size: clamp(3rem, 8vw, 7.2rem);
  margin: 150px 0 55px 0; /* 150px above, 55px below */
}

.headline-line {
  white-space: nowrap;
}

.ellipsis::after {
  content: "";
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--muted);
  margin: 0;
}

.max-w-md {
  max-width: 48ch;
}

/* ---------- Media / imagery ---------- */
.hero-illustration {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

/* ---------- Footer / Social Links ---------- */
/* Display social icons in a centered row */
.social-footer {
  margin-top: 80px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-link {
  font-size: 1.8rem; /* bigger icons */
  color: var(--ink);
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--cream);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-2 { 
    grid-template-columns: 1fr; 
  }
  .hero-illustration { 
    margin-top: var(--space-xl); 
  }
}
