:root {
  --ink: #173b33;
  --ink-deep: #0e2924;
  --ink-muted: #4d655f;
  --paper: #fffdf9;
  --cream: #f5f0e7;
  --cream-deep: #ebe2d3;
  --sage: #e3ece5;
  --sage-strong: #b9cebe;
  --warm: #e7a56f;
  --warm-light: #f5d2b3;
  --whatsapp: #087d45;
  --whatsapp-hover: #06683a;
  --white: #ffffff;
  --line: rgba(23, 59, 51, 0.14);
  --shadow-sm: 0 8px 24px rgba(18, 48, 41, 0.08);
  --shadow-lg: 0 24px 60px rgba(18, 48, 41, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 70rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink-deep);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  color: var(--ink-deep);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 8vw, 3.4rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

::selection {
  background: var(--warm-light);
  color: var(--ink-deep);
}

:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 12vw, 7.5rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--ink-deep);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.96);
}

.header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-height: 3rem;
  min-width: 0;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 2.5rem;
  min-width: 2.5rem;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.brand-copy span {
  margin-top: 0.25rem;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button svg {
  width: 1.4rem;
  min-width: 1.4rem;
}

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

.button--compact {
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
}

.button--compact svg {
  width: 1.2rem;
  min-width: 1.2rem;
}

.button--whatsapp,
.button--primary {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(8, 125, 69, 0.18);
}

.button--phone {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(23, 59, 51, 0.16);
}

.message-underline {
  text-decoration-line: underline;
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.16em;
  text-decoration-skip-ink: none;
}

.message-underline--problem {
  text-decoration-color: #c65d52;
}

.message-underline--solution {
  text-decoration-color: var(--whatsapp);
}

.button--large {
  width: 100%;
  min-height: 3.65rem;
  padding: 0.95rem 1.25rem;
  font-size: 1.05rem;
}

.button--light {
  background: var(--white);
  color: var(--ink-deep);
  box-shadow: 0 12px 28px rgba(3, 22, 18, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 2.5rem 4.5rem;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  top: -8rem;
  right: -9rem;
  width: 21rem;
  height: 21rem;
  border: 4rem solid rgba(231, 165, 111, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
}

.section-kicker {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.3rem;
  font-size: clamp(2.35rem, 10vw, 4.65rem);
  line-height: 1.01;
}

.hero-eyebrow {
  display: inline-flex;
  min-height: 2rem;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  align-items: center;
  border: 1px solid var(--sage-strong);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.hero h1 span {
  color: var(--ink);
  background: linear-gradient(transparent 76%, var(--warm-light) 76%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: normal;
}

.hero-lede {
  max-width: 38rem;
  margin-bottom: 1.65rem;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.inline-whatsapp-link {
  color: var(--whatsapp);
  font-weight: 750;
  text-decoration-line: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
}

.hero-action {
  display: grid;
  gap: 0.75rem;
}

.hero-action p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 13rem;
  height: 13rem;
  border: 2rem solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.hero-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
}

.hero-card__copy strong {
  max-width: 20ch;
  font-size: clamp(1.35rem, 6vw, 1.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero-card__copy span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.photo-wrap {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--cream-deep);
}

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

.hero-photo {
  aspect-ratio: 4 / 5;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  min-width: 0;
  min-height: 5.8rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.25rem;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item svg {
  width: 1.45rem;
  min-width: 1.45rem;
  color: var(--whatsapp);
}

.trust-item p {
  display: grid;
  margin: 0;
  line-height: 1.3;
}

.trust-item strong {
  color: var(--ink-deep);
  font-size: 0.86rem;
}

.trust-item span {
  margin-top: 0.1rem;
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.family-section {
  background: var(--paper);
}

#neden-biz,
#hizmetler,
#nasil-isliyor {
  scroll-margin-top: 5rem;
}

.family-grid {
  max-width: 52rem;
}

.family-copy > p:not(.section-kicker) {
  max-width: 39rem;
}

.section-lede,
.section-heading > p:last-child,
.faq-intro > p:last-child {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.75rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ink-deep);
  font-weight: 650;
}

.check-list svg {
  width: 1.35rem;
  min-width: 1.35rem;
  margin-top: 0.15rem;
  color: var(--whatsapp);
}

.family-photo {
  aspect-ratio: 4 / 5;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.family-photo img {
  object-fit: contain;
}

.family-summary {
  margin-top: 1rem;
}

.services {
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.section-heading {
  max-width: 43rem;
  margin-bottom: 2.5rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.services-title {
  margin-bottom: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.service-card {
  display: grid;
  min-width: 0;
  min-height: 7.5rem;
  align-content: center;
  justify-items: center;
  padding: 0.8rem 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  text-align: center;
}

.service-icon {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 0.7rem;
  place-items: center;
  border-radius: 0.9rem;
  background: var(--sage);
  color: var(--ink);
}

.service-icon svg {
  width: 1.5rem;
}

.service-card h3 {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.18;
}

.service-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  margin: 0.75rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.service-note svg {
  width: 1.5rem;
  min-width: 1.5rem;
  color: var(--whatsapp);
}

.service-note strong {
  color: var(--ink-deep);
}

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

.process-list {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.step-number {
  display: grid;
  width: 2.6rem;
  min-width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.process-list p {
  margin: 0;
  color: var(--ink-deep);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.35;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-shell {
  display: grid;
  gap: 2rem;
}

.faq-intro {
  max-width: 32rem;
}

.faq-carousel {
  position: relative;
  min-width: 0;
  padding-inline: 1.5rem;
}

.faq-stage {
  display: grid;
  gap: 0.85rem;
  touch-action: pan-y;
}

.faq-card {
  overflow: hidden;
  min-height: 11.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.faq-card__heading {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.faq-card__heading > span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
}

.faq-card h3 {
  max-width: 24ch;
  margin: 0;
  font-size: 1.15rem;
}

.faq-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.faq-controls {
  display: none;
}

.faq-carousel.is-enhanced .faq-stage {
  position: relative;
  display: block;
  transition: height 180ms ease;
}

.faq-carousel.is-enhanced .faq-card {
  position: absolute;
  top: 0;
  right: 1.35rem;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(1.35rem, 1.35rem) scale(0.95);
  transform-origin: center bottom;
  transition: opacity 220ms ease, transform 260ms ease;
}

.faq-carousel.is-enhanced .faq-card[data-state="active"] {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0) scale(1);
}

.faq-carousel.is-enhanced .faq-card[data-state="next"] {
  z-index: 3;
  opacity: 0.72;
  transform: translate(0.85rem, 0.55rem) rotate(1.5deg) scale(0.985);
}

.faq-carousel.is-enhanced .faq-card[data-state="after"] {
  z-index: 2;
  opacity: 0.42;
  transform: translate(-0.65rem, 0.85rem) rotate(-2deg) scale(0.97);
}

.faq-carousel.is-enhanced .faq-controls {
  position: absolute;
  z-index: 6;
  top: 50%;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.faq-controls button {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: var(--shadow-sm);
}

.faq-controls button svg {
  width: 1.2rem;
}

.final-cta {
  padding-block: 3rem;
  background: var(--paper);
}

.final-cta__inner {
  position: relative;
  display: grid;
  gap: 1.75rem;
  overflow: hidden;
  padding: 2rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.final-cta__inner::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 16rem;
  height: 16rem;
  border: 3rem solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.final-cta__inner > * {
  position: relative;
  z-index: 1;
}

.final-cta .section-kicker {
  color: var(--warm-light);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p:last-child {
  max-width: 36rem;
  margin-bottom: 0;
}

.site-footer {
  padding-block: 3rem 7rem;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

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

.brand--footer .brand-copy span {
  color: rgba(255, 255, 255, 0.58);
}

.footer-inner > div:first-child > p {
  max-width: 29rem;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.footer-facts {
  color: var(--sage-strong) !important;
  font-size: 0.82rem !important;
  font-weight: 700;
}

.footer-phone {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.consent-banner {
  position: fixed;
  z-index: 20;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  display: grid;
  gap: 1rem;
  max-width: 34rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-deep);
}

.consent-banner p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.consent-button {
  min-height: 3rem;
  padding: 0.7rem;
  background: var(--whatsapp);
  color: var(--white);
}

.consent-button--secondary {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-main {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
  padding-block: 3rem 5rem;
}

.legal-main h1 {
  margin-bottom: 2rem;
  font-size: clamp(2.2rem, 9vw, 4rem);
}

.legal-main h2 {
  margin-top: 2.5rem;
  font-size: 1.6rem;
}

.legal-main p,
.legal-main li {
  color: var(--ink-muted);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--whatsapp);
  font-weight: 750;
  text-decoration: none;
}

.mobile-cta {
  position: fixed;
  z-index: 50;
  right: 0.75rem;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  width: 4.25rem;
  height: 4.25rem;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(7, 33, 27, 0.25);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.mobile-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 1.5rem));
}

.mobile-cta a {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 3.65rem;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--whatsapp);
  color: var(--white);
  text-decoration: none;
}

.mobile-cta a > svg:first-child {
  width: 2rem;
  min-width: 2rem;
}

@media (hover: hover) {
  .button--whatsapp:hover,
  .button--primary:hover {
    background: var(--whatsapp-hover);
    box-shadow: 0 12px 24px rgba(8, 125, 69, 0.24);
    transform: translateY(-1px);
  }

  .button--light:hover {
    background: var(--warm-light);
    transform: translateY(-1px);
  }

  .button--phone:hover {
    background: var(--ink-deep);
    box-shadow: 0 10px 22px rgba(23, 59, 51, 0.22);
    transform: translateY(-1px);
  }

  .desktop-nav a:hover {
    color: var(--ink-deep);
  }

  .faq-controls button:hover {
    border-color: var(--sage-strong);
    background: var(--sage);
  }
}

@media (min-width: 30rem) {
  .button--large {
    width: auto;
  }

  .hero-action {
    justify-items: start;
  }

  .hero-action p {
    text-align: left;
  }

}

@media (min-width: 48rem) {
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
  }

  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .header-inner {
    min-height: 5rem;
  }

  .brand-mark {
    width: 2.75rem;
    min-width: 2.75rem;
  }

  .brand-copy strong {
    font-size: 1.2rem;
  }

  .button--compact {
    padding-inline: 1.1rem;
  }

  .hero {
    padding-block: 4.5rem 6rem;
  }

  .hero-card {
    border-radius: 2rem;
  }

  .hero-photo {
    aspect-ratio: 16 / 9;
  }

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

  .trust-item + .trust-item {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .trust-item {
    min-height: 6.7rem;
    flex-direction: row;
    gap: 1rem;
    padding: 1.2rem;
    text-align: left;
  }

  .trust-item svg {
    width: 2rem;
    min-width: 2rem;
  }

  .trust-item strong {
    font-size: 1.1rem;
  }

  .trust-item span {
    margin-top: 0.25rem;
    font-size: 0.88rem;
  }

  .service-card {
    min-height: 9rem;
    padding: 1.25rem 0.75rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-icon {
    width: 3.3rem;
    height: 3.3rem;
  }

  .service-icon svg {
    width: 1.8rem;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

  .process-list li {
    display: flex;
    min-height: 11rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.6rem;
  }

  .process-list li + li {
    position: relative;
  }

  .process-list li + li::before {
    display: none;
  }

  .step-number {
    margin-bottom: 1.2rem;
  }

  .faq-shell {
    grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 5rem;
  }

  .final-cta {
    padding-block: 4rem;
  }

  .final-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
    padding: 3.5rem;
  }

  .final-cta .button {
    display: inline-flex;
  }

  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-bottom > span:last-child {
    text-align: right;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 56rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(23rem, 0.94fr);
    align-items: center;
    gap: 4rem;
  }

  .hero-card {
    transform: rotate(1.2deg);
  }

  .hero-card__copy {
    transform: rotate(-1.2deg);
  }

  .hero-photo {
    aspect-ratio: 4 / 5;
  }

}

@media (min-width: 64rem) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-left: auto;
  }

  .desktop-nav a {
    color: var(--ink-muted);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  .header-inner > .button {
    margin-left: 1rem;
  }

}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
