/* Justin147 Coaching V2 — Light, nature-inspired, mobile-first stylesheet */

:root {
  --brand-50: #f4f9f4;
  --brand-100: #e3f0e3;
  --brand-200: #c7e0c7;
  --brand-300: #9ec59e;
  --brand-400: #74a574;
  --brand-500: #5a7d5a;
  --brand-600: #466346;
  --brand-700: #384f38;
  --brand-800: #2e3f2e;
  --brand-900: #273427;
  --brand-950: #121d12;

  --accent-400: #5fb3c9;
  --accent-500: #4a90a4;
  --accent-600: #3d7486;

  --ink-50: #f8faf8;
  --ink-100: #eef2ee;
  --ink-200: #dce4dc;
  --ink-300: #b8c8b8;
  --ink-400: #8fa08f;
  --ink-500: #6b7d6b;
  --ink-600: #526152;
  --ink-700: #3f4b3f;
  --ink-800: #333d33;
  --ink-900: #2b332b;
  --ink-950: #141914;

  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Bebas Neue", Inter, system-ui, sans-serif;

  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 12px 24px -4px rgb(0 0 0 / 0.08);
  --shadow-xl: 0 24px 48px -8px rgb(0 0 0 / 0.1);

  --header-height: 4.5rem;
  --max-width: 72rem;
  --transition: 200ms ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
  background-color: var(--ink-50);
  overflow-x: hidden;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink-900);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 4.5rem;
}

.section--dark {
  background-color: var(--ink-50);
}

.section--brand {
  background-color: var(--brand-50);
}

.section--ink {
  background-color: var(--brand-900);
  color: var(--ink-100);
}

.section--ink h2,
.section--ink h3 {
  color: #fff;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-600);
  margin-bottom: 1rem;
}

.section__label::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--accent-500);
  border-radius: 2px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--ink-500);
  max-width: 55ch;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--brand-500);
  color: #fff;
  box-shadow: 0 4px 14px 0 rgb(90 125 90 / 0.3);
}

.btn--primary:hover {
  background: var(--brand-600);
  box-shadow: 0 6px 20px 0 rgb(90 125 90 / 0.4);
}

.btn--accent {
  background: var(--accent-500);
  color: #fff;
  box-shadow: 0 4px 14px 0 rgb(74 144 164 / 0.3);
}

.btn--accent:hover {
  background: var(--accent-600);
  box-shadow: 0 6px 20px 0 rgb(74 144 164 / 0.4);
}

.btn--outline {
  border: 2px solid var(--ink-200);
  color: var(--ink-800);
}

.btn--outline:hover {
  border-color: var(--brand-400);
  background: var(--brand-50);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(248, 250, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(248, 250, 248, 0.98);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.logo__icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-400), var(--accent-500));
}

.logo__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

.logo span {
  color: var(--brand-600);
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  color: var(--ink-800);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: var(--ink-50);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav--open {
  transform: translateX(0);
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--ink-600);
  transition: background-color var(--transition), color var(--transition);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  background: #fff;
  color: var(--ink-900);
}

.nav__link[aria-current="page"] {
  color: var(--brand-600);
}

.nav__cta {
  margin-top: 1rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: linear-gradient(180deg, var(--ink-50) 0%, #fff 50%, var(--brand-50) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(90, 125, 90, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(74, 144, 164, 0.08) 0%, transparent 40%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(90, 125, 90, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent, black 10%, black 90%, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 4rem 6rem;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid var(--ink-200);
  color: var(--brand-600);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--ink-900);
}

.hero__title span {
  display: block;
}

.hero__lead {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: var(--ink-600);
  max-width: 36ch;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 26rem;
}

.stat {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-sm);
}

.stat__value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--accent-600);
  line-height: 1;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-top: 0.375rem;
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: none;
}

.card {
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--ink-200);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-100), var(--brand-200));
  color: var(--brand-700);
  margin-bottom: 1.25rem;
}

.card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  color: var(--ink-900);
}

.card__text {
  color: var(--ink-600);
  font-size: 0.9375rem;
}

.story__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.story__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-xl);
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
}

.story__body p {
  color: var(--ink-600);
  margin-bottom: 1rem;
}

.story__body p strong {
  color: var(--ink-800);
}

.story__highlight {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-left: 4px solid var(--accent-500);
  background: var(--brand-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story__highlight p {
  margin: 0;
  color: var(--ink-700);
  font-style: italic;
}

.services__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--ink-200);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-400), var(--accent-500));
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink-900);
}

.service-card__text {
  color: var(--ink-600);
  margin-bottom: 1.25rem;
}

.service-card__list {
  display: grid;
  gap: 0.625rem;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink-700);
}

.service-card__list svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--brand-500);
  flex-shrink: 0;
}

.testimonials {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  margin-top: 2.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 min(85vw, 22rem);
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--ink-200);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  display: flex;
  gap: 0.25rem;
  color: #f5b041;
  margin-bottom: 1rem;
}

.testimonial__stars svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.testimonial__quote {
  color: var(--ink-700);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.testimonial__author {
  font-weight: 700;
  color: var(--ink-900);
  font-size: 0.9375rem;
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--ink-500);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonials__btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--ink-700);
  border: 1px solid var(--ink-200);
  display: grid;
  place-items: center;
  transition: background-color var(--transition);
}

.testimonials__btn:hover {
  background: var(--brand-100);
}

.testimonials__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: var(--radius-full);
  background: var(--ink-300);
  transition: background-color var(--transition), transform var(--transition);
}

.testimonials__dot--active {
  background: var(--accent-500);
  transform: scale(1.25);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--ink-200);
  box-shadow: var(--shadow-sm);
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__caption {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
}

.contact__grid {
  display: grid;
  gap: 2.5rem;
}

.contact__info {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: var(--brand-100);
  display: grid;
  place-items: center;
  color: var(--brand-600);
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.contact-card__title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--ink-900);
}

.contact-card__text {
  font-size: 0.9375rem;
  color: var(--ink-600);
}

.form {
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--ink-200);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-200);
  background: var(--ink-50);
  color: var(--ink-900);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--brand-400);
  box-shadow: 0 0 0 3px rgba(90, 125, 90, 0.12);
}

.form__textarea {
  min-height: 8rem;
  resize: vertical;
}

.form__helper {
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-top: 0.375rem;
}

.form__status {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.form__status--success {
  display: block;
  background: var(--brand-100);
  color: var(--brand-800);
  border: 1px solid var(--brand-200);
}

.form__status--error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.privacy__content {
  max-width: 65ch;
  margin-top: 2rem;
}

.privacy__content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--brand-700);
}

.privacy__content p,
.privacy__content li {
  color: var(--ink-600);
  margin-bottom: 0.75rem;
}

.privacy__content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.privacy__content li {
  margin-bottom: 0.375rem;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--ink-200);
  padding-block: 3rem 2rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

.footer__brand p {
  color: var(--ink-500);
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  max-width: 32ch;
}

.footer__title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  margin-bottom: 1rem;
}

.footer__links {
  display: grid;
  gap: 0.625rem;
}

.footer__links a {
  color: var(--ink-600);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--brand-600);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-200);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  color: var(--ink-500);
  font-size: 0.875rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ink-200);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.sticky-cta__text {
  font-size: 0.8125rem;
  color: var(--ink-600);
  line-height: 1.35;
}

.sticky-cta__text strong {
  color: var(--ink-900);
  display: block;
  font-size: 0.9375rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--brand-600);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

.version-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(39, 52, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.version-overlay--visible {
  transform: translateY(0);
}

.version-overlay__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}

.version-overlay__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.version-overlay__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  background: var(--accent-500);
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.version-overlay__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.version-overlay__btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.version-overlay__btn svg {
  width: 1rem;
  height: 1rem;
}

body:has(.version-overlay--visible) .header {
  top: 3rem;
}

body:has(.version-overlay--visible) .hero {
  padding-top: calc(var(--header-height) + 3rem);
}

body:has(.version-overlay--visible) .section:first-of-type {
  padding-top: calc(7rem + 3rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 640px) {
  .container {
    padding-inline: 2rem;
  }

  .section {
    padding-block: 5rem;
  }

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

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

  .gallery__item--wide {
    grid-column: span 2;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 5rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    inset: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .nav__link {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
  }

  .nav__cta {
    margin-top: 0;
    margin-left: 0.75rem;
  }

  .hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero__visual {
    display: block;
  }

  .hero__visual__frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-xl);
  }

  .hero__visual__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__visual__badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--ink-200);
  }

  .story__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

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

  .contact__grid {
    grid-template-columns: 1fr 1.25fr;
    align-items: start;
  }

  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .hero__title {
    font-size: 6.5rem;
  }
}

@media (max-width: 1023px) {
  body {
    padding-bottom: 4.5rem;
  }
}
