@font-face {
  font-family: "Homoarakhn";
  src: url("images/homoarakhn.TTF?v=20260411b") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --ink: #111111;
  --sand: #f6f1e8;
  --paper: #fffdf8;
  --accent: #8d2f23;
  --accent-soft: #efe1d3;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
}

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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(141, 47, 35, 0.22), transparent 40%),
    linear-gradient(180deg, #140f0f 0%, #211514 26%, var(--sand) 26%, var(--paper) 100%);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 32px;
  background: rgba(16, 15, 15, 0.7);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  color: #ffffff;
  font-family: "Homoarakhn", Arial, Helvetica, sans-serif;
  font-size: 32px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

main {
  width: calc(100% - 48px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 0 88px;
}

.hero {
  max-width: 760px;
  margin-bottom: 42px;
  color: #ffffff;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f2d6c4;
}

.hero h1 {
  font-family: "Homoarakhn", Arial, Helvetica, sans-serif;
  font-size: 4.8rem;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 42rem;
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.detail-grid {
  display: grid;
  gap: 28px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
}

.detail-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.detail-card-reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.detail-copy h2,
.principle h2,
.cta-panel h2 {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.35rem;
}

.detail-copy p,
.principle p,
.cta-panel p {
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.82);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.principle {
  padding: 24px;
  border-radius: 22px;
  background: var(--accent-soft);
}

.cta-panel {
  margin-top: 34px;
  padding: 30px;
  border-radius: 28px;
  background: #151212;
  color: #ffffff;
  text-align: center;
}

.cta-panel p {
  max-width: 44rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px 32px;
  background: var(--paper);
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    padding: 20px;
  }

  main {
    width: calc(100% - 32px);
    max-width: 1120px;
    padding: 42px 0 64px;
  }

  .detail-card,
  .detail-card-reverse,
  .principles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand span {
    font-size: 28px;
  }

  .detail-card,
  .cta-panel {
    padding: 22px;
  }
}
