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

:root {
  --navy: #001d37;
  --blue: #02578d;
  --gold: #c8a643;
  --gold-soft: #e9d07c;
  --sand: #d3c9c0;
  --blush: #f5cec9;
  --pine: var(--navy);
  --forest: var(--blue);
  --sage: var(--blue);
  --leaf: var(--gold-soft);
  --mist: #f3f0ec;
  --cream: #faf9f7;
  --paper: #ffffff;
  --ink: #001d37;
  --muted: #5c6b78;
  --line: rgba(0, 29, 55, 0.08);
  --header-h: 4.4rem;
  --shadow: 0 12px 40px rgba(0, 29, 55, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "League Spartan", "Segoe UI", sans-serif;
  --font-body: Montserrat, "Segoe UI", sans-serif;
  --radius: 1.15rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.7rem);
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overscroll-behavior-x: none;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 0.98rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(200, 166, 67, 0.28);
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 36% at 100% 0%, rgba(233, 208, 124, 0.16), transparent 58%),
    radial-gradient(ellipse 40% 30% at 0% 8%, rgba(2, 87, 141, 0.05), transparent 52%);
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

h1 em,
h2 em {
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  letter-spacing: inherit;
  color: var(--blue);
}

p {
  margin: 0 0 1rem;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.wrap {
  width: min(1120px, calc(100% - 7.5vw));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow::before {
  content: "";
  width: 1.35rem;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--paper);
  border: 1px solid var(--navy);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease), background 0.25s ease, box-shadow 0.3s var(--ease);
}

.btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(2, 87, 141, 0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(0, 29, 55, 0.16);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: none;
}

.btn--light {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}

.btn--light:hover {
  background: #fff;
  color: var(--navy);
}

.btn--small {
  min-height: 2.35rem;
  padding: 0.35rem 1.05rem;
  font-size: 0.76rem;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
}

.textlink::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.textlink:hover::after {
  transform: translateX(4px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 6vw;
  background: rgba(250, 249, 247, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand__mark {
  width: auto;
  height: 2.55rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand__word {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}

.header__nav {
  display: none;
  gap: 1.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.header__nav a {
  position: relative;
  color: var(--muted);
  transition: color 0.2s ease;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--pine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.header__nav a:hover {
  color: var(--pine);
}

.header__nav a:hover::after,
.header__nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header__nav a[aria-current="page"] {
  color: var(--pine);
}

.header__right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
}

.burger {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-content: center;
  gap: 6px;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--pine);
  transition: transform 0.3s var(--ease);
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 35;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  padding: 1.6rem 6vw 2.5rem;
  background: var(--pine);
  color: var(--paper);
}

.menu[hidden] {
  display: none;
}

.menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  padding: 0.35rem 0;
}

.menu .btn {
  margin-top: 1.4rem;
  width: fit-content;
  background: var(--paper);
  color: var(--pine);
  border-color: var(--paper);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 2.6rem 0 4.2rem;
  overflow-x: clip;
}

.hero__grid {
  display: grid;
  gap: 2.4rem;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 6.4vw, 4.35rem);
  margin-bottom: 1.2rem;
}

.hero__lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.75rem;
}

.hero__hand {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 28rem;
  padding: 0.4rem 0 0;
}

.hero__fan {
  --spread: 5deg;
  position: relative;
  width: min(28rem, 100%);
  height: 26rem;
  isolation: isolate;
}

.hero__card {
  position: absolute;
  left: 50%;
  top: 0.4rem;
  width: 12.4rem;
  height: 18.2rem;
  margin: 0 0 0 -6.2rem;
  overflow: visible;
  background: none;
  border: 0;
  transform-origin: 50% 128%;
  transform: rotate(calc(var(--i) * var(--spread))) translateY(calc(abs(var(--i)) * 0.18rem));
  transition: transform 0.62s var(--ease);
  z-index: 2;
  cursor: pointer;
}

.hero__card-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.9rem;
  background: #fff;
  border: 3px solid #fff;
  box-shadow:
    0 1px 0 rgba(0, 29, 55, 0.06),
    0 18px 32px rgba(0, 29, 55, 0.16);
  transform-origin: center center;
  transform: rotate(0deg) scale(1);
  backface-visibility: hidden;
  transition:
    transform 0.52s var(--ease),
    filter 0.4s ease,
    opacity 0.38s ease,
    box-shadow 0.52s var(--ease);
}

.hero__card:nth-child(1) { z-index: 1; }
.hero__card:nth-child(2) { z-index: 2; }
.hero__card:nth-child(3) { z-index: 4; }
.hero__card:nth-child(4) { z-index: 5; }
.hero__card:nth-child(5) { z-index: 3; }
.hero__card:nth-child(6) { z-index: 1; }

.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

.hero__card:nth-child(1) img { object-position: center 35%; }
.hero__card:nth-child(2) img { object-position: center 20%; }
.hero__card:nth-child(3) img { object-position: center 28%; }
.hero__card:nth-child(4) img { object-position: center 50%; }
.hero__card:nth-child(5) img { object-position: center 38%; }
.hero__card:nth-child(6) img { object-position: 55% 40%; }

.hero__fan.is-open {
  --spread: 16deg;
}

.hero__fan.is-open .hero__card {
  transform: rotate(calc(var(--i) * var(--spread))) translateY(-0.35rem);
}

@media (min-width: 900px) {
  .hero__fan:is(:hover, :focus-within):not(.is-peeking) {
    --spread: 17deg;
  }

  .hero__fan:is(:hover, :focus-within):not(.is-peeking) .hero__card {
    transform: rotate(calc(var(--i) * var(--spread))) translateY(-0.4rem);
  }

  .hero__fan:not(.is-peeking) .hero__card:is(:hover, :focus-visible) {
    transform: rotate(calc(var(--i) * var(--spread))) translateY(-1.75rem);
  }

  .hero__fan:is(:hover, :focus-within):not(.is-peeking) .hero__card:is(:hover, :focus-visible) {
    transform: rotate(calc(var(--i) * var(--spread))) translateY(-1.75rem);
  }

  .hero__fan:not(.is-peeking) .hero__card:is(:hover, :focus-visible) .hero__card-inner {
    box-shadow:
      0 2px 0 rgba(200, 166, 67, 0.28),
      0 24px 38px rgba(0, 29, 55, 0.22);
  }
}

.hero__fan.is-peeking {
  --spread: 16deg;
}

.hero__fan.is-peeking .hero__card {
  transform: rotate(calc(var(--i) * var(--spread))) translateY(-0.2rem);
}

.hero__fan.is-peeking .hero__card:not(.is-front) .hero__card-inner {
  filter: blur(4px) saturate(0.82);
  opacity: 0.48;
  transform: scale(0.965);
}

.hero__fan.is-peeking .hero__card.is-front,
.hero__card.is-returning {
  z-index: 12;
}

.hero__fan.is-peeking .hero__card.is-front {
  transform: rotate(0deg) translateY(-0.85rem);
}

.hero__fan.is-peeking .hero__card-inner {
  will-change: transform, filter;
}

.hero__card.is-front .hero__card-inner {
  filter: none;
  opacity: 1;
  transform: scale(1.28);
  box-shadow:
    0 2px 0 rgba(200, 166, 67, 0.38),
    0 28px 48px rgba(0, 29, 55, 0.28);
}

@media (max-width: 899px) {
  .hero__card.is-front .hero__card-inner {
    transform: scale(1.2);
  }
}

.approach__tool {
  margin-top: 2rem;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.approach__tool h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.approach__tool p {
  color: var(--muted);
  max-width: 40rem;
}

@media (max-width: 899px) {
  .hero__hand {
    min-height: 24rem;
  }

  .hero__fan {
    --spread: 4deg;
    width: 100%;
    height: 23rem;
  }

  .hero__card {
    width: 10.2rem;
    height: 15.2rem;
    margin-left: -5.1rem;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .about {
    padding-top: 2.6rem;
  }

  .about__text {
    order: -1;
  }
}

.about,
.approach,
.services,
.blog {
  position: relative;
  z-index: 1;
  padding: 5.2rem 0;
}

.about h2,
.approach h2,
.services h2,
.blog h2,
.contact h2,
.focus h2,
.pricing h2 {
  font-size: clamp(1.95rem, 4.2vw, 3.05rem);
  margin-bottom: 1.1rem;
}

.about__grid,
.contact__grid {
  display: grid;
  gap: 2.6rem;
}

.about__text p,
.approach__intro p,
.contact__copy p {
  color: var(--muted);
  max-width: 40rem;
}

.about__portrait {
  display: grid;
  gap: 1.1rem;
}

.portrait {
  position: relative;
  margin: 0;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 0.9rem -0.7rem -0.7rem 0.9rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--blush), var(--gold-soft));
  opacity: 0.85;
  z-index: -1;
}

.portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait figcaption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: grid;
  gap: 0.12rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  color: var(--pine);
}

.portrait figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.portrait figcaption span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chips li,
.tags li {
  padding: 0.48rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.approach__intro {
  display: grid;
  gap: 1.2rem;
  padding-bottom: 0.5rem;
}

.principles {
  display: grid;
  gap: 1rem;
  margin-top: 2.4rem;
}

.principle,
.card,
.post,
.pricing__card {
  padding: 1.65rem 1.55rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}

.principle:hover,
.card:hover,
.post:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 166, 67, 0.45);
  box-shadow: 0 16px 36px rgba(0, 29, 55, 0.08);
}

.principle span,
.card__meta,
.post__date {
  display: block;
  margin-bottom: 1.35rem;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.principle h3,
.card h3,
.post h3 {
  margin-bottom: 0.7rem;
  font-size: 1.38rem;
}

.principle p,
.card p,
.post p {
  color: var(--muted);
}

.focus {
  position: relative;
  z-index: 2;
  margin-top: -3.4rem;
  padding: 0 0 5.2rem;
}

.focus__inner {
  padding: 2.2rem 1.7rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 208, 124, 0.48), transparent 40%),
    linear-gradient(160deg, #0368a8, #001d37);
  color: var(--paper);
}

.focus .eyebrow {
  color: var(--leaf);
}

.focus .eyebrow::before {
  background: var(--gold);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.tags li {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(250, 247, 241, 0.16);
  color: var(--paper);
  transition: background 0.25s ease, transform 0.25s ease;
}

.tags li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.section-head {
  margin-bottom: 2.1rem;
}

.blog-more {
  margin: 1.6rem 0 0;
}

.cards,
.posts {
  display: grid;
  gap: 1.1rem;
}

a.post {
  color: inherit;
}

.card {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.card:hover {
  transform: none;
  border-color: rgba(200, 166, 67, 0.38);
  box-shadow: 0 14px 34px rgba(0, 29, 55, 0.07);
}

.card__photo {
  position: relative;
  margin: 0;
  height: 19rem;
  overflow: hidden;
  background: var(--sand);
}

.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}

.card:hover .card__photo img {
  transform: scale(1.06);
}

.card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.45rem 1.4rem 1.6rem;
}

.card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.4rem;
}

.card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 40em;
}

.card p + p {
  margin-top: 0.7rem;
}

.card--accent {
  background: #fbf8f2;
}

.card--accent .card__body {
  background: none;
}

.card .card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.5rem;
  padding: 0;
  background: none;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.card .card__meta::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: var(--gold);
}

.card:nth-child(1) .card__photo img {
  object-position: center 14%;
}

.card:nth-child(2) .card__photo img {
  object-position: center 40%;
}

.card:nth-child(3) .card__photo img {
  object-position: 32% 48%;
}

.pricing {
  position: relative;
  z-index: 1;
  padding: 0 0 5.8rem;
}

.pricing__card {
  padding: 2.1rem 1.7rem;
}

.pricing__card:hover {
  transform: none;
}

.price-list {
  margin: 1.7rem 0 1.3rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
}

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

.price-list span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
}

.price-list em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.pricing__note {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-head {
  position: relative;
  z-index: 1;
  padding: 3.2rem 0 1.2rem;
}

.page-head h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 1.1rem;
}

.page-head p {
  max-width: 36rem;
  color: var(--muted);
}

.articles {
  position: relative;
  z-index: 1;
  padding: 1rem 0 5.5rem;
}

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

.blog-nav ol {
  display: grid;
  gap: 0.55rem;
}

.blog-nav a {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.blog-nav a span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.blog-nav a:hover,
.blog-nav a.is-active {
  background: var(--paper);
  border-color: rgba(0, 29, 55, 0.18);
  color: var(--pine);
}

.article {
  max-width: 42rem;
  padding: 2.6rem 0 3rem;
  border-top: 1px solid var(--line);
}

.article h2 {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  margin-bottom: 1.4rem;
}

.article__body {
  color: var(--muted);
}

.article__body p {
  margin-bottom: 1.15rem;
}

.blog-status,
.blog-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-status.is-error {
  color: #8a3b2f;
}

.blog-empty a {
  color: var(--forest);
  font-weight: 600;
  border-bottom: 1px solid rgba(31, 74, 58, 0.3);
}

.article__body a {
  color: var(--forest);
  border-bottom: 1px solid rgba(31, 74, 58, 0.3);
}

.article__body ul,
.article__body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.article__body li {
  margin-bottom: 0.35rem;
}

.article__pager {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.article__pager a {
  display: grid;
  gap: 0.25rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--line);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.article__pager span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.article__pager a:hover {
  color: var(--forest);
}

.approach {
  background: rgba(211, 201, 192, 0.22);
  padding-bottom: 7.2rem;
}

.contact {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(233, 208, 124, 0.3), transparent 34%),
    linear-gradient(180deg, #02578d, #001d37);
  color: var(--paper);
}

.contact .eyebrow {
  color: var(--leaf);
}

.contact h2 {
  color: var(--paper);
}

.contact__copy p {
  color: rgba(251, 248, 243, 0.72);
}

.contact a:not(.btn) {
  color: var(--leaf);
  font-weight: 600;
  border-bottom: 1px solid rgba(233, 208, 124, 0.4);
}

.contact__meta {
  display: grid;
  gap: 0.2rem;
  margin-top: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form__field {
  display: grid;
  gap: 0.45rem;
}

.contact-form__field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font: inherit;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(251, 248, 243, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(233, 208, 124, 0.65);
  background: rgba(250, 247, 241, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__status {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-form__status--pending {
  color: rgba(251, 248, 243, 0.72);
}

.contact-form__status--success {
  color: var(--leaf);
}

.contact-form__status--error {
  color: #f0b4a8;
}

.contact__meta div {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(250, 247, 241, 0.1);
}

.contact__meta dt {
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--leaf);
}

.contact__meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 3.2rem 0 0;
  border-top: 1px solid rgba(250, 247, 241, 0.1);
  background: #00111f;
  color: rgba(251, 248, 243, 0.55);
  font-size: 0.88rem;
}

.footer__main {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
}

.footer__brand p {
  max-width: 22rem;
  margin: 0.9rem 0 0;
  line-height: 1.7;
}

.footer__heading {
  margin: 0 0 0.85rem;
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-top: 1.05rem;
  border: 1px solid rgba(250, 247, 241, 0.16);
  border-radius: 999px;
  color: var(--paper);
}

.footer__social:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.footer__nav ul,
.footer__contact ul {
  display: grid;
  gap: 0.55rem;
}

.footer__nav a,
.footer__contact a {
  color: rgba(251, 248, 243, 0.72);
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--gold-soft);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.45;
}

.footer__contact svg {
  flex: none;
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  color: var(--gold);
}

.footer__bar {
  display: grid;
  gap: 0.35rem;
  padding: 1.05rem 0 1.25rem;
  border-top: 1px solid rgba(250, 247, 241, 0.1);
  color: rgba(251, 248, 243, 0.42);
  font-size: 0.78rem;
}

.footer__bar p {
  margin: 0;
}

.footer .brand__word {
  color: var(--paper);
}

.footer .brand__mark {
  height: 2.1rem;
  width: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  animation: rise 0.9s var(--ease) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 900px) {
  .header {
    grid-template-columns: auto 1fr auto;
    padding: 0 4.5vw;
  }

  .header__nav {
    display: flex;
    justify-self: center;
  }

  .burger {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
    padding-bottom: 4.4rem;
  }

  .hero__grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 2.4rem;
  }

  .hero__hand {
    min-height: 32rem;
  }

  .hero__fan {
    width: 30rem;
    height: 30rem;
  }

  .hero__card {
    width: 14rem;
    height: 20.6rem;
    margin-left: -7rem;
  }

  .about__grid {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
    gap: 4.5rem;
  }

  .about__portrait {
    position: sticky;
    top: calc(var(--header-h) + 1.4rem);
  }

  .approach__tool {
    margin-top: 2.4rem;
    padding: 2rem 2.2rem;
  }

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

  .cards {
    gap: 1.7rem;
  }

  .card {
    grid-template-columns: 22rem 1fr;
    min-height: 22.5rem;
  }

  .card:nth-child(even) {
    grid-template-columns: 1fr 22rem;
  }

  .card:nth-child(even) .card__photo {
    grid-column: 2;
    grid-row: 1;
  }

  .card:nth-child(even) .card__body {
    grid-column: 1;
    grid-row: 1;
  }

  .card__photo {
    height: auto;
    min-height: 22.5rem;
  }

  .card__body {
    padding: 2.2rem 2.55rem;
  }

  .card:nth-child(odd) .card__body {
    padding-left: 2.35rem;
  }

  .card:nth-child(even) .card__body {
    padding-right: 2.35rem;
  }

  .card h3 {
    font-size: 1.58rem;
    margin-bottom: 0.8rem;
  }

  .card__photo {
    box-shadow: inset -1px 0 0 rgba(0, 29, 55, 0.05);
  }

  .card:nth-child(even) .card__photo {
    box-shadow: inset 1px 0 0 rgba(0, 29, 55, 0.05);
  }

  .posts,
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .articles__grid {
    grid-template-columns: 15.5rem 1fr;
    align-items: start;
    gap: 4.5rem;
  }

  .blog-nav {
    position: sticky;
    top: calc(var(--header-h) + 1.4rem);
  }

  .article {
    max-width: none;
  }

  .focus__inner,
  .pricing__card {
    padding: 2.6rem 2.8rem;
  }

  .pricing__card {
    max-width: 44rem;
    margin-inline: auto;
  }

  .footer {
    padding-top: 3.8rem;
  }

  .footer__main {
    grid-template-columns: 1.35fr 0.85fr 1.1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2.8rem;
  }

  .footer__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
}

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

  .hero__card,
  .hero__card-inner {
    transition: none;
  }

  .card__photo img,
  .card:hover .card__photo img {
    transform: none;
  }

  .reveal,
  .reveal.is-visible,
  .principle,
  .card,
  .post,
  .btn,
  .tags li {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
