:root {
  --ink: #11171a;
  --text: #2f383c;
  --muted: #677276;
  --paper: #eef1f1;
  --paper-deep: #d9dde0;
  --white: #fafafa;
  --line: #c7d0d2;
  --accent: #4f6684;
  --accent-dark: #223a5c;
  --rose: #536b82;
  --clay: #405a70;
  --sand: #e3e5e7;
  --max: 1160px;
  --shadow: 0 28px 90px rgba(17, 23, 26, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 221, 224, 0.65), transparent 34rem),
    linear-gradient(180deg, #f7f8f8 0%, var(--paper) 48%, #e2e5e8 100%);
  font-family:
    "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(199, 208, 210, 0.86);
  background: rgba(250, 250, 250, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 12px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--clay);
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
}

.nav-links {
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

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

.nav-cta {
  min-width: 78px;
  padding: 10px 17px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(250, 250, 250, 0.78);
  text-align: center;
}

.hero,
.note-panel,
.paths,
.work,
.process,
.proof,
.personal-band,
.offers,
.quote-panel,
.contact {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(40px, 7vw, 98px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(56px, 7vw, 92px) 0;
}

.eyebrow,
.section-kicker,
.offer-label,
.profile-label {
  margin: 0 0 15px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.proof-copy h2,
.personal-band h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 6.6vw, 6.45rem);
}

.lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(1.08rem, 1.65vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 500;
  text-align: center;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--accent-dark);
  box-shadow: 0 16px 36px rgba(68, 88, 93, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #192f4d;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 500;
}

.text-action::after {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 150ms ease;
}

.text-action:hover::after,
.text-action:focus-visible::after {
  width: 46px;
}

.profile-card {
  position: relative;
  padding: 18px 18px 24px;
  border: 1px solid rgba(199, 208, 210, 0.9);
  border-radius: 220px 220px 18px 18px;
  background: rgba(250, 250, 250, 0.9);
  box-shadow: var(--shadow);
}

.profile-card::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 40px -20px -20px 34px;
  border-radius: 220px 220px 20px 20px;
  background: var(--paper-deep);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  border-radius: 200px 200px 10px 10px;
  object-fit: cover;
}

.profile-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.profile-label {
  margin-top: 22px;
  color: var(--ink);
}

.note-panel {
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #e0e4e8;
  box-shadow: var(--shadow);
}

.note-panel p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3.45rem);
  font-weight: 400;
  line-height: 1.12;
  text-align: center;
}

.paths,
.work,
.offers {
  padding: 96px 0 26px;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.proof-copy h2,
.personal-band h2,
.contact-copy h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.15rem);
}

.path-grid,
.work-grid,
.offer-grid {
  display: grid;
  gap: 18px;
}

.path-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-grid {
  grid-template-columns: repeat(4, 1fr);
}

.path-grid article,
.work-grid article,
.offer-card {
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(250, 250, 250, 0.78);
}

.path-grid article {
  min-height: 274px;
}

.path-grid article:nth-child(2) {
  background: #e1e6ee;
}

.path-label {
  margin: 0 0 26px;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.12;
}

.path-grid p:last-child {
  margin: 0;
  color: var(--muted);
}

.work-grid article {
  box-shadow: 0 18px 46px rgba(17, 23, 26, 0.055);
}

.work-grid span {
  color: var(--rose);
  font-weight: 500;
}

.work-grid h3,
.offer-card h3 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.16;
}

.work-grid p,
.offer-card p,
.process-copy p,
.process-list p,
.proof-copy p,
.personal-band p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  padding: 72px clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(250, 250, 250, 0.7);
}

.process-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
}

.process-copy p {
  margin-top: 22px;
  font-size: 1.08rem;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.process-list article:last-child {
  border-bottom: 0;
}

.process-list span {
  grid-row: 1 / span 2;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.process-list h3 {
  grid-column: 2;
  margin: 0 0 5px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 400;
}

.process-list p {
  grid-column: 2;
  max-width: 36rem;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  margin-top: 96px;
  padding: clamp(36px, 5vw, 62px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(250, 250, 250, 0.74), rgba(217, 221, 224, 0.96)),
    var(--paper-deep);
}

.proof-copy p {
  margin-top: 24px;
  font-size: 1.08rem;
}

.toolbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toolbox span {
  padding: 9px 13px;
  border: 1px solid rgba(49, 79, 90, 0.16);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.68);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 400;
}

.personal-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: 96px 0 64px;
}

.personal-band p {
  color: var(--text);
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-card {
  display: flex;
  min-height: 344px;
  flex-direction: column;
}

.featured-offer {
  border-color: rgba(68, 88, 93, 0.28);
  background: #e1e6ee;
  box-shadow: 0 22px 62px rgba(38, 63, 90, 0.12);
}

.offer-card h3 {
  margin-top: 0;
  font-size: 1.62rem;
}

.offer-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.quote-panel {
  padding: 96px 0;
}

.quote-panel p {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  padding: 82px 0 98px;
  border-top: 1px solid var(--line);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.74);
  color: var(--ink);
  font-weight: 400;
}

.booking-panel {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #e1e6ee;
  box-shadow: var(--shadow);
}

.booking-label {
  margin: 0;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-panel h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.04;
}

.booking-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-column: 2;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #eef1f1;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(68, 88, 93, 0.2);
  border-color: var(--accent);
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(22px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

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

.site-footer a {
  color: rgba(255, 250, 246, 0.74);
}

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

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero,
  .process,
  .proof,
  .personal-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .profile-card {
    max-width: 440px;
  }

  .path-grid,
  .work-grid,
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

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

  .hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.2rem);
  }

  .hero-actions,
  .button,
  .text-action {
    width: 100%;
  }

  .text-action {
    justify-content: center;
    min-height: 44px;
  }

  .paths,
  .work,
  .offers,
  .quote-panel,
  .contact {
    padding-block: 60px;
  }

  .path-grid,
  .work-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .proof {
    margin-top: 58px;
  }

  .process {
    padding: 34px 24px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }

  .contact-form {
    grid-column: auto;
  }

  .process-list span,
  .process-list h3,
  .process-list p {
    grid-column: 1;
  }

  .path-grid article,
  .work-grid article,
  .offer-card {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
