:root {
  --primary: #ae0701;
  --primary-dark: #7d0401;
  --accent: #fed78a;
  --ink: #1a1d24;
  --muted: #5d6473;
  --panel: #ffffff;
  --panel-soft: #f5f6f8;
  --line: #e6e8ee;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 22, 41, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f8f9 0%, #f1f2f5 100%);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(174, 7, 1, 0.25);
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  color: #2b3347;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.menu a:hover,
.menu a.active {
  color: var(--primary);
}

main {
  padding: 34px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-copy {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 14px;
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin: 0 0 14px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 16px;
}

.hero-media img,
.single-photo {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: #f1c3ba;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(12, 20, 36, 0.06);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  margin-top: 22px;
}

.section-title {
  margin-bottom: 14px;
}

.highlight {
  color: var(--primary-dark);
  font-weight: 700;
}

.legal {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

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

.legal h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.last-updated {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 14px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d3d9e5;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #34415d;
  text-decoration: none;
  font-size: 0.95rem;
}

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

.h5-wrap {
  width: min(700px, 94%);
  margin: 24px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
}

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

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

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

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 12px;
  }

  main {
    padding-top: 20px;
  }

  .hero-copy,
  .card,
  .legal {
    padding: 18px;
  }
}
