:root {
  --nocturne: #10283a;
  --nocturne-deep: #0a1d2a;
  --ivory: #f4efe6;
  --ivory-soft: #faf7f1;
  --paper: #fffdf8;
  --dawn: #d39a62;
  --dawn-light: #e9c8a5;
  --industrial: #9b4f33;
  --patrimony: #1f6575;
  --retirement: #5b7048;
  --graphite: #273138;
  --graphite-soft: #5e6970;
  --line: rgba(16, 40, 58, 0.15);
  --line-light: rgba(244, 239, 230, 0.18);
  --shadow-soft: 0 28px 90px rgba(16, 40, 58, 0.09);
  --font-display: "Newsreader", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
  --container: min(1240px, calc(100% - 56px));
  --section-space: clamp(124px, 14vw, 188px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  overflow-wrap: break-word;
  background: var(--ivory-soft);
  color: var(--graphite);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
section,
article,
div {
  min-width: 0;
}

body::selection {
  background: var(--dawn-light);
  color: var(--nocturne);
}

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

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

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

a:focus-visible {
  outline: 3px solid var(--dawn);
  outline-offset: 5px;
}

h1,
h2,
h3,
p,
dl,
dd,
ul,
ol {
  margin-top: 0;
}

ul,
ol {
  padding-left: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 14px;
  left: 14px;
  padding: 12px 17px;
  transform: translateY(-180%);
  background: var(--nocturne);
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--patrimony);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--dawn-light);
}

.section-index {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--graphite-soft);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-index span:first-child {
  color: var(--dawn);
}

.section-index-light {
  color: rgba(244, 239, 230, 0.5);
}

.section-index-light span:first-child {
  color: var(--dawn-light);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(16, 40, 58, 0.09);
  background: rgba(250, 247, 241, 0.91);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1380px, calc(100% - 56px));
  min-height: 106px;
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 5.4vw, 82px);
}

.brand {
  width: fit-content;
  display: inline-flex;
}

.brand-lockup {
  position: relative;
  display: block;
}

.brand-lockup img {
  width: 100%;
  height: auto;
}

.brand-tagline {
  position: absolute;
  left: 2.25%;
  bottom: 0;
  color: var(--nocturne);
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1;
  white-space: nowrap;
}

.brand-lockup-header {
  width: clamp(320px, 27vw, 390px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(30px, 3.9vw, 60px);
}

.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 30px 0;
  color: var(--nocturne);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--dawn);
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(92px, 10.5vw, 148px);
  background:
    radial-gradient(circle at 88% 13%, rgba(211, 154, 98, 0.13), transparent 31%),
    var(--ivory-soft);
}

.hero::before {
  content: "";
  position: absolute;
  top: -330px;
  right: -220px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(211, 154, 98, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(390px, 0.72fr);
  align-items: stretch;
  gap: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(88px, 11vw, 146px);
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 34px;
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: clamp(4.9rem, 8.25vw, 7.35rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 em {
  color: var(--dawn);
  font-weight: 400;
}

.hero-intro {
  max-width: 670px;
  margin-bottom: 22px;
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.15vw, 2.05rem);
  line-height: 1.32;
}

.hero-intro strong {
  color: var(--patrimony);
  font-weight: 500;
}

.hero-support {
  max-width: 610px;
  margin-bottom: 42px;
  color: var(--graphite-soft);
  font-size: 0.97rem;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--nocturne);
  color: var(--ivory);
}

.button-primary:hover {
  background: var(--patrimony);
  transform: translateY(-2px);
}

.button svg,
.phone-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--nocturne);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--dawn);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.name-origin {
  position: relative;
  min-height: 100%;
  align-self: stretch;
  padding: clamp(44px, 5vw, 66px);
  border-top: 3px solid var(--dawn);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.origin-kicker {
  margin-bottom: 44px;
  color: var(--dawn);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.name-origin h2 {
  margin-bottom: 10px;
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.3vw, 4.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.origin-terms {
  margin-bottom: 42px;
}

.origin-terms > div {
  display: grid;
  grid-template-columns: minmax(100px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: 25px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.origin-terms > div:last-child {
  border-bottom: 1px solid var(--line);
}

.origin-terms dt {
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.origin-terms dd {
  margin-left: 0;
  color: var(--graphite-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.origin-conclusion {
  margin-bottom: 0;
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.45;
}

.hero-foot {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--graphite-soft);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-foot > p {
  margin-bottom: 0;
}

.hero-foot ul {
  display: flex;
  align-items: center;
  gap: 27px;
  margin: 0;
  list-style: none;
}

.hero-foot li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-industrial {
  background: var(--industrial);
}

.dot-patrimony {
  background: var(--patrimony);
}

.dot-retirement {
  background: var(--retirement);
}

/* Manifesto */

.manifesto {
  padding-block: var(--section-space);
  background: var(--nocturne-deep);
  color: var(--ivory);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(54px, 8vw, 112px);
}

.manifesto-content h2 {
  max-width: 940px;
  margin-bottom: 64px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.3vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.manifesto-content h2 em {
  color: var(--dawn-light);
  font-weight: 400;
}

.manifesto-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(44px, 7vw, 92px);
  margin-bottom: 70px;
}

.manifesto-columns p {
  margin-bottom: 0;
  color: rgba(244, 239, 230, 0.72);
  font-size: 0.96rem;
  line-height: 1.92;
}

.manifesto-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.manifesto-contrast p {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  padding: 31px 34px;
  border-top: 1px solid var(--dawn);
  background: rgba(244, 239, 230, 0.045);
  color: rgba(244, 239, 230, 0.58);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.55;
}

.manifesto-contrast strong {
  color: var(--ivory);
  font-weight: 400;
}

/* Shared headings */

.section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.14fr) minmax(250px, 0.65fr);
  align-items: end;
  gap: clamp(42px, 6.5vw, 90px);
  margin-bottom: clamp(78px, 9vw, 118px);
}

.heading-copy .eyebrow {
  margin-bottom: 18px;
}

.heading-copy h2 {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.85rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.99;
}

.heading-aside {
  margin-bottom: 0;
  color: var(--graphite-soft);
  font-size: 0.91rem;
  line-height: 1.84;
}

/* Specialties */

.ecosystem {
  background: var(--ivory);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-rows: auto 174px 1fr auto;
  gap: 0;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.11);
  background: var(--nocturne);
  color: var(--ivory);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--service-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(16, 40, 58, 0.16);
}

.service-industrial {
  --service-color: var(--industrial);
}

.service-patrimony {
  --service-color: var(--patrimony);
}

.service-retirement {
  --service-color: var(--retirement);
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(244, 239, 230, 0.58);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card-head span:first-child {
  color: var(--service-color);
}

.service-brand {
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: 30px 22px;
  overflow: visible;
}

.service-brand img {
  width: min(100%, 305px);
  max-height: 122px;
  object-fit: contain;
  object-position: left center;
}

.service-brand-wide img {
  width: min(100%, 330px);
  max-height: 82px;
}

.service-content {
  display: grid;
  grid-template-rows: minmax(108px, auto) minmax(118px, auto) 1fr;
}

.service-content h3 {
  align-self: start;
  margin-bottom: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.65vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.service-content > p {
  margin-bottom: 0;
  color: rgba(244, 239, 230, 0.67);
  font-size: 0.87rem;
  line-height: 1.78;
}

.service-content ul {
  align-self: end;
  margin: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.service-content li {
  position: relative;
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(244, 239, 230, 0.82);
  font-size: 0.75rem;
  line-height: 1.5;
}

.service-content li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--service-color);
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  color: var(--ivory);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.service-card > a span {
  color: var(--service-color);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.service-card > a:hover span {
  transform: translate(4px, -4px);
}

/* Method */

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

.method-list {
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-list > li {
  display: grid;
  grid-template-columns: 82px minmax(300px, 0.85fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.method-number {
  color: var(--dawn);
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.method-label {
  margin-bottom: 7px;
  color: var(--patrimony);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.method-list h3 {
  margin-bottom: 0;
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.method-list > li > p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--graphite-soft);
  font-size: 0.91rem;
  line-height: 1.8;
}

.method-closing {
  margin: 60px 0 0;
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
  line-height: 1.2;
  text-align: right;
}

/* Principles */

.principles {
  background: var(--ivory-soft);
}

.principles-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(72px, 10vw, 142px);
}

.principles-visual {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
}

.principles-ring,
.principles-orbit {
  position: absolute;
  border-radius: 50%;
}

.principles-ring {
  inset: 4%;
  border: 1px solid rgba(16, 40, 58, 0.17);
}

.principles-ring::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(16, 40, 58, 0.14);
  border-radius: 50%;
}

.orbit-one {
  width: 78%;
  height: 40%;
  transform: rotate(25deg);
  border: 1px solid rgba(31, 101, 117, 0.38);
}

.orbit-two {
  width: 39%;
  height: 78%;
  transform: rotate(25deg);
  border: 1px solid rgba(91, 112, 72, 0.35);
}

.principles-visual::after {
  content: "";
  position: absolute;
  width: 53%;
  height: 53%;
  transform: rotate(25deg);
  border: 1px solid rgba(211, 154, 98, 0.4);
  border-radius: 50%;
}

.principles-core {
  position: relative;
  z-index: 3;
  width: 138px;
  height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nocturne);
  border-radius: 50%;
  background: var(--ivory-soft);
}

.principles-core img {
  width: 104px;
  height: auto;
  margin: -7px 0 -4px;
}

.principles-core small {
  color: var(--dawn);
  font-size: 0.49rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.orbit-label {
  position: absolute;
  z-index: 4;
  margin: 0;
  padding: 3px 8px;
  background: var(--ivory-soft);
  color: var(--nocturne);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.label-one {
  top: 20%;
  left: 16%;
}

.label-two {
  top: 49%;
  right: 6%;
}

.label-three {
  bottom: 17%;
  left: 26%;
}

.principles-copy .section-index {
  margin-bottom: 64px;
}

.principles-copy > h2 {
  max-width: 650px;
  margin-bottom: 62px;
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.principle-list {
  border-top: 1px solid var(--line);
}

.principle-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list article > span {
  color: var(--dawn);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.principle-list h3 {
  margin-bottom: 8px;
  color: var(--nocturne);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.18;
}

.principle-list p {
  margin-bottom: 0;
  color: var(--graphite-soft);
  font-size: 0.84rem;
  line-height: 1.68;
}

/* Contact */

.contact {
  padding: clamp(74px, 9vw, 118px) 0 0;
  background: var(--ivory);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(64px, 9vw, 128px);
  padding: clamp(68px, 8vw, 108px);
  background: var(--nocturne);
  color: var(--ivory);
}

.contact-intro h2 {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(4rem, 6.4vw, 6.15rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.contact-intro > p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(244, 239, 230, 0.66);
  font-size: 0.94rem;
  line-height: 1.84;
}

.contact-label {
  margin-bottom: 16px;
  color: var(--dawn-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phone-link,
.email-pending {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
}

.email-pending {
  border-bottom: 1px solid var(--line-light);
}

.phone-link > span,
.email-pending > span:first-child {
  display: flex;
  flex-direction: column;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.15;
}

.phone-link small,
.email-pending small {
  margin-bottom: 7px;
  color: rgba(244, 239, 230, 0.45);
  font-family: var(--font-sans);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.phone-link svg {
  flex: 0 0 auto;
  color: var(--dawn);
  transition: transform 180ms ease;
}

.phone-link:hover svg {
  transform: translate(3px, -3px);
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 1px solid var(--dawn);
  border-radius: 50%;
}

.contact-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding-top: 42px;
  border-top: 1px solid var(--line-light);
}

.contact-footer > p {
  margin-bottom: 0;
  color: rgba(244, 239, 230, 0.47);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.social-links a {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid var(--line-light);
  color: var(--ivory);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--dawn);
  color: var(--dawn-light);
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.social-links a:first-child svg,
.social-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
}

.social-links .social-dot {
  fill: currentColor;
  stroke: none;
}

/* Footer */

.site-footer {
  padding: 84px 0 42px;
  background: var(--nocturne-deep);
  color: var(--ivory);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 46px 52px;
  padding-bottom: 64px;
}

.footer-brand {
  max-width: 400px;
}

.brand-lockup-footer {
  width: min(100%, 400px);
}

.brand-lockup-footer .brand-tagline {
  color: var(--ivory);
  font-size: clamp(0.82rem, 0.95vw, 0.98rem);
}

.footer-statement {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 0;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-align: left;
  white-space: nowrap;
}

.footer-statement em {
  color: var(--dawn-light);
  font-weight: 400;
}

.back-to-top {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  color: rgba(244, 239, 230, 0.64);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-to-top span {
  margin-left: 8px;
  color: var(--dawn);
}

.footer-legal {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(44px, 7vw, 96px);
  padding-top: 31px;
  border-top: 1px solid var(--line-light);
  color: rgba(244, 239, 230, 0.46);
  font-size: 0.63rem;
  line-height: 1.75;
}

.footer-legal p {
  margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 40px, 1040px);
  }

  .header-inner {
    width: calc(100% - 40px);
    grid-template-columns: minmax(285px, 335px) minmax(0, 1fr);
    gap: 32px;
  }

  .brand-lockup-header {
    width: 335px;
  }

  .main-nav {
    gap: 24px;
  }

  .main-nav a {
    font-size: 0.81rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.7fr);
    gap: 58px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 7.9vw, 6.3rem);
  }

  .section-heading,
  .manifesto-grid {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .section-heading .heading-aside {
    grid-column: 2;
    max-width: 720px;
  }

  .service-card {
    min-height: 735px;
    padding-inline: 25px;
  }

  .service-brand img {
    max-width: 270px;
  }

  .service-content {
    grid-template-rows: minmax(114px, auto) minmax(124px, auto) 1fr;
  }

  .principles-grid {
    grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
    gap: 72px;
  }

  .contact-shell {
    gap: 70px;
    padding-inline: 62px;
  }
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .name-origin {
    width: min(100%, 720px);
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 158px;
  }

  .header-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px 0 12px;
  }

  .brand-lockup-header {
    width: 330px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 31px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    min-height: 40px;
    padding: 5px 0 9px;
    font-size: 0.84rem;
  }

  .main-nav a::after {
    bottom: 2px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .name-origin {
    width: min(100%, 680px);
  }

  .manifesto-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading .heading-aside {
    grid-column: 1;
  }

  .manifesto-content h2 {
    margin-bottom: 54px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-card {
    min-height: auto;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    grid-template-rows: auto auto 1fr;
    column-gap: 48px;
    padding: 38px;
  }

  .service-card-head {
    grid-column: 1 / -1;
  }

  .service-brand {
    grid-column: 1;
    grid-row: 2 / 4;
    height: 100%;
    min-height: 270px;
    align-items: flex-start;
    padding-top: 50px;
  }

  .service-brand img,
  .service-brand-wide img {
    width: 100%;
    max-height: 170px;
  }

  .service-content {
    grid-column: 2;
    grid-row: 2;
    grid-template-rows: auto auto auto;
    padding-top: 42px;
  }

  .service-content h3,
  .service-content > p {
    min-height: 0;
    margin-bottom: 25px;
  }

  .service-card > a {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
  }

  .method-list > li {
    grid-template-columns: 64px minmax(240px, 0.82fr) minmax(0, 1fr);
    gap: 28px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 86px;
  }

  .principles-visual {
    width: min(100%, 520px);
  }

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

  .contact-options {
    max-width: 640px;
  }

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

  .footer-statement {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 24px;
    text-align: left;
  }
}

@media (max-width: 780px) and (min-width: 641px) {
  .method-list > li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px 28px;
  }

  .method-list > li > p {
    grid-column: 2;
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
    --section-space: 98px;
  }

  html {
    scroll-padding-top: 150px;
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    width: calc(100% - 28px);
    padding-top: 13px;
  }

  .brand-lockup-header {
    width: min(285px, 100%);
  }

  .brand-lockup-header .brand-tagline {
    font-size: 0.82rem;
  }

  .main-nav {
    gap: 27px;
  }

  .main-nav a {
    font-size: 0.81rem;
  }

  .hero {
    padding-top: 70px;
  }

  .hero::before {
    top: -240px;
    right: -300px;
    width: 560px;
    height: 560px;
  }

  .hero-grid {
    gap: 56px;
    padding-bottom: 72px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3.65rem, 18vw, 5rem);
  }

  .hero-intro {
    font-size: 1.35rem;
  }

  .hero-support {
    margin-bottom: 34px;
    font-size: 0.91rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    justify-content: space-between;
  }

  .name-origin {
    padding: 38px 28px;
  }

  .name-origin h2 {
    margin-bottom: 9px;
    font-size: 3.2rem;
  }

  .origin-kicker {
    margin-bottom: 34px;
  }

  .origin-terms > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
  }

  .origin-conclusion {
    font-size: 1.15rem;
  }

  .hero-foot {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding-block: 24px;
  }

  .hero-foot ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .manifesto-grid {
    gap: 34px;
  }

  .manifesto-content h2 {
    margin-bottom: 42px;
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .manifesto-columns,
  .manifesto-contrast {
    grid-template-columns: 1fr;
  }

  .manifesto-columns {
    gap: 27px;
    margin-bottom: 48px;
  }

  .manifesto-contrast p {
    min-height: 142px;
    padding: 27px 25px;
    font-size: 1.16rem;
  }

  .section-heading {
    gap: 32px;
    margin-bottom: 66px;
  }

  .heading-copy h2 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .service-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding: 29px 25px;
  }

  .service-brand,
  .service-content,
  .service-card > a {
    grid-column: 1;
    grid-row: auto;
  }

  .service-brand {
    min-height: 190px;
    align-items: center;
    padding: 36px 0 24px;
  }

  .service-brand img,
  .service-brand-wide img {
    width: min(100%, 300px);
    max-height: 138px;
  }

  .service-content {
    padding-top: 12px;
  }

  .service-content h3 {
    font-size: 2.3rem;
  }

  .service-card > a {
    margin-top: 31px;
  }

  .method-list > li {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 34px 0;
  }

  .method-list > li > p {
    margin-top: 7px;
  }

  .method-closing {
    margin-top: 46px;
    font-size: 2rem;
    text-align: left;
  }

  .principles-grid {
    gap: 64px;
  }

  .principles-core {
    width: 104px;
    height: 104px;
  }

  .principles-core img {
    width: 78px;
  }

  .principles-core small {
    font-size: 0.42rem;
  }

  .orbit-label {
    font-size: 0.47rem;
  }

  .principles-copy .section-index {
    margin-bottom: 40px;
  }

  .principles-copy > h2 {
    margin-bottom: 46px;
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .principle-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
  }

  .contact {
    padding-top: 48px;
  }

  .contact-shell {
    gap: 52px;
    padding: 55px 24px 34px;
  }

  .contact-intro h2 {
    font-size: clamp(3.35rem, 15vw, 4.35rem);
  }

  .phone-link,
  .email-pending {
    min-height: 90px;
  }

  .phone-link > span,
  .email-pending > span:first-child {
    font-size: 1.34rem;
  }

  .contact-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .social-links a {
    justify-content: flex-start;
  }

  .site-footer {
    padding-top: 66px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 40px;
    padding-bottom: 48px;
  }

  .footer-statement,
  .footer-brand,
  .back-to-top {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-statement {
    font-size: clamp(0.75rem, 3.75vw, 1.75rem);
    letter-spacing: -0.05em;
    white-space: nowrap;
  }

  .brand-lockup-footer {
    width: min(100%, 325px);
  }

  .brand-lockup-footer .brand-tagline {
    font-size: 0.8rem;
  }

  .back-to-top {
    justify-self: start;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 20px;
    font-size: 0.72rem;
  }

  .eyebrow,
  .origin-kicker,
  .section-index {
    font-size: 0.72rem;
  }

  .method-label,
  .phone-link small,
  .email-pending small,
  .social-links a {
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(3.05rem, 15.2vw, 4rem);
  }

  .name-origin {
    padding-inline: 22px;
  }

  .name-origin h2 {
    font-size: clamp(2.58rem, 13vw, 3.15rem);
  }

  .phone-link > span,
  .email-pending > span:first-child {
    font-size: 1.18rem;
  }

  .brand-lockup-footer {
    width: min(100%, 300px);
  }
}

/* Desktop and laptop framing */

@media (min-width: 921px) {
  .hero h1 {
    overflow-wrap: normal;
    font-size: clamp(4.9rem, 7.25vw, 6.5rem);
    hyphens: none;
    word-break: normal;
  }

  .footer-statement {
    width: 100%;
    justify-self: center;
    text-align: center;
  }
}

@media (min-width: 1041px) {
  .name-origin h2 {
    overflow-wrap: normal;
    font-size: clamp(2.9rem, 3.65vw, 3.25rem);
    hyphens: none;
    white-space: nowrap;
    word-break: normal;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  html {
    scroll-padding-top: 24px;
  }

  .site-header {
    position: relative;
  }
}

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

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

@media print {
  .site-header,
  .hero-actions,
  .contact,
  .back-to-top {
    display: none;
  }

  body {
    background: #ffffff;
    color: var(--nocturne);
  }

  .manifesto,
  .service-card,
  .site-footer {
    background: #ffffff;
    color: var(--nocturne);
  }
}
