:root {
  --ink: #0f1714;
  --muted: #56635e;
  --paper: #f3f6f2;
  --white: #ffffff;
  --teal: #0b6e68;
  --teal-bright: #12a698;
  --green: #6f8f4e;
  --amber: #d4a24c;
  --dark: #101816;
  --dark-soft: #17221f;
  --line: #d5ddd7;
  --shadow: 0 22px 50px rgba(15, 23, 20, 0.18);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 106.25%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--dark);
  background: #9de8df;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(16, 24, 22, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header .brand {
  color: var(--white);
}

.site-header .site-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: #9de8df;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand span:last-child {
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.brand-mark {
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--dark);
  background: linear-gradient(145deg, #9de8df, var(--teal-bright));
  border-radius: 10px 10px 10px 2px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 3vw, 28px);
  font-size: 1rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.lang-switch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 34px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
}

.lang-switch-link:hover,
.lang-switch-link:focus-visible {
  color: #9de8df;
}

.lang-switch-link.is-active {
  color: var(--dark);
  background: #9de8df;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 108px) clamp(18px, 7vw, 92px) clamp(88px, 10vw, 120px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 166, 152, 0.22), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(212, 162, 76, 0.14), transparent 28%),
    linear-gradient(155deg, #0a1210 0%, var(--dark-soft) 52%, #0f1714 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  right: -0.08em;
  bottom: -0.2em;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  background-clip: text;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 15rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: min(620px, calc(100vh - 120px));
}

.hero-content {
  width: min(720px, 100%);
  padding-left: 22px;
  border-left: 3px solid var(--amber);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal-bright);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9de8df;
}

.section-kicker {
  color: var(--teal);
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.22;
  font-weight: 700;
}

.hero-copy {
  max-width: 56ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-summary {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-summary div {
  display: grid;
  grid-template-columns: minmax(4.5rem, max-content) 1fr;
  gap: 16px;
  align-items: start;
  min-height: 76px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-summary div:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-summary span {
  color: var(--amber);
  font-size: 0.9375rem;
  font-weight: 800;
  white-space: nowrap;
  padding-top: 2px;
}

.hero-summary strong {
  font-size: 1.08rem;
  line-height: 1.18;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--dark);
  background: linear-gradient(135deg, #9de8df, var(--teal-bright));
  box-shadow: 0 14px 30px rgba(18, 166, 152, 0.28);
}

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

.intro .button.secondary,
.founder .button.secondary,
.contact-band .button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 23, 20, 0.16);
}

.intro,
.band,
.client-needs,
.experience,
.founder,
.join-team,
.approach,
.contact-band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro h2 {
  padding-left: 18px;
  border-left: 4px solid var(--teal);
}

.intro p:last-child {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.band {
  background:
    linear-gradient(180deg, #e8f1ec 0%, #f3f6f2 100%);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 28px 28px 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(15, 23, 20, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--amber);
  box-shadow: 0 18px 36px rgba(15, 23, 20, 0.1);
}

.service-number {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card p,
.needs-grid p,
.experience-grid p,
.founder-copy p,
.founder-panel li,
.approach-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.0625rem;
}

.client-needs {
  background: var(--white);
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.need-item {
  min-height: 190px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.need-item:hover {
  transform: translateY(-3px);
  background: var(--white);
  border-color: rgba(11, 110, 104, 0.28);
}

.need-item p {
  margin-top: 14px;
}

.experience {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.experience-grid p {
  margin: 0;
  padding-right: 24px;
  font-size: 1.08rem;
}

.founder {
  background:
    radial-gradient(circle at 0% 0%, rgba(11, 110, 104, 0.08), transparent 34%),
    var(--paper);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 6vw, 72px);
  margin-top: 38px;
  align-items: start;
}

.founder-photo-wrap {
  margin: 0;
}

.founder-photo {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  filter: contrast(1.04) saturate(0.9);
}

.founder-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.founder-copy p {
  margin: 0;
}

.founder-name {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 800;
}

.founder-role {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 700;
}

.founder-link {
  justify-self: start;
  margin-top: 8px;
}

.founder-panel {
  padding: 26px;
  color: var(--white);
  background: var(--dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.founder-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.founder-panel li {
  margin-top: 0;
  padding-left: 2px;
}

.join-team {
  background: linear-gradient(180deg, #e8f1ec, #f3f6f2);
}

.join-intro {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
}

.join-intro p {
  margin: 0;
}

.join-tracks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.join-track {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.join-track-dark {
  color: var(--white);
  background: #17201d;
  border-color: transparent;
  box-shadow: var(--shadow);
}

.join-track p,
.join-track li,
.join-areas li {
  color: var(--muted);
  font-size: 1.0625rem;
}

.join-track-dark p,
.join-track-dark li {
  color: rgba(255, 255, 255, 0.78);
}

.join-track ul,
.join-areas ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.join-areas {
  margin-top: 28px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.join-areas h3 {
  margin: 0;
}

.join-areas ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin-top: 18px;
}

.approach {
  background: var(--paper);
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.approach-list div {
  padding: 22px 24px 22px 0;
  border-top: 2px solid var(--line);
}

.approach-list h3 {
  color: var(--teal);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 166, 152, 0.16), transparent 36%),
    linear-gradient(160deg, #0a1210, var(--dark-soft));
}

.contact-band .section-kicker {
  color: #9cc7bd;
}

.contact-copy p:not(.section-kicker) {
  max-width: 52ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.contact-copy a {
  color: #9cc7bd;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.join-form-wrap {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.join-form-wrap h3 {
  margin: 0;
}

.join-form-intro {
  max-width: 56ch;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.join-form {
  display: grid;
  gap: 16px;
  max-width: 640px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.join-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.join-form textarea {
  min-height: 128px;
  resize: vertical;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.28);
}

.form-button-light {
  width: 100%;
  color: var(--dark);
  background: linear-gradient(135deg, #9de8df, var(--teal-bright));
  border: 0;
  cursor: pointer;
}

.form-note-light {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.form-note-light a {
  color: var(--teal);
  font-weight: 800;
}

.privacy-notice {
  grid-column: 1 / -1;
  max-width: 72ch;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.privacy-notice a {
  color: #9cc7bd;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form h3 {
  margin: 0;
  color: var(--white);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(156, 199, 189, 0.42);
}

.hidden-field {
  display: none;
}

.form-button {
  width: 100%;
  color: var(--dark);
  background: linear-gradient(135deg, #9de8df, var(--teal-bright));
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #edf3ef;
}

.success-panel {
  width: min(640px, 100%);
  padding: clamp(28px, 6vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.success-panel .brand {
  margin-bottom: 24px;
}

.lang-switch-panel {
  margin-bottom: 30px;
}

.success-page .lang-switch {
  background: var(--paper);
  border-color: var(--line);
}

.success-page .lang-switch-link {
  color: var(--muted);
}

.success-page .lang-switch-link:hover,
.success-page .lang-switch-link:focus-visible {
  color: var(--teal);
}

.success-panel h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.success-panel p:not(.section-kicker) {
  max-width: 42ch;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-page {
  background: var(--paper);
}

.legal-panel {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.legal-panel h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-updated {
  margin: 12px 0 34px;
  color: var(--muted);
  font-size: 1rem;
}

.legal-panel section {
  margin-bottom: 28px;
}

.legal-panel section p,
.legal-panel section li {
  color: var(--muted);
  font-size: 1.0625rem;
}

.legal-panel section p {
  margin: 12px 0 0;
}

.legal-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-panel .button {
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .service-grid,
  .needs-grid,
  .approach-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    width: 100%;
  }

  .hero-watermark {
    font-size: clamp(4.5rem, 24vw, 8rem);
    right: 0;
    bottom: 0;
  }

  .intro,
  .service-grid,
  .needs-grid,
  .experience-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo-wrap {
    justify-self: start;
  }

  .join-tracks,
  .join-areas ul,
  .approach-list,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .intro p:last-child {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .service-card,
  .need-item,
  .hero-summary div {
    transition: none;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 100%;
  }

  .site-nav {
    gap: 18px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 34px;
  }
}
