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

:root {
  --bg:        #070e05;
  --bg-2:      #0c1609;
  --bg-3:      #131f0f;
  --surface:   #1a2b14;
  --surface-2: #213618;
  --border:    #2c4422;
  --border-2:  #3a5a2e;
  --text:      #dfe8cc;
  --text-muted: #7a9b68;
  --text-faint: #4c6840;
  --gold:      #c9a84c;
  --gold-dim:  #a07c30;
  --gold-glow: rgba(201, 168, 76, 0.12);
  --green:     #6dbe47;
  --green-dim: #4e8c30;
  --green-glow: rgba(109, 190, 71, 0.1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1120px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #e0bc6a;
}

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

/* ================================================================
   BURGER / SIDEBAR NAVIGATION
   ================================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(7, 14, 5, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--border-2);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand-name span {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Burger button — always visible */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: background var(--transition), border-color var(--transition);
  z-index: 300;
}

.burger-btn:hover {
  background: var(--surface-2);
  border-color: var(--gold-dim);
}

.burger-btn .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  transform-origin: center;
}

.burger-btn.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 3, 0.7);
  backdrop-filter: blur(4px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Drawer panel */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100dvh;
  background: var(--bg-3);
  border-left: 1px solid var(--border);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  min-height: 70px;
}

.drawer-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.drawer-close {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.drawer-close:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-2);
}

.drawer-nav {
  padding: 32px 28px;
  flex: 1;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
  letter-spacing: -0.01em;
}

.drawer-nav a:last-child {
  border-bottom: none;
}

.drawer-nav a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.drawer-nav a .nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  flex-shrink: 0;
  transition: background var(--transition);
}

.drawer-nav a:hover .nav-dot {
  background: var(--gold);
}

.drawer-nav a.active {
  color: var(--gold);
}

.drawer-nav a.active .nav-dot {
  background: var(--gold);
}

.drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
}

.drawer-footer p {
  font-size: 0.8rem;
  color: var(--text-faint);
}

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

main {
  flex: 1;
  padding-top: 70px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 32px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(109, 190, 71, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: 0;
}

.hero-trees {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  pointer-events: none;
  opacity: 0.3;
}

.tree {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tree-crown {
  width: 0;
  height: 0;
  border-left: solid transparent;
  border-right: solid transparent;
  border-bottom: solid var(--green-dim);
}

.tree-trunk {
  background: var(--green-dim);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: var(--green-glow);
  border: 1px solid rgba(109, 190, 71, 0.2);
  border-radius: 100px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero h1 .accent-gold {
  color: var(--gold);
}

.hero h1 .accent-green {
  color: var(--green);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dim));
  color: #fff;
  box-shadow: 0 4px 20px rgba(109, 190, 71, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7dd554, var(--green));
  box-shadow: 0 6px 28px rgba(109, 190, 71, 0.35);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-dim);
}

.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--border-2), transparent);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

.section {
  padding: 96px 0;
}

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ================================================================
   WHAT WE CREATE — split tiles
   ================================================================ */

.create-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.create-tile {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.create-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.create-tile-games {
  background: linear-gradient(145deg, #0d1f0a 0%, #0c1a08 100%);
}

.create-tile-games::before {
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(109, 190, 71, 0.12) 0%, transparent 70%);
}

.create-tile-apps {
  background: linear-gradient(145deg, #1a140a 0%, #12100a 100%);
}

.create-tile-apps::before {
  background: radial-gradient(ellipse 80% 60% at 20% 20%, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
}

.tile-icon-wrap {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 1;
}

.tile-icon-wrap.green-icon {
  background: rgba(109, 190, 71, 0.1);
  border: 1px solid rgba(109, 190, 71, 0.2);
}

.tile-icon-wrap.gold-icon {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.tile-content {
  position: relative;
  z-index: 1;
}

.tile-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.tag-green {
  color: var(--green);
  background: rgba(109, 190, 71, 0.1);
  border: 1px solid rgba(109, 190, 71, 0.2);
}

.tag-gold {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.tile-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.tile-content p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 24px;
}

.tile-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tile-chip {
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ================================================================
   CATEGORIES — what we make in detail
   ================================================================ */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.cat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dim));
  opacity: 0;
  transition: opacity var(--transition);
}

.cat-card.gold-top::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}

.cat-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.cat-card:hover::after {
  opacity: 1;
}

.cat-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.cat-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ================================================================
   PHILOSOPHY — staggered numbered list
   ================================================================ */

.philosophy-list {
  margin-top: 64px;
  display: grid;
  gap: 0;
}

.philosophy-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.philosophy-item:first-child {
  border-top: 1px solid var(--border);
}

.phil-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--border-2);
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  transition: color var(--transition);
  padding-top: 4px;
}

.philosophy-item:hover .phil-num {
  color: var(--gold-dim);
}

.phil-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.phil-body p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 580px;
}

/* ================================================================
   STATS BAR
   ================================================================ */

.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 8px 0;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stats-divider {
  width: 1px;
  background: var(--border);
  height: 100%;
}

/* ================================================================
   CTA BANNER
   ================================================================ */

.cta-banner {
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(109, 190, 71, 0.07) 0%, transparent 70%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-page {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-left {
  background: var(--bg-3);
  border-right: 1px solid var(--border);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(109, 190, 71, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-left-content {
  position: relative;
  z-index: 1;
}

.contact-left h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-left h1 span {
  color: var(--gold);
}

.contact-left .contact-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 420px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-body {
  flex: 1;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.info-value a {
  color: var(--gold);
  font-weight: 600;
}

.info-value a:hover {
  color: #e0bc6a;
}

.info-value .info-note {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Decorative woodland pattern */
.woodland-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.contact-right {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}

.contact-right h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-right .right-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  transition: border-color var(--transition);
}

.contact-card:hover {
  border-color: var(--border-2);
}

.contact-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.cc-body {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.cc-action {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.cc-action:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.contact-note {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.note-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-note p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.legal-hero {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal .effective-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.legal p,
.legal ul {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.8;
}

.legal ul {
  padding-left: 24px;
}

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

.legal a {
  color: var(--gold);
}

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

.site-footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 48px 32px 32px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--text);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-faint);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: var(--max);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-legal-links a {
  color: var(--text-faint);
  font-size: 0.8rem;
}

.footer-legal-links a:hover {
  color: var(--text-muted);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 900px) {
  .create-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-left {
    padding: 64px 32px;
    min-height: auto;
  }

  .contact-right {
    padding: 64px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    flex-direction: row;
    gap: 16px;
    text-align: left;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .philosophy-item {
    grid-template-columns: 80px 1fr;
    gap: 0 24px;
  }

  .phil-num {
    font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 20px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 60px 20px;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section {
    padding: 64px 0;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .create-tile {
    padding: 32px 24px;
    min-height: 280px;
  }

  .tile-icon-wrap {
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .contact-left {
    padding: 48px 24px;
  }

  .contact-right {
    padding: 48px 24px;
  }

  .legal {
    padding: 48px 20px 64px;
  }

  .philosophy-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .phil-num {
    font-size: 2rem;
    color: var(--border-2);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-trees {
    height: 120px;
  }
}
