:root {
  --ink: #061113;
  --ink-2: #11191b;
  --muted: #627174;
  --line: #d7e5e4;
  --brand: #24bcbe;
  --brand-dark: #0c8588;
  --brand-deep: #063f42;
  --brand-pale: #e8fbfa;
  --paper: #f7fbfa;
  --warm: #fff8ea;
  --white: #fff;
  --shadow: 0 28px 80px rgba(6, 17, 19, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

p {
  margin: 0 0 16px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 900;
  line-height: .95;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.05;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 18px;
  pointer-events: none;
}

.nav-frame {
  display: flex;
  justify-content: center;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  width: fit-content;
  max-width: calc(100vw - 30px);
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 58px rgba(6, 17, 19, .14);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-logo {
  width: 102px;
  height: auto;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a,
.mobile-menu a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover,
.footer-grid a:hover {
  color: var(--brand-dark);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  background: var(--brand);
  color: #031112;
  box-shadow: 0 16px 34px rgba(36, 188, 190, .32);
}

.btn-primary:hover {
  background: #37cbcc;
}

.btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.btn span[aria-hidden="true"] {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(6, 17, 19, .14);
  line-height: 1;
}

.btn-ghost span[aria-hidden="true"],
.btn-secondary span[aria-hidden="true"] {
  background: rgba(36, 188, 190, .18);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  width: min(1224px, calc(100% - 36px));
  min-height: min(740px, calc(100vh - 104px));
  margin: 104px auto 78px;
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 6%;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 17, 19, .82) 0%, rgba(6, 17, 19, .56) 42%, rgba(6, 17, 19, .08) 100%),
    linear-gradient(0deg, rgba(6, 17, 19, .44), rgba(6, 17, 19, 0) 45%);
}

.hero-card {
  width: min(680px, 100%);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background: rgba(7, 17, 19, .86);
  color: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-card .eyebrow,
.service-band .eyebrow,
.contact-panel .eyebrow,
.site-footer .eyebrow {
  color: #9af6f5;
}

.hero h1,
.hero-card h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.4vw, 64px);
  font-weight: 950;
  line-height: .92;
}

.hero h1 em,
.hero-card h1 em {
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.hero-card p:not(.eyebrow) {
  max-width: 58ch;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

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

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-checks li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 800;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1160px, calc(100% - 36px));
  margin: -34px auto 92px;
}

.proof-strip div {
  position: relative;
  min-height: 190px;
  padding: 28px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(6, 17, 19, .08);
}

.proof-strip div::before {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 34px;
  border: 10px solid var(--brand-pale);
  border-radius: 999px;
  background: var(--brand);
  content: "";
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 950;
  line-height: .95;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 800;
}

.intro-section,
.about-band,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px;
}

.intro-section > div:first-child p:not(.eyebrow),
.about-band p,
.article-body p,
.faq-section p {
  color: var(--muted);
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 760;
}

.check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 0 43%, var(--white) 44% 55%, transparent 56%),
    var(--brand);
  content: "";
}

.photo-stack,
.photo-grid-small {
  display: grid;
  gap: 14px;
}

.photo-stack {
  grid-template-columns: 1fr 1fr;
}

.photo-grid-small {
  grid-template-columns: 1fr 1fr;
}

.photo-stack img,
.photo-grid-small img,
.service-card img,
.result-card img,
.article-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-stack img,
.photo-grid-small img {
  border-radius: 26px;
  box-shadow: 0 20px 58px rgba(6, 17, 19, .12);
}

.photo-stack img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.photo-stack img:not(:first-child),
.photo-grid-small img {
  aspect-ratio: 1 / 1;
}

.service-band {
  padding: 94px 24px 104px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, .25), transparent 32%),
    linear-gradient(135deg, var(--brand-dark), var(--brand) 58%, #60d4d0);
  color: var(--ink);
}

.section-head {
  max-width: 1160px;
  margin: 0 auto 38px;
}

.section-head h2 {
  max-width: 860px;
}

.service-band .section-head h2,
.service-band .section-head p {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.service-card,
.result-card {
  overflow: hidden;
  border: 1px solid rgba(6, 17, 19, .08);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(6, 17, 19, .1);
}

.service-card img,
.result-card img {
  aspect-ratio: 4 / 3;
}

.service-card div,
.result-card div {
  padding: 24px;
}

.service-card p:not(.eyebrow),
.result-card p {
  color: var(--muted);
}

.text-link {
  color: var(--brand-dark);
  font-weight: 950;
  text-decoration: none;
}

.text-link::after {
  content: " ->";
}

.results-section {
  padding: 96px 24px;
  background: var(--paper);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.center-link {
  width: fit-content;
  margin: 34px auto 0;
}

.review-band {
  padding: 78px 24px;
  background: var(--warm);
}

.gr-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(6, 17, 19, .08);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(6, 17, 19, .08);
}

.gr-summary.large {
  max-width: 860px;
}

.gr-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #4285f4;
  font-size: 30px;
  font-weight: 950;
}

.process {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 24px;
}

.process ol {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.process li:last-child {
  border-bottom: 1px solid var(--line);
}

.process span {
  color: var(--brand-dark);
  font-size: 42px;
  font-weight: 950;
  line-height: .86;
}

.process p {
  color: var(--muted);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 96px max(24px, calc((100vw - 1160px) / 2));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 17, 19, .95), rgba(6, 17, 19, .76)),
    url("/clients/peter-nguyen-fitness/img/hero.webp") center 28% / cover;
  content: "";
}

.contact-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 15% 20%, rgba(36, 188, 190, .25), transparent 36%);
  content: "";
}

.contact-panel h2 {
  max-width: 520px;
}

.contact-panel p:not(.eyebrow) {
  max-width: 46ch;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 28px;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(36, 188, 190, .18);
}

.wide {
  grid-column: 1 / -1;
}

.contact-layout .contact-form {
  box-shadow: 0 18px 50px rgba(6, 17, 19, .12);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.detail-list p {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.faq-section,
.article-body,
.archive-section,
.not-found {
  max-width: 980px;
  margin: 0 auto;
  padding: 96px 24px;
}

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

.faq-list details {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin-top: 12px;
}

.article-list {
  padding: 96px 24px;
}

.article-list article {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.article-list img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
}

.split-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 860px;
  margin: 28px auto;
}

.split-links a {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 64px 24px 92px;
  background: var(--ink);
  color: #d9f0ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #d9f0ef;
  text-decoration: none;
}

.footer-grid p {
  color: rgba(217, 240, 239, .78);
}

.footer-logo {
  width: 150px;
  padding: 8px;
  border-radius: 14px;
  background: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 1160px;
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(217, 240, 239, .78);
}

.mobile-sticky-cta {
  display: none;
}

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

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

@media (max-width: 1023px) {
  .nav-pill {
    justify-content: space-between;
    width: calc(100vw - 24px);
  }

  .nav-links,
  .nav-cta,
  .brand span {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 82px;
    right: 12px;
    left: 12px;
    z-index: 45;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.menu-open .mobile-menu {
    display: grid;
    gap: 12px;
  }

  .hero {
    width: calc(100% - 24px);
    min-height: auto;
    margin: 94px auto 58px;
    padding: 188px 16px 18px;
    border-radius: 28px;
  }

  .hero-media {
    inset: 0 0 auto;
    height: 226px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(6, 17, 19, .96) 0%, rgba(6, 17, 19, .48) 52%, rgba(6, 17, 19, .04) 100%),
      linear-gradient(90deg, rgba(6, 17, 19, .26), rgba(6, 17, 19, .04));
  }

  .hero-card {
    width: 100%;
    padding: 28px 24px;
    border-radius: 24px;
    box-shadow: none;
  }

  .hero-card h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -24px;
  }

  .intro-section,
  .about-band,
  .contact-layout,
  .process,
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 72px 18px;
  }

  .gr-summary {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .article-list article {
    grid-template-columns: 1fr;
  }

  .detail-list p {
    grid-template-columns: 1fr;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-sticky-cta a {
    display: grid;
    min-height: 56px;
    place-items: center;
    color: var(--white);
    font-weight: 950;
    text-decoration: none;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--brand-dark);
  }

  .mobile-sticky-cta a:last-child {
    background: var(--ink);
  }

  .site-footer {
    padding-bottom: 132px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px;
  }

  .brand-logo {
    width: 104px;
  }

  .hero {
    margin-top: 84px;
    padding-top: 166px;
  }

  .hero-media {
    height: 202px;
  }

  .hero-card {
    padding: 26px 22px;
  }

  .hero-card p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .proof-strip,
  .service-grid,
  .results-grid,
  .photo-stack,
  .photo-grid-small,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: 0;
  }

  .service-band,
  .results-section,
  .article-list {
    padding-right: 16px;
    padding-left: 16px;
  }

  .process li {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .process span {
    font-size: 32px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (max-width: 420px) {
  .hero-card h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 34px;
  }

  .contact-form {
    padding: 22px;
  }
}
