:root {
  --ink: #172022;
  --muted: #5f6b6d;
  --sand: #f4eadb;
  --paper: #fffdf8;
  --gold: #b88a3b;
  --gold-dark: #8f6828;
  --teal: #0f6f78;
  --line: rgba(23, 32, 34, 0.12);
  --shadow: 0 18px 50px rgba(23, 32, 34, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.nav {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 0;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1;
}

.brand span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.menu a {
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}

.menu a:hover,
.menu a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10, 18, 19, 0.28), rgba(10, 18, 19, 0.75)),
    var(--hero-image) center / cover;
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 82px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f6d99d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
}

.hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #16120a;
}

.btn-primary:hover {
  background: #d6a44d;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--sand);
}

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

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

.section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin: 2.6rem 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1.15rem;
}

.prose ul {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
}

.prose li {
  margin: 0.35rem 0;
}

.lead {
  font-size: 1.18rem;
  color: #374244;
}

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

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(23, 32, 34, 0.08);
}

.feature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.feature-card div {
  padding: 22px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.side-panel {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.side-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.side-panel-content {
  padding: 24px;
}

.side-panel h2,
.side-panel h3 {
  margin: 0 0 12px;
  font-size: 1.65rem;
}

.side-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.highlights {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlights li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: #394648;
  font-weight: 700;
}

.partners {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 34px 0;
}

.partners-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.partners h2 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.partner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.partner-links a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.cta {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 20, 21, 0.88), rgba(11, 20, 21, 0.58)),
    url("assets/images/cta-pyramids.webp") center / cover;
}

.cta .wrap {
  padding: 72px 0;
}

.cta h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 50px;
  align-items: start;
}

.contact-box,
.form-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-box h2,
.form-box h2 {
  margin: 0 0 14px;
  font-size: 2rem;
}

.contact-box p {
  color: var(--muted);
}

.email-link {
  color: var(--teal);
  font-size: 1.15rem;
  font-weight: 900;
}

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

label {
  display: grid;
  gap: 7px;
  color: #2d383a;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

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

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.submit {
  width: fit-content;
  background: var(--ink);
  color: #fff;
}

.site-footer {
  background: #101718;
  color: rgba(255, 255, 255, 0.76);
  padding: 32px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner strong {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
}

@media (max-width: 900px) {
  .nav,
  .partners-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 72vh;
  }

  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

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

@media (max-width: 560px) {
  .nav {
    min-height: 98px;
  }

  .menu a {
    padding: 9px 11px;
    white-space: nowrap;
  }

  .hero-inner {
    padding: 86px 0 56px;
  }

  .section {
    padding: 58px 0;
  }

  .contact-box,
  .form-box {
    padding: 22px;
  }
}
