:root {
  --navy: #071832;
  --navy-soft: #102641;
  --ink: #101217;
  --white: #ffffff;
  --cream: #f7f1e6;
  --earth: #766047;
  --earth-light: #d8c8aa;
  --gold: #c99732;
  --gold-soft: #e5c67a;
  --green: #075735;
  --shadow: 0 24px 70px rgba(7, 24, 50, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  background-image: url("assets/diddy-and-noble.jpg");
  background-position: center 70%;
  background-size: cover;
  transform: scale(1.01);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(7, 24, 50, 0.48) 45%, rgba(7, 24, 50, 0.86) 100%),
    radial-gradient(circle at 50% 48%, rgba(201, 151, 50, 0.18), rgba(0, 0, 0, 0) 46%);
}

.site-header {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  width: clamp(172px, 20vw, 270px);
  padding: 10px 14px;
  border: 1px solid rgba(229, 198, 122, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.domain {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

.hero__content {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  margin-bottom: 20px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3rem, 9vw, 7.8rem);
  font-weight: 600;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.42);
}

.tagline {
  max-width: 720px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.28rem, 3vw, 2.1rem);
}

.location {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__cta,
.contact-form button {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #11100d;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero__cta {
  padding: 15px 22px;
}

.hero__cta:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.section-pad {
  padding: clamp(72px, 9vw, 116px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.mission {
  background:
    linear-gradient(90deg, rgba(7, 87, 53, 0.08), rgba(201, 151, 50, 0.09)),
    var(--cream);
}

.mission__inner {
  max-width: 860px;
  text-align: center;
}

.mission h2,
.section-heading h2,
.interest h2 {
  color: var(--navy);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}

.mission p:last-child,
.interest__copy p {
  color: #463c31;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.what {
  background: #fbfaf7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(118, 96, 71, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card__number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.card h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.card p {
  margin-bottom: 0;
  color: #4b443d;
}

.interest {
  background:
    linear-gradient(135deg, rgba(7, 24, 50, 0.96), rgba(16, 38, 65, 0.94)),
    var(--navy);
  color: var(--white);
}

.interest__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.interest h2 {
  color: var(--white);
}

.interest__copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(229, 198, 122, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-soft);
  outline: 3px solid rgba(229, 198, 122, 0.28);
}

.contact-form button {
  width: 100%;
  padding: 15px 18px;
}

.form-message {
  min-height: 1.5em;
  margin: 16px 0 0;
  color: var(--gold-soft);
  font-weight: 700;
}

.footer {
  padding: 24px 20px;
  background: #05070b;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding-top: 20px;
  }

  .domain {
    padding-top: 6px;
    font-size: 0.7rem;
  }

  .hero__content {
    padding-bottom: 78px;
  }

  .cards,
  .interest__grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 28px, 1120px);
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .brand {
    width: min(240px, 78vw);
  }

  .domain {
    letter-spacing: 0.12em;
  }

  .hero__content,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero__image {
    background-position: 58% center;
  }

  .hero__cta,
  .contact-form button {
    width: 100%;
  }
}
