@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cinzel-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cinzel-semibold.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-medium.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-semibold.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f4f2ec;
  margin: 0;
}

img {
  max-width: 100%;
}

.hw-site {
  --site-forest: #12372f;
  --site-deep: #0b1f1a;
  --site-ivory: #f4f2ec;
  --site-graphite: #28332f;
  --site-sage: #8a9b90;
  --site-metal: #b6ab92;
  background: var(--site-ivory);
  color: var(--site-graphite);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

.hw-site *,
.hw-site *::before,
.hw-site *::after {
  box-sizing: border-box;
}

.hw-site a {
  color: inherit;
  text-decoration: none;
}

.hw-nav,
.hw-hero,
.hw-principles,
.hw-section,
.hw-split,
.hw-manifest,
.hw-cta,
.hw-footer {
  padding-left: clamp(1.5rem, 5vw, 5.5rem);
  padding-right: clamp(1.5rem, 5vw, 5.5rem);
}

.hw-nav {
  align-items: center;
  background: rgb(244 242 236 / 92%);
  border-bottom: 1px solid rgb(18 55 47 / 10%);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  min-height: 88px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.hw-brand img {
  display: block;
  height: 48px;
  width: auto;
}

.hw-nav-links {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hw-nav-links a {
  color: var(--site-graphite);
}

.hw-nav-links a:hover,
.hw-nav-links a:focus-visible {
  color: var(--site-forest);
}

.hw-nav-cta,
.hw-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 44px;
  padding: 0.85rem 1.25rem;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hw-nav-cta,
.hw-button-primary {
  background: var(--site-forest);
  border: 1px solid var(--site-forest);
  color: var(--site-ivory);
}

.hw-nav-cta:hover,
.hw-nav-cta:focus-visible,
.hw-button-primary:hover,
.hw-button-primary:focus-visible {
  background: var(--site-deep);
  border-color: var(--site-deep);
  color: #fff;
}

.hw-button-secondary {
  background: transparent;
  border: 1px solid rgb(18 55 47 / 24%);
  color: var(--site-forest);
}

.hw-button-secondary:hover,
.hw-button-secondary:focus-visible {
  border-color: var(--site-forest);
}

.hw-hero {
  background:
    radial-gradient(circle at 84% 8%, rgb(182 171 146 / 30%), transparent 28rem),
    linear-gradient(135deg, #f8f7f3 0%, var(--site-ivory) 46%, #e8e9e2 100%);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 720px;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(4rem, 8vw, 8rem);
  position: relative;
}

.hw-hero::before {
  background: linear-gradient(180deg, rgb(18 55 47 / 12%), transparent);
  content: "";
  height: 100%;
  position: absolute;
  right: 10%;
  top: 0;
  width: 1px;
}

.hw-kicker {
  color: var(--site-forest);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 1.15rem;
  text-transform: uppercase;
}

.hw-hero h1,
.hw-section h2,
.hw-split h2,
.hw-cta h2 {
  color: var(--site-deep);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
}

.hw-hero h1 {
  font-size: clamp(4rem, 9vw, 8.8rem);
  max-width: 11ch;
}

.hw-lead,
.hw-section-heading p,
.hw-flow p,
.hw-products p,
.hw-proof-grid span {
  color: rgb(40 51 47 / 76%);
  font-size: 1rem;
  line-height: 1.7;
}

.hw-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  margin: 2rem 0 0;
  max-width: 44rem;
}

.hw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hw-hero-panel {
  align-self: center;
  background: linear-gradient(145deg, var(--site-deep), var(--site-forest));
  border: 1px solid rgb(244 242 236 / 16%);
  border-radius: 2rem;
  box-shadow: 0 32px 80px rgb(11 31 26 / 22%);
  color: var(--site-ivory);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.hw-panel-topline {
  align-items: center;
  border-bottom: 1px solid rgb(244 242 236 / 18%);
  display: flex;
  gap: 1rem;
  letter-spacing: 0.15em;
  padding-bottom: 1.25rem;
  text-transform: uppercase;
}

.hw-panel-topline img {
  filter: brightness(0) invert(1);
  height: 54px;
  width: 54px;
}

.hw-metric-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.hw-metric-grid article {
  background: rgb(244 242 236 / 8%);
  min-height: 150px;
  padding: 1.2rem;
}

.hw-metric-grid strong,
.hw-products h3,
.hw-proof-grid strong,
.hw-flow strong {
  color: inherit;
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.hw-metric-grid span {
  color: rgb(244 242 236 / 74%);
  line-height: 1.55;
}

.hw-principles {
  background: #fbfaf7;
  border-bottom: 1px solid rgb(18 55 47 / 10%);
  border-top: 1px solid rgb(18 55 47 / 10%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hw-principles article {
  border-right: 1px solid rgb(18 55 47 / 10%);
  padding: 1.8rem 1.3rem;
}

.hw-principles article:last-child {
  border-right: 0;
}

.hw-principles span {
  color: var(--site-metal);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.6rem;
}

.hw-principles strong {
  color: var(--site-deep);
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hw-principles p {
  color: rgb(40 51 47 / 72%);
  line-height: 1.55;
  margin: 0.6rem 0 0;
}

.hw-section,
.hw-split,
.hw-manifest,
.hw-cta {
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(4rem, 8vw, 7rem);
}

.hw-section-heading {
  max-width: 780px;
}

.hw-section h2,
.hw-split h2,
.hw-cta h2 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.hw-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
}

.hw-products article,
.hw-flow article,
.hw-proof-grid article {
  background: rgb(255 255 255 / 62%);
  border: 1px solid rgb(18 55 47 / 10%);
  border-radius: 1.25rem;
  padding: 1.45rem;
}

.hw-card-accent {
  background: var(--site-forest);
  display: block;
  height: 42px;
  margin-bottom: 1.25rem;
  width: 4px;
}

.hw-card-accent.blue { background: #7e9ff2; }
.hw-card-accent.gold { background: var(--site-metal); }
.hw-card-accent.violet { background: #9b7edb; }

.hw-products h3 {
  color: var(--site-deep);
  font-size: 1.55rem;
}

.hw-split {
  background: #fbfaf7;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.hw-flow {
  display: grid;
  gap: 1rem;
}

.hw-flow strong {
  color: var(--site-forest);
  font-size: 1.25rem;
}

.hw-dark {
  background: linear-gradient(135deg, var(--site-deep), var(--site-forest));
  color: var(--site-ivory);
}

.hw-dark .hw-kicker,
.hw-dark h2,
.hw-dark p,
.hw-dark span,
.hw-dark strong {
  color: var(--site-ivory);
}

.hw-proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.hw-proof-grid article {
  background: rgb(244 242 236 / 8%);
  border-color: rgb(244 242 236 / 18%);
}

.hw-manifest {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 280px minmax(0, 1fr);
}

.hw-manifest img {
  max-width: 100%;
}

.hw-manifest blockquote {
  border-left: 1px solid var(--site-metal);
  color: var(--site-deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 0;
  padding-left: clamp(1.5rem, 3vw, 3rem);
}

.hw-manifest span {
  color: var(--site-forest);
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 1.5rem;
  text-transform: uppercase;
}

.hw-cta {
  background:
    linear-gradient(90deg, rgb(11 31 26 / 88%), rgb(18 55 47 / 84%)),
    radial-gradient(circle at 80% 20%, rgb(138 155 144 / 58%), transparent 24rem);
  color: var(--site-ivory);
  text-align: center;
}

.hw-cta h2 {
  color: var(--site-ivory);
  margin: 0 auto 2rem;
  max-width: 980px;
}

.hw-cta .hw-kicker {
  color: var(--site-metal);
}

.hw-footer {
  align-items: center;
  background: var(--site-deep);
  color: rgb(244 242 236 / 76%);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  min-height: 112px;
}

.hw-footer img {
  height: 46px;
  width: auto;
}

.hw-footer span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hw-nav {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    position: relative;
  }

  .hw-nav-links {
    flex-wrap: wrap;
  }

  .hw-hero,
  .hw-split,
  .hw-manifest {
    grid-template-columns: 1fr;
  }

  .hw-principles,
  .hw-card-grid,
  .hw-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hw-site {
    margin-top: -1rem;
  }

  .hw-hero {
    min-height: auto;
  }

  .hw-hero h1,
  .hw-section h2,
  .hw-split h2,
  .hw-cta h2 {
    font-size: clamp(2.8rem, 18vw, 4.5rem);
  }

  .hw-nav-links,
  .hw-nav-cta {
    width: 100%;
  }

  .hw-principles,
  .hw-card-grid,
  .hw-proof-grid,
  .hw-metric-grid {
    grid-template-columns: 1fr;
  }

  .hw-principles article {
    border-right: 0;
    border-bottom: 1px solid rgb(18 55 47 / 10%);
  }
}
