@font-face {
  font-family: "Nunito Sans";
  src: url("NunitoSans-VariableFont.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("NunitoSans-Italic-VariableFont.woff2") format("woff2");
  font-weight: 200 900;
  font-style: italic;
}

:root {
  --thebe-black: #111111;
  --thebe-text: #1a1a1a;
  --thebe-muted: #5d5d5d;
  --thebe-line: #e7e3db;
  --thebe-soft: #f8f6f2;
  --thebe-gold: #ddb24c;
  --thebe-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--thebe-text);
  background-color: var(--thebe-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: inherit;
}

p,
li {
  font-size: 1.0625rem;
  color: var(--thebe-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--thebe-black);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0;
}

.site-header {
  background: var(--thebe-white);
  border-color: rgba(17, 17, 17, 0.08) !important;
}

.site-logo,
.site-logo-wide {
  height: 46px;
  width: auto;
}

.hero-section {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #000;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.32) 45%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 74vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-copy {
  max-width: 38rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(7, 16, 35, 0.78) 0%,
    rgba(7, 16, 35, 0.58) 100%
  );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  color: var(--thebe-white);
  font-size: clamp(2.85rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.hero-sub {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.section-block {
  padding: 6.5rem 0;
}

.section-soft {
  background: var(--thebe-soft);
}

.eyebrow {
  font-size: 0.88rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--thebe-gold);
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 14ch;
}

.section-title-large {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.lead-copy {
  font-size: 1.2rem;
  color: var(--thebe-black);
}

.minimal-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.minimal-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.7rem;
}

.minimal-list li:last-child {
  margin-bottom: 0;
}

.minimal-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--thebe-gold);
}

.how-it-works-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.process-card,
.deliverables-card,
.comparison-card,
.summary-card,
.content-card {
  background: var(--thebe-white);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.04);
}

.process-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--thebe-gold);
  line-height: 0.9;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.process-title {
  font-size: 1.55rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  max-width: 12ch;
}

.deliverables-card {
  background: linear-gradient(
    180deg,
    rgba(221, 178, 76, 0.08) 0%,
    rgba(221, 178, 76, 0.03) 100%
  );
  border: 1px solid rgba(221, 178, 76, 0.18);
}

.comparison-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--thebe-gold);
  margin-bottom: 1rem;
}

.comparison-card ul {
  margin-top: 1rem;
}

.summary-card {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.summary-card p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--thebe-black);
  margin-bottom: 0;
}

.section-soft .content-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
}

.content-card a {
  color: var(--thebe-black);
  border-bottom: 1px solid rgba(221, 178, 76, 0.7);
  font-weight: 700;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.content-card a:hover {
  opacity: 0.85;
  border-bottom-color: var(--thebe-gold);
}

.contact-line a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--thebe-black);
  border-bottom: 1px solid rgba(221, 178, 76, 0.7);
  padding-bottom: 0.1rem;
}

.site-footer {
  padding: 3rem 0;
}

.footer-meta {
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.7;
}

.border-top {
  border-color: rgba(17, 17, 17, 0.08) !important;
}

.intro-band {
  padding: 5.5rem 0;
  margin-top: 2rem;
  background: var(--thebe-white);
}

.intro-card {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(221, 178, 76, 0.22) 0%,
    rgba(221, 178, 76, 0.10) 100%
  );
  border: 1px solid rgba(221, 178, 76, 0.4);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.06);
}

.intro-card-line {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--thebe-black);
}

@media (max-width: 991.98px) {
  .site-logo,
  .site-logo-wide {
    height: 40px;
  }

  .hero-section,
  .hero-content {
    min-height: 68vh;
  }

  .section-block {
    padding: 5rem 0;
  }

  .how-it-works-title {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }
}

@media (max-width: 767.98px) {
  p,
  li {
    font-size: 1rem;
  }

  .hero-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-copy {
    max-width: 22rem;
    padding: 1.25rem 1.25rem 1.4rem;
    border-radius: 1.1rem;
  }

  .section-title {
    max-width: none;
  }

  .process-card,
  .deliverables-card,
  .comparison-card,
  .summary-card,
  .content-card {
    padding: 1.5rem;
  }

  .summary-card p {
    font-size: 1.1rem;
  }

  .contact-line a {
    font-size: 1.2rem;
  }
}
