:root {
  --ink: #151719;
  --muted: #5d646b;
  --paper: #fbfaf7;
  --soft: #ebe6dd;
  --line: rgba(21, 23, 25, 0.14);
  --green: #244f43;
  --green-deep: #16382f;
  --gold: #d7a541;
  --blue: #2b5b7c;
  --rose: #b25d4d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(21, 23, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  letter-spacing: 0;
  backdrop-filter: blur(18px);
}

.nav-links {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(21, 23, 25, 0.18);
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  display: grid;
  min-height: 91vh;
  overflow: hidden;
  padding: 150px clamp(22px, 6vw, 84px) 72px;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
    url("assets/hero-modern-men-mahogany-office.png")
      center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 30, 26, 0.94) 0%, rgba(13, 30, 26, 0.68) 48%, rgba(13, 30, 26, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 30, 26, 0.58), rgba(13, 30, 26, 0.08) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(4.5rem, 16vw, 11.5rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2.4vw, 1.45rem);
}

.hero-actions,
.price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #17150f;
  box-shadow: 0 14px 30px rgba(215, 165, 65, 0.26);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.rate-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  align-self: end;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.rate-panel span,
.rate-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.rate-panel strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 3.4rem;
  line-height: 1;
}

.rate-panel p {
  margin-bottom: 0;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.intro-band > div {
  min-height: 170px;
  padding: 34px clamp(22px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.intro-band > div:last-child {
  border-right: 0;
}

.stat {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
}

.intro-band p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(22px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.booking-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.service-card:nth-child(2) {
  border-top: 4px solid var(--blue);
}

.service-card:nth-child(3) {
  border-top: 4px solid var(--rose);
}

.service-card:nth-child(4) {
  border-top: 4px solid var(--gold);
}

.service-card p,
.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-band {
  background: #f1eee8;
}

.narrow h2 {
  max-width: 17ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 230px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green);
  font-weight: 900;
}

.booking {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 7vw, 88px);
  background: var(--green-deep);
  color: var(--white);
}

.booking h2 {
  max-width: 12ch;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.price-strip {
  margin-top: 28px;
  padding: 16px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.price-strip span {
  font-size: 1.4rem;
  font-weight: 900;
}

.price-strip small {
  color: rgba(255, 255, 255, 0.7);
}

.intake-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(215, 165, 65, 0.36);
}

.form-button {
  width: fit-content;
  margin-top: 6px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(22px, 6vw, 84px);
  background: #111312;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.site-footer a {
  color: var(--gold);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .rate-panel {
    margin-top: 46px;
    justify-self: start;
  }

  .intro-band,
  .split,
  .steps,
  .booking {
    grid-template-columns: 1fr;
  }

  .intro-band > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-band > div:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 560px) {
  .brand {
    max-width: 220px;
  }

  .hero {
    min-height: 92vh;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 7rem);
  }

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

  .hero-actions {
    width: 100%;
  }
}
