@font-face {
  font-family: "Noto Sans KR";
  src: url("/font/NotoSansKR-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("/font/NotoSansKR-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("/font/NotoSansKR-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ivory: #f7f4ec;
  --paper: #fffdf8;
  --white: #ffffff;
  --navy: #102e45;
  --navy-soft: #1f435b;
  --ink: #183041;
  --muted: #677681;
  --line: #dedbd2;
  --gold: #b9955b;
  --gold-soft: #dbc59e;
  --sage: #87978a;
  --sage-light: #e8eee8;
  --serif: "Batang", "Gungsuh", "Times New Roman", serif;
  --sans: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  --shadow: 0 24px 70px rgba(16, 46, 69, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 46, 69, 0.1);
  background: rgba(247, 244, 236, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 35px rgba(16, 46, 69, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(3, 7px);
  gap: 4px;
  width: 30px;
  height: 38px;
  transform: skewX(-11deg);
}

.brand-mark i {
  display: block;
  width: 7px;
  border-radius: 999px 999px 2px 2px;
  background: var(--navy);
}

.brand-mark i:nth-child(1) {
  height: 22px;
}

.brand-mark i:nth-child(2) {
  height: 30px;
}

.brand-mark i:nth-child(3) {
  height: 38px;
  background: var(--gold);
}

.brand-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--sage);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.primary-nav > a {
  position: relative;
  color: #334957;
  font-size: 14px;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 50%;
  bottom: -12px;
  left: 50%;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: right 0.2s ease, left 0.2s ease;
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
  left: 0;
}

.primary-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 13px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 3px;
}

.primary-nav .nav-cta span {
  color: var(--gold-soft);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 170px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(185, 149, 91, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(185, 149, 91, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 76% 32%, rgba(219, 197, 158, 0.25), transparent 36%),
    var(--ivory);
  background-size: 78px 78px, 78px 78px, auto, auto;
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 56%;
  height: 21%;
  background: var(--paper);
  content: "";
  transform: skewX(-34deg);
  transform-origin: bottom;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(185, 149, 91, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit--one {
  top: 118px;
  right: 7%;
  width: 560px;
  height: 560px;
}

.hero-orbit--two {
  top: 190px;
  right: 14%;
  width: 410px;
  height: 410px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  gap: 70px;
  min-height: 585px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(54px, 5.3vw, 78px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.075em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: var(--navy);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  z-index: -1;
  height: 14px;
  background: rgba(219, 197, 158, 0.72);
  content: "";
}

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: #596b76;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button--primary,
.button--submit {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(16, 46, 69, 0.16);
}

.button--primary:hover,
.button--submit:hover {
  background: var(--navy-soft);
}

.button--text {
  min-height: auto;
  padding: 10px 2px;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}

.hero-trust {
  display: flex;
  gap: 0;
  margin: 58px 0 0;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.hero-trust div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-trust dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
}

.hero-trust dd {
  margin: 0;
  color: #415767;
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  height: 560px;
}

.document-stack {
  position: absolute;
  top: 26px;
  right: 35px;
  width: 365px;
  height: 480px;
  filter: drop-shadow(0 30px 35px rgba(16, 46, 69, 0.18));
  transform: rotate(4deg);
}

.document {
  position: absolute;
  inset: 0;
  border-radius: 5px;
}

.document--back {
  background: var(--sage);
  transform: translate(36px, 22px) rotate(6deg);
}

.document--middle {
  background: var(--navy);
  transform: translate(20px, 10px) rotate(2deg);
}

.document--front {
  padding: 34px 32px;
  background:
    linear-gradient(rgba(16, 46, 69, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 28px;
  border: 1px solid rgba(185, 149, 91, 0.3);
}

.document-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
}

.document-head span {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.document-head small {
  color: var(--sage);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.document-title {
  margin-top: 44px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.35;
  letter-spacing: -0.06em;
}

.document-lines {
  display: grid;
  gap: 11px;
  margin-top: 36px;
}

.document-lines i {
  display: block;
  height: 5px;
  background: #d9dedb;
  border-radius: 999px;
}

.document-lines i:nth-child(2) {
  width: 84%;
}

.document-lines i:nth-child(3) {
  width: 60%;
}

.document-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

.document-route span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
}

.document-route span.is-done {
  color: #fff;
  border-color: var(--sage);
  background: var(--sage);
}

.document-route b {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.document-seal {
  position: absolute;
  right: 28px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 21px;
  transform: rotate(-9deg);
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 22px 24px;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(185, 149, 91, 0.34);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.floating-note--top {
  top: 36px;
  left: -28px;
  width: 184px;
}

.floating-note--top span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.floating-note--top strong {
  display: block;
  margin-top: 9px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.floating-note--bottom {
  right: -20px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 215px;
}

.floating-note--bottom i {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid var(--sage);
  border-radius: 50%;
}

.floating-note--bottom i::after {
  position: absolute;
  top: 8px;
  left: 11px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  content: "";
  transform: rotate(45deg);
}

.floating-note--bottom span {
  color: #4c606e;
  font-size: 11px;
  line-height: 1.65;
}

.notice-bar {
  position: relative;
  z-index: 5;
  margin-top: 42px;
  color: #fff;
  background: var(--navy);
}

.notice-bar .shell {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto 1fr auto;
  gap: 24px;
  min-height: 74px;
}

.notice-label {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.notice-bar strong {
  font-size: 14px;
}

.notice-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.notice-bar a {
  color: var(--gold-soft);
  font-size: 12px;
}

.service-index {
  padding: 150px 0 140px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  margin-bottom: 68px;
}

.section-heading h2,
.about h2,
.consultation h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.06em;
}

.section-heading h2 em {
  color: var(--gold);
  font-style: normal;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.service-list {
  border-top: 1px solid var(--navy);
}

.service-card {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 85px 1.2fr 0.9fr 110px;
  gap: 35px;
  min-height: 285px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(232, 238, 232, 0.25), rgba(247, 244, 236, 0.8));
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  padding-right: 28px;
  padding-left: 28px;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-number {
  align-self: start;
  padding-top: 9px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}

.service-main {
  position: relative;
  padding-right: 130px;
}

.service-main > p:first-child {
  margin: 0 0 9px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-main h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.service-main > p:last-child {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-symbol {
  position: absolute;
  top: 9px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #405663;
  font-size: 13px;
  list-style: none;
}

.service-card li::before {
  margin-right: 9px;
  color: var(--gold);
  content: "—";
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  font-size: 12px;
  font-weight: 600;
}

.service-card > a span {
  color: var(--gold);
}

.symbol-building {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  width: 36px;
  height: 40px;
  border-bottom: 2px solid currentColor;
}

.symbol-building i {
  display: block;
  width: 8px;
  border: 1px solid currentColor;
  border-bottom: 0;
}

.symbol-building i:nth-child(1) { height: 22px; }
.symbol-building i:nth-child(2) { height: 34px; }
.symbol-building i:nth-child(3) { height: 27px; }

.symbol-document {
  position: relative;
  display: block;
  width: 31px;
  height: 39px;
  border: 2px solid currentColor;
}

.symbol-document i {
  display: block;
  width: 17px;
  height: 1px;
  margin: 8px auto 0;
  background: currentColor;
}

.symbol-passport {
  position: relative;
  display: block;
  width: 33px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.symbol-passport i:first-child {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 11px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.symbol-passport i:last-child {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  height: 1px;
  background: currentColor;
}

.symbol-search {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.symbol-search::after {
  position: absolute;
  right: -11px;
  bottom: -8px;
  width: 15px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: rotate(47deg);
}

.symbol-search i {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 11px;
  height: 1px;
  background: currentColor;
}

.about {
  padding: 150px 0;
  background: var(--ivory);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.about-visual {
  position: relative;
  min-height: 580px;
}

.about-frame {
  position: absolute;
  inset: 0 55px 70px 0;
  padding: 64px 50px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy);
  background-size: 38px 38px;
  box-shadow: var(--shadow);
}

.about-frame::after {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(219, 197, 158, 0.35);
  border-radius: 50%;
  content: "";
}

.about-frame .about-kicker {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.about-frame strong {
  display: block;
  margin-top: 70px;
  font-family: var(--serif);
  font-size: 92px;
  font-weight: 400;
  letter-spacing: -0.1em;
}

.about-frame p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.75;
}

.about-frame i {
  position: absolute;
  top: 42px;
  right: 42px;
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.about-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 270px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 20px 50px rgba(16, 46, 69, 0.12);
}

.about-card > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.about-card ol {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.about-card li {
  color: #435965;
  font-size: 12px;
}

.about-card b {
  margin-right: 12px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 10px;
}

.about-copy .about-lead {
  margin-top: 34px;
  color: #3e5564;
  font-size: 17px;
  line-height: 1.95;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.about-values span {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
}

.about-values strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 19px;
}

.about-values p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.process {
  padding: 145px 0;
  color: #fff;
  background: var(--navy);
}

.section-heading--light {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 48px;
}

.section-heading--light h2 {
  color: #fff;
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.58);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 275px;
  padding: 44px 34px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list li:not(:first-child) {
  padding-left: 34px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-list b {
  display: block;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.process-list p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.8;
}

.process-list i {
  position: absolute;
  right: 28px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--serif);
  font-size: 72px;
  font-style: normal;
}

.consultation {
  padding: 150px 0;
  background: var(--sage-light);
}

.consultation-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.contact-info > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.contact-info dl {
  margin: 48px 0 0;
  border-top: 1px solid rgba(16, 46, 69, 0.2);
}

.contact-info dl > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid rgba(16, 46, 69, 0.12);
}

.contact-info dt {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
}

.contact-info dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.channel-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.channel-links a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: #fff;
  background: var(--sage);
  font-size: 11px;
}

.channel-links a:last-child {
  background: var(--navy);
}

.consultation-form {
  padding: 48px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-head {
  position: relative;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-head > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.form-head strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.form-head p {
  position: absolute;
  right: 0;
  bottom: 28px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.form-head i,
.field i {
  color: #ad6c56;
  font-style: normal;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 20px;
  margin-top: 30px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.field > span {
  color: #3b5160;
  font-size: 11px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #bdc5c2;
  outline: none;
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  transition: border-color 0.2s ease;
}

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

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

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 11px;
}

.consent input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--navy);
}

.consent button,
.footer-bottom button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: inherit;
}

.button--submit {
  width: 100%;
  margin-top: 28px;
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-message {
  min-height: 22px;
  margin: 13px 0 0;
  color: var(--sage);
  font-size: 12px;
  text-align: center;
}

.form-message.is-error {
  color: #a84d4d;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  padding: 70px 0 22px;
  color: rgba(255, 255, 255, 0.62);
  background: #0c2639;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-bottom: 55px;
}

.brand--footer .brand-mark i {
  background: var(--gold-soft);
}

.brand--footer .brand-mark i:last-child {
  background: var(--gold);
}

.brand--footer .brand-copy strong {
  color: #fff;
}

.footer-grid > div:first-child > p {
  max-width: 420px;
  margin: 24px 0 0;
  font-size: 12px;
  line-height: 1.8;
}

.footer-info {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 11px 20px;
  align-content: start;
}

.footer-info span {
  color: var(--gold-soft);
  font-size: 10px;
}

.footer-info strong {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom button {
  color: inherit;
}

.floating-consult {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  display: grid;
  place-content: center;
  width: 82px;
  height: 82px;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(16, 46, 69, 0.26);
  line-height: 1.1;
  text-align: center;
}

.floating-consult span {
  color: var(--gold-soft);
  font-size: 9px;
}

.floating-consult strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.floating-consult i {
  position: absolute;
  top: 10px;
  right: 13px;
  color: var(--gold-soft);
  font-size: 10px;
  font-style: normal;
}

.privacy-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(16, 46, 69, 0.28);
}

.privacy-dialog::backdrop {
  background: rgba(12, 38, 57, 0.64);
  backdrop-filter: blur(4px);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 26px;
  color: #fff;
  background: var(--navy);
}

.dialog-head strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.dialog-head button {
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
}

.dialog-body {
  padding: 28px 28px 14px;
  color: var(--muted);
  font-size: 12px;
}

.dialog-body dl {
  margin: 22px 0;
  border-top: 1px solid var(--line);
}

.dialog-body dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.dialog-body dt {
  color: var(--navy);
  font-weight: 600;
}

.dialog-body dd {
  margin: 0;
}

.privacy-dialog > .button {
  width: calc(100% - 56px);
  margin: 8px 28px 28px;
}

.noscript {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  padding: 14px;
  color: #fff;
  background: #a84d4d;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 22px;
  }

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

  .floating-note--top {
    left: 0;
  }

  .floating-note--bottom {
    right: 0;
  }

  .service-card {
    grid-template-columns: 60px 1.25fr 0.75fr 90px;
    gap: 24px;
  }

  .service-main {
    padding-right: 100px;
  }

  .about-grid,
  .consultation-grid {
    gap: 60px;
  }
}

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

  .shell,
  .header-inner {
    width: min(100% - 36px, 720px);
  }

  .header-inner {
    height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 26px 24px 34px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(16, 46, 69, 0.12);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav > a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav .nav-cta {
    justify-content: space-between;
    margin-top: 18px;
    padding: 15px 18px;
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    min-height: 0;
  }

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

  .hero h1 {
    font-size: clamp(48px, 9vw, 68px);
  }

  .hero-visual {
    width: min(100%, 520px);
    height: 520px;
    margin: 0 auto;
  }

  .notice-bar {
    margin-top: 30px;
  }

  .notice-bar .shell {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 16px 0;
  }

  .notice-bar p {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-index,
  .about,
  .process,
  .consultation {
    padding: 105px 0;
  }

  .service-card {
    grid-template-columns: 50px 1fr 105px;
    gap: 22px;
    padding: 38px 0;
  }

  .service-card ul {
    grid-column: 2 / 3;
    margin-top: -20px;
  }

  .service-card > a {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .about-grid,
  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-visual {
    width: min(100%, 590px);
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .contact-info {
    max-width: 650px;
  }
}

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

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .brand-mark {
    grid-template-columns: repeat(3, 6px);
    width: 26px;
    height: 33px;
  }

  .brand-mark i {
    width: 6px;
  }

  .brand-mark i:nth-child(1) { height: 19px; }
  .brand-mark i:nth-child(2) { height: 26px; }
  .brand-mark i:nth-child(3) { height: 33px; }

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    justify-content: space-between;
    margin-top: 38px;
  }

  .hero-trust div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 0 11px;
  }

  .hero-visual {
    height: 440px;
  }

  .document-stack {
    top: 22px;
    right: 4%;
    width: 74%;
    height: 380px;
  }

  .document--front {
    padding: 24px 22px;
  }

  .document-title {
    margin-top: 31px;
    font-size: 28px;
  }

  .document-lines {
    margin-top: 26px;
  }

  .document-route {
    margin-top: 35px;
  }

  .document-route span {
    width: 45px;
    height: 45px;
    font-size: 9px;
  }

  .floating-note--top {
    top: 10px;
    left: 0;
    width: 150px;
    padding: 16px;
  }

  .floating-note--top strong {
    font-size: 14px;
  }

  .floating-note--bottom {
    right: 2px;
    bottom: 14px;
    width: 182px;
    padding: 15px;
  }

  .notice-bar .shell {
    grid-template-columns: auto 1fr;
  }

  .notice-bar a {
    grid-column: 2;
  }

  .section-heading h2,
  .about h2,
  .consultation h2 {
    font-size: 38px;
  }

  .service-index,
  .about,
  .process,
  .consultation {
    padding: 82px 0;
  }

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

  .service-card {
    grid-template-columns: 38px 1fr;
    gap: 18px;
    min-height: 0;
  }

  .service-card:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .service-main {
    padding-right: 0;
  }

  .service-symbol {
    position: relative;
    top: auto;
    right: auto;
    float: right;
    width: 64px;
    height: 64px;
    margin: -61px 0 15px 15px;
  }

  .service-card ul {
    grid-column: 2;
    margin-top: 4px;
  }

  .service-card > a {
    grid-column: 2;
    grid-row: auto;
    margin-top: 8px;
  }

  .about-visual {
    min-height: 475px;
  }

  .about-frame {
    right: 28px;
    bottom: 58px;
    padding: 45px 30px;
  }

  .about-frame strong {
    margin-top: 50px;
    font-size: 70px;
  }

  .about-frame p {
    font-size: 17px;
  }

  .about-card {
    width: 225px;
    padding: 22px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:not(:first-child) {
    min-height: 210px;
    padding: 34px 8px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
  }

  .consultation-form {
    padding: 30px 20px;
  }

  .form-head p {
    position: static;
    margin-top: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .channel-links {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .floating-consult {
    right: 16px;
    bottom: 16px;
    width: 68px;
    height: 68px;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
