/* ============================================
   FONTS
   ============================================ */

@font-face {
  font-family: 'Recoleta';
  src: url('/assets/fonts/Recoleta/Recoleta Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Recoleta';
  src: url('/assets/fonts/Recoleta/Recoleta SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   CUSTOM PROPERTIES
   ============================================ */

:root {
  --color-primary: #fa520f;
  --color-primary-deep: #cc3a05;
  --color-on-primary: #ffffff;
  --color-sunshine-300: #ffd06a;
  --color-sunshine-500: #ffb83e;
  --color-sunshine-700: #ffa110;
  --color-yellow-saturated: #ffd900;
  --color-cream: #fff8e0;
  --color-cream-light: #fffaeb;
  --color-cream-deeper: #fff0c2;
  --color-beige-deep: #e6d5a8;
  --color-ink: #1f1f1f;
  --color-ink-tint: #3d3d3d;
  --color-slate: #4a4a4a;
  --color-steel: #6a6a6a;
  --color-stone: #8a8a8a;
  --color-hairline-soft: #ededed;
  --color-canvas: #ffffff;

  --font-display: 'Recoleta', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

/* ============================================
   RESET
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ============================================
   BASE
   ============================================ */

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SITE HEADER
   ============================================ */

.site-header {
  position: relative;
  z-index: 10;
  padding: 28px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo svg {
  width: 148px;
  height: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  width: 100%;
  background: linear-gradient(150deg, var(--color-cream) 0%, var(--color-cream-light) 55%, var(--color-canvas) 100%);
  padding: 40px 0 80px;
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(250, 82, 15, 0.08);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--color-ink);
  max-width: 18ch;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-slate);
  max-width: 42ch;
}

.hero__subtitle br {
  display: none;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-on-primary);
  background: var(--color-primary);
  padding: 15px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(250, 82, 15, 0.30);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn-cta:hover {
  background: var(--color-primary-deep);
  box-shadow: 0 6px 28px rgba(250, 82, 15, 0.40);
}

.btn-cta:active {
  transform: scale(0.98);
}

/* Hero image */
.hero__visual {
  position: relative;
}

.hero__image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow:
    rgba(0, 0, 0, 0.06) 0px 4px 16px,
    rgba(0, 0, 0, 0.10) 0px 16px 48px -8px;
}

/* ============================================
   SUNSET STRIPE
   ============================================ */

.sunset-stripe {
  height: 20px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-sunshine-700) 28%,
    var(--color-sunshine-500) 52%,
    var(--color-yellow-saturated) 72%,
    var(--color-cream) 100%
  );
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-cream);
  border-top: 1px solid var(--color-beige-deep);
  padding: 48px 0 40px;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo svg {
  width: 120px;
  height: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-steel);
}

.footer-links a {
  color: var(--color-slate);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.footer-links__sep {
  color: var(--color-stone);
  user-select: none;
}

.footer-copy {
  font-size: 13px;
  color: var(--color-stone);
}

/* ============================================
   RESPONSIVE — TABLET (≥ 640px)
   ============================================ */

@media (min-width: 640px) {
  .hero__title {
    font-size: 52px;
  }

  .hero__subtitle br {
    display: inline;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (≥ 900px)
   ============================================ */

@media (min-width: 900px) {
  .hero {
    padding: 32px 0 100px;
  }

  .hero__grid {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .hero__content {
    flex: 0 0 auto;
    width: 46%;
  }

  .hero__visual {
    flex: 1;
    min-width: 0;
  }

  .hero__title {
    font-size: 56px;
  }
}

@media (min-width: 1100px) {
  .hero__title {
    font-size: 64px;
  }
}
