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

:root {
  --ink: #1f2226;
  --coal: #152133;
  --sand: #f4efe6;
  --bone: #fff9f0;
  --rust: #b44a2c;
  --sage: #4c5d4d;
  --sun: #f2b544;
  --denim: #1d3b5c;
  --cream: #f9f0df;
  --shadow: rgba(21, 33, 51, 0.16);
  --radius: 18px;
}

body {
  font-family: "Source Serif 4", "Georgia", serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f9f1e4 0%, #efe4d2 60%, #e9dcc8 100%);
  min-height: 100vh;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(29, 59, 92, 0.07) 0%,
      rgba(29, 59, 92, 0.07) 8%,
      transparent 8%,
      transparent 16%
    ),
    radial-gradient(rgba(180, 74, 44, 0.08) 1px, transparent 1px);
  background-size: 48px 48px, 28px 28px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3,
strong {
  font-family: "Oswald", "Impact", sans-serif;
  letter-spacing: 0.02em;
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  border-bottom: 4px solid var(--ink);
  background: rgba(255, 249, 240, 0.8);
  backdrop-filter: blur(6px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--denim);
  color: var(--bone);
  border: 2px solid var(--ink);
  font-size: 18px;
}

.logo-text {
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "Oswald", "Impact", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 15px;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.nav-link:hover {
  background: rgba(21, 33, 51, 0.08);
  border-color: var(--ink);
}

.nav-cta {
  background: var(--rust);
  color: var(--bone);
  border-color: var(--ink);
}

.nav-cta:hover {
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  padding: 40px 6vw 64px;
}

.hero-media {
  display: grid;
  gap: 18px;
  align-items: start;
}

.portrait {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 18px 36px var(--shadow);
  background: #f1e5d2;
  object-fit: cover;
}

.portrait-framed {
  border: 4px solid rgba(31, 26, 22, 0.12);
}

.hero-content h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 2.5vw + 1.6rem, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--denim);
  margin-bottom: 12px;
  font-weight: 700;
  border-left: 4px solid var(--rust);
  padding-left: 12px;
}

.lead {
  font-size: 1.1rem;
  max-width: 36rem;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--denim);
  color: var(--bone);
  box-shadow: 6px 6px 0 rgba(21, 33, 51, 0.25);
}

.button.primary:hover {
  transform: translateY(-2px);
}

.button.ghost {
  border-color: var(--ink);
  background: var(--bone);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.hero-stats div {
  background: var(--bone);
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 8px 8px 0 rgba(21, 33, 51, 0.18);
  border: 2px solid var(--ink);
}

.hero-stats span {
  display: block;
  font-size: 0.85rem;
  color: #5c4d42;
}

.hero-card {
  background: var(--bone);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 10px 10px 0 rgba(21, 33, 51, 0.25);
  border: 3px solid var(--ink);
}

.hero-card h2 {
  margin-bottom: 12px;
}

.hero-card ol {
  padding-left: 18px;
  margin-bottom: 12px;
}

.note {
  font-size: 0.9rem;
  color: #5c4d42;
}

.section {
  padding: 56px 6vw;
}

.section.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.section.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.panel,
.card {
  background: var(--bone);
  padding: 22px;
  border-radius: 12px;
  box-shadow: 8px 8px 0 rgba(21, 33, 51, 0.18);
  border: 2px solid var(--ink);
}

.panel h3,
.card h3 {
  margin-bottom: 10px;
}

.checklist {
  list-style: none;
  margin-top: 16px;
}

.checklist li {
  margin-bottom: 8px;
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--rust);
}

.banner {
  background: linear-gradient(120deg, #132338, #3e2a1f);
  color: var(--bone);
  padding: 36px;
  border-radius: 12px;
  display: grid;
  gap: 14px;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(21, 33, 51, 0.25);
}

.banner .button.primary {
  background: var(--sun);
  color: var(--ink);
}

.page-hero {
  padding: 36px 6vw 20px;
}

.faq details {
  background: var(--bone);
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 8px 8px 0 rgba(21, 33, 51, 0.2);
  margin-bottom: 16px;
  border: 2px solid var(--ink);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin-top: 12px;
}

.contact-details {
  margin: 16px 0;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  padding: 10px 12px;
  border-radius: 6px;
  border: 2px solid var(--ink);
  background: #fffdf9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--denim);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  padding: 36px 6vw 24px;
  background: #162231;
  color: #f2e9da;
  border-top: 4px solid var(--ink);
}

.footer-note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }

  .site-nav {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .banner {
    padding: 28px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
