:root {
  --ink: #101820;
  --ink-2: #1b2a2f;
  --paper: #fbfaf7;
  --cloud: #eef2ef;
  --white: #ffffff;
  --teal: #0f7a75;
  --rust: #bf4a3a;
  --gold: #d8a34a;
  --line: rgba(16, 24, 32, 0.14);
  --shadow: 0 18px 48px rgba(16, 24, 32, 0.12);
  --radius: 8px;
  --max: 1140px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: 6rem;
  color: var(--white);
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.4);
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.32rem;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  transition: top 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.button,
.contact-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: rgba(16, 24, 32, 0.72);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  outline: none;
  background: rgba(15, 122, 117, 0.1);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.lucide {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: calc(78svh - var(--header-h));
  display: flex;
  align-items: center;
  isolation: isolate;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.92), rgba(16, 24, 32, 0.66) 48%, rgba(16, 24, 32, 0.24)),
    linear-gradient(0deg, rgba(16, 24, 32, 0.28), rgba(16, 24, 32, 0.06));
}

.hero-content,
.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero-content {
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.band-ink .eyebrow,
.contact-band .eyebrow {
  color: #f2c064;
}

.hero-kicker {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--white);
  font-size: 1.32rem;
  font-weight: 850;
  line-height: 1.42;
}

.hero-sub {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
}

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

.button {
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  width: fit-content;
  max-width: 100%;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 24, 32, 0.2);
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

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

.band {
  padding: 72px 0;
}

.band-light {
  background: var(--cloud);
}

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

.band-ink {
  background: var(--ink);
  color: var(--white);
}

.intro-grid,
.section-heading.split,
.resume-strip,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.intro-copy p,
.section-heading p,
.resume-strip p {
  margin: 0;
  color: rgba(16, 24, 32, 0.72);
}

.intro-copy p + p {
  margin-top: 14px;
}

.signal-grid,
.strength-grid,
.proof-grid,
.credential-grid {
  display: grid;
  gap: 16px;
}

.signal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.signal-grid article,
.strength-grid article,
.credential-grid section,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.signal-grid article {
  padding: 20px;
}

.signal-grid span {
  display: block;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.signal-grid p,
.strength-grid p,
.credential-grid p {
  margin: 10px 0 0;
  color: rgba(16, 24, 32, 0.7);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.compact-heading {
  margin-bottom: 30px;
}

.section-heading.centered p {
  margin: 14px auto 0;
}

.proof-heading {
  max-width: 980px;
}

.stacked-heading {
  max-width: none;
}

.stacked-heading span {
  display: block;
}

.project-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 34px;
  align-items: end;
}

.project-heading p:last-child {
  max-width: 430px;
  margin: 0 0 6px auto;
  color: rgba(16, 24, 32, 0.72);
}

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

.strength-grid article,
.credential-grid section,
.contact-panel {
  padding: 22px;
}

.strength-grid .lucide {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--rust);
}

.band-ink .section-heading p,
.proof-grid p {
  color: rgba(255, 255, 255, 0.76);
}

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

.proof-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.proof-number {
  display: block;
  margin-bottom: 20px;
  color: #f2c064;
  font-size: 0.78rem;
  font-weight: 900;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(15, 122, 117, 0.28);
}

.text-link.light {
  color: #f2c064;
  border-color: rgba(242, 192, 100, 0.3);
}

.text-link.muted-light {
  color: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.2);
}

.project-list {
  display: grid;
  gap: 10px;
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(210px, 0.4fr) minmax(0, 1fr) 30px;
  gap: 18px;
  align-items: center;
  padding: 18px 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(16, 24, 32, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-row::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 4px;
  border-radius: 0 6px 6px 0;
  background: var(--teal);
}

.project-row:hover,
.project-row:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(15, 122, 117, 0.45);
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.12);
}

.project-label {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.12;
}

.project-row p {
  margin: 0;
  color: rgba(16, 24, 32, 0.72);
}

.project-row .lucide {
  color: var(--teal);
}

.resume-strip {
  margin-bottom: 22px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.resume-strip p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.credential-grid {
  grid-template-columns: 1fr 1fr 0.8fr;
}

ul {
  padding-left: 1.15rem;
}

li + li {
  margin-top: 8px;
}

.contact-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.92), rgba(16, 24, 32, 0.72)),
    url("https://studio88design.online/wp-content/uploads/2026/03/desktop-hero-contact-page.png") center / cover;
}

.contact-shell {
  align-items: center;
}

.contact-shell p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.contact-panel ul {
  margin-bottom: 24px;
}

.contact-actions {
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .signal-grid,
  .proof-grid,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-row {
    grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr) 30px;
  }

  .project-row p {
    grid-column: 2 / 3;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .site-header {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 64px 12px auto 12px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: calc(80svh - 64px);
    background-position: 62% center;
  }

  .intro-grid,
  .section-heading.split,
  .project-heading,
  .resume-strip,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .project-heading p:last-child {
    margin: 12px 0 0;
  }

  .strength-grid,
  .proof-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .project-row {
    grid-template-columns: 1fr 30px;
  }

  .project-label,
  .project-row strong,
  .project-row p {
    grid-column: 1 / 2;
  }

  .project-row .lucide {
    grid-column: 2 / 3;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .hero-content,
  .section-shell {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-kicker {
    font-size: 1.05rem;
  }

  .hero-sub {
    font-size: 0.96rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

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

  .brand span:last-child {
    max-width: 140px;
    line-height: 1.1;
  }

}
