:root {
  --ink: #101418;
  --paper: #f4f1ea;
  --white: #fffaf2;
  --muted: #aeb7bb;
  --line: rgba(255, 250, 242, 0.18);
  --line-dark: rgba(16, 20, 24, 0.13);
  --amber: #f4b24c;
  --teal: #2ba7a0;
  --brick: #bd553c;
  --forest: #1d5f53;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 20, 24, 0.82), rgba(16, 20, 24, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 7vw, 104px) 84px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 15, 18, 0.94) 0%, rgba(12, 15, 18, 0.76) 38%, rgba(12, 15, 18, 0.16) 72%),
    linear-gradient(0deg, rgba(16, 20, 24, 0.44), rgba(16, 20, 24, 0.04) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 900;
  line-height: 1.03;
}

h1 span {
  display: block;
}

h2 {
  max-width: 920px;
  font-size: clamp(2.15rem, 5.2vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 850;
  line-height: 1.16;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.58;
}

.hero-actions,
.price-card .button {
  margin-top: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 19px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--amber);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 250, 242, 0.5);
  background: rgba(255, 250, 242, 0.08);
  color: var(--white);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 56px);
  bottom: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(16, 20, 24, 0.32);
}

.scroll-cue span {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translateY(-2px) rotate(45deg);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #151b1f;
}

.proof-item {
  min-height: 148px;
  padding: 32px clamp(20px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--amber);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
}

.proof-item span {
  display: block;
  max-width: 360px;
  margin-top: 13px;
  color: rgba(255, 250, 242, 0.72);
}

.section {
  padding: clamp(78px, 12vw, 150px) clamp(20px, 7vw, 104px);
}

.story-section {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 7vw, 104px);
  background: #101418;
  color: var(--white);
}

.story-copy {
  max-width: 1040px;
}

.story-copy h2 {
  max-width: 960px;
}

.story-copy p:last-child {
  max-width: 820px;
  margin: 32px 0 0;
  color: rgba(255, 250, 242, 0.74);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.68;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(43, 167, 160, 0.16), rgba(189, 85, 60, 0.12)),
    #101418;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(34px, 7vw, 72px);
}

.section-light .eyebrow {
  color: var(--brick);
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 clamp(28px, 5vw, 56px);
}

.question-list p {
  margin: 0;
  border-left: 4px solid var(--brick);
  background: rgba(255, 250, 242, 0.72);
  padding: 18px 20px;
  color: rgba(16, 20, 24, 0.82);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  font-weight: 850;
}

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

.usp-card,
.price-card {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
}

.usp-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 250, 242, 0.64);
}

.usp-card:nth-child(2) {
  background: rgba(43, 167, 160, 0.11);
}

.usp-card:nth-child(3) {
  background: rgba(189, 85, 60, 0.12);
}

.usp-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--forest);
  font-weight: 900;
}

.usp-card h3 {
  margin-top: 38px;
}

.usp-card p,
.price-card p,
.price-card li,
.booking-copy p {
  color: rgba(16, 20, 24, 0.72);
  font-size: 1rem;
  line-height: 1.62;
}

.section-dark .price-card p,
.section-dark .price-card li {
  color: rgba(255, 250, 242, 0.74);
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.055);
  box-shadow: var(--shadow);
}

.price-card-paid {
  background: rgba(43, 167, 160, 0.13);
}

.price-card-soon {
  position: relative;
  overflow: hidden;
}

.price-card-soon::after {
  content: "WIP";
  position: absolute;
  top: 22px;
  right: -38px;
  width: 150px;
  padding: 7px 0;
  background: rgba(244, 178, 76, 0.94);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  transform: rotate(34deg);
}

.plan-label {
  margin: 0 0 18px;
  color: var(--amber) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-price {
  margin: 24px 0 18px;
  color: var(--white) !important;
  font-size: clamp(2.4rem, 5vw, 4.8rem) !important;
  font-weight: 900;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 28px 0 0 20px;
}

.price-card li::marker {
  color: var(--amber);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(78px, 12vw, 150px) clamp(20px, 7vw, 104px);
  background: var(--paper);
  color: var(--ink);
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-copy .eyebrow {
  color: var(--brick);
}

.booking-copy p {
  max-width: 620px;
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.booking-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
}

.booking-card h3 {
  color: var(--ink);
}

.booking-card p,
.booking-list {
  margin: 0;
  color: rgba(16, 20, 24, 0.72);
  line-height: 1.62;
}

.booking-card-label {
  color: var(--brick) !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.booking-list li::marker {
  color: var(--brick);
}

.booking-note {
  color: rgba(16, 20, 24, 0.56) !important;
  font-size: 0.92rem;
}

.booking-call-link {
  color: var(--brick);
  font-weight: 800;
  text-align: center;
}

.form-trap {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status-success {
  color: #236b45 !important;
  font-weight: 800;
}

.booking-form .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

.booking-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 7vw, 104px);
  border-top: 1px solid var(--line);
  background: #101418;
  color: rgba(255, 250, 242, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--amber);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 15, 18, 0.96) 0%, rgba(12, 15, 18, 0.72) 54%, rgba(12, 15, 18, 0.34) 100%),
      linear-gradient(0deg, rgba(16, 20, 24, 0.72), rgba(16, 20, 24, 0.04) 58%);
  }

  .proof-band,
  .usp-grid,
  .pricing-grid,
  .question-list,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item span {
    max-width: none;
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .usp-card,
  .price-card {
    min-height: auto;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 14px;
  }

  .brand span:last-child {
    max-width: 170px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero {
    min-height: 96svh;
    padding-top: 96px;
  }

  .hero-content,
  .hero-copy,
  h1 {
    max-width: 320px;
  }

  h1 {
    font-size: clamp(2.25rem, 8.9vw, 3.35rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
