:root {
  --ink: #172027;
  --muted: #69737c;
  --line: rgba(23, 32, 39, 0.14);
  --paper: #f4f0e9;
  --white: #ffffff;
  --navy: #111b24;
  --blue: #183047;
  --gold: #caa45c;
  --cream: #f8f3ea;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 60px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 21, 28, 0.88), rgba(13, 21, 28, 0.16));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}

.brand-knot {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.brand span span {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.68;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
}

.nav .call {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, 94vh);
  padding: 122px clamp(20px, 5vw, 72px) 72px;
  color: var(--cream);
  background: var(--navy);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(10, 18, 26, 0.92), rgba(10, 18, 26, 0.72) 44%, rgba(10, 18, 26, 0.2)), url("current-knot.png") right center / min(760px, 70vw) auto no-repeat;
  filter: saturate(0.52) hue-rotate(152deg);
  content: "";
}

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

.hero-inner {
  display: grid;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.74;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(45px, 6vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin-bottom: 28px;
  color: inherit;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  opacity: 0.86;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
}

.button.secondary {
  color: inherit;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--blue);
}

.button:focus-visible,
.nav a:focus-visible,
.brand:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.section {
  scroll-margin-top: 88px;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section.alt {
  background: #ece6da;
}

.section.dark {
  color: var(--cream);
  background: #111820;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.08;
}

.section-heading p,
.card p,
.bio p,
.price p,
.faq-item p,
.human-copy p,
.form-note {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.bio,
.price,
.faq-item,
.form-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.card h3,
.bio h2,
.price h2,
.faq-item h3,
.form-panel h2,
.human-copy h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.price strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
}

.human-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 66px);
  align-items: center;
}

.human-photo {
  overflow: hidden;
  border: 1px solid rgba(23, 32, 39, 0.16);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 32, 39, 0.1);
}

.human-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 74% 40%;
}

.human-photo figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.schedule-form {
  display: grid;
  gap: 14px;
}

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

.schedule-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 39, 0.18);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

.schedule-form textarea {
  min-height: 126px;
  resize: vertical;
}

.field-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(248, 243, 234, 0.16);
}

.footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #0e141b;
  font-size: 13px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

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

@media (max-width: 920px) {
  .topbar {
    position: absolute;
    flex-wrap: wrap;
    background: rgba(17, 24, 32, 0.94);
  }

  .nav {
    flex-basis: 100%;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 760px;
    padding-top: 150px;
  }

  .card-grid,
  .faq-grid,
  .split,
  .human-grid,
  .form-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .footer .wrap {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 17px;
  }

  h1 {
    font-size: 43px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .card,
  .bio,
  .price,
  .faq-item,
  .form-panel {
    padding: 22px;
  }
}
