:root {
  --black: #050505;
  --navy: #071d33;
  --gold: #d6a23a;
  --gold-light: #f5c85a;
  --silver: #d9d9d9;
  --cream: #f7f3ec;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(214, 162, 58, 0.25);
}

.logo img {
  width: 132px;
  display: block;
}

nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

nav a {
  color: var(--silver);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--gold-light);
}

.hero {
  min-height: 92vh;
  padding: 120px 8%;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 28%, rgba(214, 162, 58, 0.18), transparent 34%),
    linear-gradient(135deg, #000000 0%, #071d33 58%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "727";
  position: absolute;
  right: -35px;
  bottom: -85px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(160px, 28vw, 420px);
  line-height: 1;
  color: rgba(214, 162, 58, 0.055);
  pointer-events: none;
}

.hero-inner {
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 13px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 28px;
  max-width: 980px;
}

.hero p {
  font-size: 20px;
  max-width: 760px;
  margin-bottom: 36px;
  color: #eeeeee;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: #050505;
  padding: 16px 32px;
  font-weight: 800;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold-light);
}

.text-link {
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(245, 200, 90, 0.6);
  padding-bottom: 4px;
}

.hero-principles {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-principles span {
  padding: 12px 18px;
  border: 1px solid rgba(214, 162, 58, 0.35);
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

section {
  padding: 90px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title p {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.section-title h2 {
  font-size: clamp(36px, 5vw, 52px);
  margin-top: 10px;
}

.overview {
  background: var(--navy);
}

.overview-content {
  max-width: 1050px;
  margin: auto;
  text-align: center;
}

.overview-content p {
  color: #edf3fb;
  font-size: 18px;
  margin-bottom: 20px;
}

.focus {
  background: var(--cream);
  color: var(--navy);
}

.focus .section-title p {
  color: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 32px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-height: 250px;
}

.card h3 {
  color: var(--navy);
  margin-bottom: 15px;
}

.approach {
  background: var(--black);
}

.approach-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.approach-item {
  padding: 30px;
  border: 1px solid rgba(214, 162, 58, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.approach-item h3 {
  color: var(--gold-light);
  margin-bottom: 12px;
}

.mission {
  background: var(--navy);
  text-align: center;
}

.mission blockquote {
  max-width: 950px;
  margin: auto;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
}

.contact {
  background: #020202;
  text-align: center;
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto;
  color: #eeeeee;
  font-size: 18px;
}

.contact-card {
  max-width: 620px;
  margin: 38px auto 0;
  padding: 34px;
  border: 1px solid rgba(214, 162, 58, 0.3);
  background: rgba(255, 255, 255, 0.04);
  font-size: 18px;
  line-height: 1.9;
}

.contact-card a {
  color: var(--gold-light);
}

.contact-form {
  max-width: 760px;
  margin: 45px auto 0;
  display: grid;
  gap: 16px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(214, 162, 58, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 16px;
  border-radius: 3px;
}

select option {
  color: black;
}

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

input::placeholder,
textarea::placeholder {
  color: #cfcfcf;
}

.form-status {
  padding: 14px;
  border-radius: 3px;
  text-align: center;
  font-weight: bold;
}

.form-status.success {
  background: rgba(79, 184, 116, 0.18);
  border: 1px solid rgba(79, 184, 116, 0.5);
  color: #bff0cc;
}

.form-status.error {
  background: rgba(220, 73, 73, 0.18);
  border: 1px solid rgba(220, 73, 73, 0.5);
  color: #ffd1d1;
}

footer {
  background: #000;
  padding: 42px 8%;
  text-align: center;
  border-top: 1px solid rgba(214, 162, 58, 0.25);
}

footer img {
  width: 115px;
  margin-bottom: 20px;
}

footer p {
  color: var(--silver);
}

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

  nav {
    justify-content: center;
    gap: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
    text-align: center;
  }

  .hero-inner,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-principles {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .logo img {
    width: 112px;
  }

  nav a {
    font-size: 12px;
  }

  section,
  .hero {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero h1 {
    font-size: 44px;
  }
}
