:root {
  --ink: #0a1622;
  --ink-2: #122537;
  --ink-3: #1c3449;
  --paper: #f5f0e8;
  --paper-2: #fbf8f2;
  --white: #fffdf9;
  --copper: #b8794c;
  --copper-light: #d5a37c;
  --sage: #71867c;
  --muted: #64717c;
  --line: rgba(10, 22, 34, 0.14);
  --line-light: rgba(255, 253, 249, 0.16);
  --shadow: 0 24px 70px rgba(10, 22, 34, 0.12);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-2);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--copper);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading {
  max-width: 770px;
  margin-bottom: 54px;
}

.section-heading h2,
.editorial-copy h2,
.contact-intro h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.section-heading p,
.editorial-copy > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.header-solid {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(251, 248, 242, 0.94);
  box-shadow: 0 8px 30px rgba(10, 22, 34, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 255px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-name {
  display: grid;
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: 0.015em;
  line-height: 1.02;
}

.brand-name small {
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.desktop-nav > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-link {
  opacity: 0.72;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 49px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1;
  text-decoration: none;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, color 170ms ease;
}

.header-cta {
  color: var(--ink) !important;
  background: var(--white);
}

.scrolled .header-cta,
.header-solid .header-cta {
  color: var(--white) !important;
  background: var(--ink);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button svg,
.header-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 170ms ease;
}

.button:hover svg,
.header-cta:hover svg {
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  border: 0;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 100px 24px 40px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-open .mobile-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-panel nav {
  display: grid;
  gap: 4px;
}

.mobile-panel nav a {
  padding: 14px 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 11vw, 3.4rem);
  line-height: 1.1;
  text-decoration: none;
}

.mobile-meta {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: 860px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7, 16, 25, 0.96) 0%, rgba(7, 16, 25, 0.91) 34%, rgba(7, 16, 25, 0.42) 68%, rgba(7, 16, 25, 0.16) 100%), url("/assets/hero-iig.webp");
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.hero-content {
  display: grid;
  align-content: center;
  min-height: 860px;
  padding-top: 120px;
  padding-bottom: 150px;
}

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

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

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7.2vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

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

.hero-lede {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line-light);
  background: rgba(7, 16, 25, 0.66);
  backdrop-filter: blur(13px);
}

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

.proof-item {
  min-height: 112px;
  padding: 27px 26px;
  border-right: 1px solid var(--line-light);
}

.proof-item:first-child {
  border-left: 1px solid var(--line-light);
}

.proof-number {
  display: block;
  margin-bottom: 3px;
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 1;
}

.proof-item span:last-child {
  color: rgba(255, 253, 249, 0.7);
  font-size: 0.73rem;
  letter-spacing: 0.045em;
  line-height: 1.4;
}

.intro {
  padding: 150px 0 136px;
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: start;
}

.intro-title {
  position: relative;
}

.intro-title::after {
  position: absolute;
  top: -150px;
  left: -55vw;
  width: 65vw;
  height: 560px;
  border: 1px solid rgba(184, 121, 76, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.intro-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.intro-copy {
  padding-top: 40px;
}

.intro-copy > p:first-child {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.12rem);
  line-height: 1.35;
}

.intro-copy > p {
  max-width: 680px;
  color: var(--muted);
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
}

.principle-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 650;
}

.principle-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--copper);
}

.services {
  padding: 136px 0 148px;
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 356px;
  padding: 34px 34px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.25);
  overflow: hidden;
  transition: color 240ms ease, background 240ms ease;
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(184, 121, 76, 0.28);
  border-radius: 50%;
  content: "";
  transform: scale(0.7);
  transition: transform 300ms ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--ink-2);
}

.service-card:hover::after {
  transform: scale(1);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--copper);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.service-card h3 {
  max-width: 270px;
  margin: 68px 0 14px;
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.62;
  transition: color 240ms ease;
}

.service-card:hover p {
  color: rgba(255, 253, 249, 0.7);
}

.moments {
  padding: 148px 0;
}

.moments-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 110px;
}

.moments-nav {
  position: sticky;
  top: 130px;
  align-self: start;
}

.moments-nav h2 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

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

.moment-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 30px;
  padding: 45px 0;
  border-top: 1px solid var(--line);
}

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

.moment-index {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.moment-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.1;
}

.moment-card p {
  margin: 0;
  color: var(--muted);
}

.moment-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.moment-card li {
  position: relative;
  padding-left: 17px;
  font-size: 0.85rem;
  font-weight: 650;
}

.moment-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.process {
  position: relative;
  padding: 148px 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.process::after {
  position: absolute;
  top: 50%;
  right: -310px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(213, 163, 124, 0.2);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.process .section-heading p {
  color: rgba(255, 253, 249, 0.64);
}

.process-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.process-step {
  min-height: 330px;
  padding: 33px 32px;
  border-right: 1px solid var(--line-light);
}

.process-step:first-child {
  border-left: 1px solid var(--line-light);
}

.step-number {
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.process-step h3 {
  margin: 98px 0 14px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
}

.process-step p {
  margin: 0;
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.88rem;
}

.network {
  padding: 148px 0;
  background: var(--paper);
}

.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 90px;
  align-items: center;
}

.network-visual {
  position: relative;
  min-height: 570px;
  background: var(--ink-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.network-visual::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0);
  background-size: 32px 32px;
  content: "";
  opacity: 0.32;
}

.network-map {
  position: absolute;
  inset: 10% 8%;
  width: 84%;
  height: 80%;
}

.network-map .land {
  fill: rgba(255, 253, 249, 0.1);
  stroke: rgba(255, 253, 249, 0.16);
  stroke-width: 1;
}

.network-map .route {
  fill: none;
  stroke: var(--copper-light);
  stroke-dasharray: 5 8;
  stroke-width: 1.5;
}

.network-map .node {
  fill: var(--copper-light);
}

.network-caption {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  color: rgba(255, 253, 249, 0.66);
  border-top: 1px solid var(--line-light);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.network-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.network-copy > p {
  color: var(--muted);
}

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

.network-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 680;
}

.network-list span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.about {
  padding: 148px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 105px;
  align-items: start;
}

.about-panel {
  position: sticky;
  top: 120px;
  padding: 48px;
  color: var(--white);
  background: var(--ink-2);
}

.about-monogram {
  width: 92px;
  height: 92px;
  margin-bottom: 94px;
}

.about-panel q {
  display: block;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.23;
}

.about-panel q::before,
.about-panel q::after {
  color: var(--copper-light);
}

.about-panel p {
  margin: 34px 0 0;
  color: rgba(255, 253, 249, 0.58);
  font-size: 0.8rem;
}

.editorial-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 34px;
  margin-top: 60px;
}

.standard {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.standard h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.standard p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq {
  padding: 140px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}

.faq-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr 26px;
  gap: 24px;
  width: 100%;
  padding: 27px 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.28;
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 3px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 10px;
  right: 1px;
  width: 20px;
  height: 1px;
  background: var(--copper);
  content: "";
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 650px;
  margin: 0;
  padding: 0 40px 30px 0;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.contact {
  position: relative;
  padding: 145px 0;
  color: var(--white);
  background: var(--ink-2);
  overflow: hidden;
}

.contact::before {
  position: absolute;
  top: -240px;
  left: -250px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(213, 163, 124, 0.22);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 110px;
}

.contact-intro h2 {
  font-size: clamp(3rem, 5.4vw, 5.7rem);
}

.contact-intro > p {
  max-width: 470px;
  color: rgba(255, 253, 249, 0.64);
}

.contact-email {
  display: inline-block;
  margin-top: 32px;
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  overflow-wrap: anywhere;
}

.contact-note {
  margin-top: 34px !important;
  padding-top: 23px;
  border-top: 1px solid var(--line-light);
  font-size: 0.78rem;
}

.inquiry-form {
  padding: 42px;
  color: var(--ink);
  background: var(--paper-2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(10, 22, 34, 0.26);
  border-radius: 0;
  background: transparent;
  outline: none;
  transition: border-color 160ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a9299;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--copper);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 27px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-actions .button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  margin: 0;
  font-size: 0.78rem;
}

.form-status.success {
  color: #2e704a;
}

.form-status.error {
  color: #9a392f;
}

.site-footer {
  padding: 72px 0 34px;
  color: rgba(255, 253, 249, 0.72);
  background: #071019;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 70px;
  padding-bottom: 56px;
}

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

.footer-brand > p {
  max-width: 430px;
  margin: 24px 0 0;
  font-size: 0.83rem;
}

.footer-column h2 {
  margin: 0 0 20px;
  color: var(--copper-light);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 10px;
}

.footer-column a {
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-company {
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-page {
  background: var(--paper-2);
}

.legal-hero {
  padding: 190px 0 82px;
  color: var(--white);
  background: var(--ink);
}

.legal-hero h1 {
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.legal-hero p {
  max-width: 650px;
  margin: 25px 0 0;
  color: rgba(255, 253, 249, 0.66);
}

.legal-content {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: 90px;
  padding: 100px 0 130px;
}

.legal-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  font-size: 0.78rem;
}

.legal-aside p {
  margin: 0 0 16px;
}

.legal-aside a {
  color: var(--copper);
}

.legal-article h2 {
  margin: 55px 0 15px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article h3 {
  margin: 30px 0 10px;
  font-size: 1rem;
}

.legal-article p,
.legal-article li {
  color: #4e5b65;
}

.legal-article ul {
  padding-left: 20px;
}

.legal-callout {
  margin: 35px 0;
  padding: 24px 27px;
  border-left: 3px solid var(--copper);
  background: var(--paper);
}

.legal-callout p {
  margin: 0;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 24px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.error-page h1 {
  margin: 0;
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: clamp(7rem, 24vw, 16rem);
  font-weight: 400;
  line-height: 0.8;
}

.error-page h2 {
  margin: 25px 0 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.error-page p {
  color: rgba(255, 253, 249, 0.65);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a:nth-child(3) {
    display: none;
  }

  .intro-grid,
  .about-grid {
    gap: 65px;
  }

  .moments-grid,
  .faq-grid {
    gap: 60px;
  }

  .network-grid {
    gap: 55px;
  }

  .contact-grid {
    gap: 70px;
  }
}

@media (max-width: 880px) {
  .shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header:not(.scrolled):not(.header-solid).mobile-active {
    background: var(--ink);
  }

  .hero,
  .hero-content {
    min-height: 790px;
  }

  .hero::before {
    background-image: linear-gradient(90deg, rgba(7, 16, 25, 0.96), rgba(7, 16, 25, 0.76)), url("/assets/hero-iig.webp");
    background-position: 60% center;
  }

  .hero h1 {
    max-width: 680px;
  }

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

  .proof-item {
    min-height: 91px;
    padding: 18px;
    border-top: 1px solid var(--line-light);
  }

  .hero-proof {
    position: relative;
  }

  .hero-content {
    padding-bottom: 90px;
  }

  .intro-grid,
  .moments-grid,
  .network-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro,
  .services,
  .moments,
  .process,
  .network,
  .about,
  .faq,
  .contact {
    padding: 105px 0;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .moments-nav,
  .about-panel,
  .faq-title {
    position: static;
  }

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

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .network-grid {
    gap: 60px;
  }

  .network-visual {
    min-height: 490px;
  }

  .about-panel {
    max-width: 610px;
  }

  .faq-grid {
    gap: 45px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-aside {
    position: static;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-name small {
    font-size: 0.48rem;
  }

  .hero,
  .hero-content {
    min-height: 730px;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 17vw, 5.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .proof-grid,
  .services-grid,
  .process-steps,
  .standards-grid,
  .form-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child {
    border-right: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .proof-number {
    font-size: 1.45rem;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .principle-list,
  .moment-card ul {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 315px;
  }

  .moment-card {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .process-step,
  .process-step:first-child {
    min-height: 250px;
    border-top: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .process-step h3 {
    margin-top: 58px;
  }

  .network-visual {
    min-height: 390px;
  }

  .network-caption {
    display: block;
  }

  .network-caption span:last-child {
    display: block;
    margin-top: 4px;
  }

  .about-panel,
  .inquiry-form {
    padding: 30px 24px;
  }

  .about-monogram {
    margin-bottom: 60px;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .legal-hero {
    padding-top: 150px;
  }

  .legal-content {
    padding-top: 70px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
