:root {
  --page-max: 1100px;
  --bg: #faf6f4;
  --ink: #0e0e0e;
  --muted: #888;
  --accent: #3abdff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* Header */
.site-header {
  max-width: var(--page-max);
  margin: 20px auto 40px;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-weight: 800; font-size: 28px; letter-spacing: -0.02em; }
.nav a {
  margin-left: 20px;
  font-size: 12px;
  text-transform: uppercase;
  color: #8a8a8a;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.nav a.active { color: #000; font-weight: 600; }

/* Hero with video */
.hero { max-width: var(--page-max); margin: 0 auto; position: relative; padding: 0 16px; }
.media {
  width: 100%;
  aspect-ratio: 16/9;
  background: #ddd;
  overflow: hidden;
}
.media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay card */
.callout {
  position: absolute;
  left: 15px;
  bottom: 32px;
  background: #faf6f4;
  display: flex;
  min-height: min(15px, 25%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  min-width: min(520px, 90%);
  /* box-shadow: 0 8px 22px rgba(0,0,0,.08); */
}
.callout h2 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.callout .sub {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
}
.callout .mark { font-size: 40px; opacity: .9; }

/* Bottom bar */
.bottom-bar {
  max-width: var(--page-max);
  margin: 18px auto 64px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: space-between;
  align-items: center;
}
.copyright {
  margin-left: auto;
  margin-right: 0px;
  grid-column:span 2;
  align-items: center;
  display: flex;
  color: var(--muted);
  font-size: 13px;
}
.left { display: grid; }
.left .cta {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  margin-right: 8px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.left .email { 
  font-size: 11px; 
  color: var(--ink); 
  text-decoration: none; 
  text-transform: uppercase; 
  font-weight: bold;
}
.right { display: flex; align-items: center; }
.badge {
  padding: 10px 14px;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
}
.line {
  border-right: 2px solid #000000;
  padding: 10px 0px;
  margin-right: 25px;
  color: #111;
  text-decoration: none;
  font-weight: 700;
}
.badge .tag { color: var(--accent); font-size: 12px; float: right; }
.social .icon {
  display: inline-flex;
}
.social a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: black;
}

@media (max-width: 720px) {
  .nav { display: none; }
  .callout { position: static; min-width: auto; margin: 12px 0 0; box-shadow: none; }
  .bottom-bar { flex-direction: column; gap: 16px; align-items: flex-start; }
}
