/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

:root {
  --brand: #1c1c1c;
  --accent: #ef7d2e;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --surface: #f6f6f6;
  --border: #e7e7e7;
}

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

body {
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  background: var(--bg);
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.site-logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-nav__list {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.site-nav__list a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav__list a:hover {
  color: var(--text);
}

.hero {
  background: #faf9f7;
  padding: 80px 0 60px;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero__kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin: 0 0 16px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
}

.hero__subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero__media {
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(239, 125, 46, 0.2), rgba(0, 0, 0, 0.05));
  border: 1px solid var(--border);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(239, 125, 46, 0.25);
}

.btn--ghost {
  border: 1px solid var(--border);
  background: #fff;
}

.btn:hover {
  transform: translateY(-1px);
}

.section {
  padding: 64px 0;
}

.section--intro {
  background: var(--bg);
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section p {
  max-width: 880px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.card h3 {
  margin: 0 0 12px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.card li {
  margin-bottom: 6px;
}

.section--cta {
  background: #111111;
  color: #fff;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section--cta p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  background: #0f0f0f;
  color: #fff;
  padding: 48px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.site-footer__logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer__muted {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer h3 {
  margin-top: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links li {
  margin-bottom: 8px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 32px;
  padding-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__list {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}
