:root {
  --navy-950: #101d33;
  --navy-900: #14263f;
  --navy-800: #213a5c;
  --olive-700: #4f6650;
  --olive-600: #62795e;
  --olive-500: #73896d;
  --sand-100: #fbf7ef;
  --sand-200: #f3ebdd;
  --sand-300: #e7dcc7;
  --gold-500: #bc9361;
  --gold-400: #d7b58a;
  --white: #ffffff;
  --text: #1f2d44;
  --muted: #667387;
  --line: rgba(20, 38, 63, 0.12);
  --line-soft: rgba(20, 38, 63, 0.08);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --shadow-sm: 0 14px 34px rgba(16, 29, 51, 0.08);
  --shadow-md: 0 28px 70px rgba(16, 29, 51, 0.11);
  --shadow-lg: 0 42px 110px rgba(16, 29, 51, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 181, 138, 0.16), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(115, 137, 109, 0.12), transparent 26%),
    linear-gradient(180deg, #fffefb 0%, var(--sand-100) 58%, #fffdfa 100%);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.34;
  background:
    linear-gradient(120deg, transparent 0 72%, rgba(188, 147, 97, 0.08) 72% 73%, transparent 73% 100%),
    linear-gradient(90deg, transparent 0 20%, rgba(79, 102, 80, 0.05) 20% 20.25%, transparent 20.25% 100%);
}

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

button,
input,
select {
  font: inherit;
}

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

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

[id] {
  scroll-margin-top: 130px;
}

:focus-visible {
  outline: 3px solid rgba(188, 147, 97, 0.65);
  outline-offset: 3px;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -64px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-950);
}

.skip-link:focus {
  top: 14px;
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
}

.utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.79rem;
  letter-spacing: 0.03em;
}

.utility-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.utility-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 5px rgba(188, 147, 97, 0.12);
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-links a {
  transition: color 0.2s ease;
}

.utility-links a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 254, 251, 0.88);
  backdrop-filter: blur(20px);
}

.main-nav {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 430px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 8px;
}

.brand-mark {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(20, 38, 63, 0.12);
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--olive-700));
  box-shadow: var(--shadow-sm);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.brand-mark::before {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-mark::after {
  width: 38px;
  height: 38px;
  top: 10px;
  right: 10px;
  background: rgba(215, 181, 138, 0.18);
  filter: blur(1px);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 1;
}

.brand-logo-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  background: var(--sand-100);
}

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

.brand-copy strong,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-copy strong {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-copy span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 11px 12px;
  border-radius: 12px;
  color: #44536a;
  font-size: 0.86rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--navy-900);
  background: rgba(79, 102, 80, 0.09);
}

.nav-links .nav-button {
  margin-left: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--olive-700), var(--navy-900));
  box-shadow: 0 14px 28px rgba(33, 58, 92, 0.16);
}

.nav-links .nav-button:hover,
.nav-links .nav-button.is-active {
  color: var(--white);
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--olive-600), var(--navy-800));
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy-900);
  background: var(--surface-strong);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  margin: auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -22% auto;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 147, 97, 0.14), transparent 66%);
}

.home-hero {
  padding-top: 94px;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.hero-stage {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--olive-700);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
}

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

h1 {
  margin: 18px 0 20px;
  font-size: clamp(2.8rem, 5.9vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.page-hero h1 {
  max-width: 11ch;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--olive-700), var(--navy-900));
  box-shadow: 0 18px 34px rgba(20, 38, 63, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--olive-600), var(--navy-800));
}

.btn-secondary {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--navy-900);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  border-color: rgba(79, 102, 80, 0.18);
  background: rgba(79, 102, 80, 0.08);
  color: var(--olive-700);
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.summary-chip {
  min-height: 102px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(79, 102, 80, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.summary-chip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 1rem;
}

.summary-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-stage {
  min-height: 440px;
}

.hero-stage-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(16, 29, 51, 0.98), rgba(33, 58, 92, 0.9)),
    radial-gradient(circle at top left, rgba(215, 181, 138, 0.14), transparent 34%);
  box-shadow: var(--shadow-lg);
}

.hero-stage-panel::before,
.hero-stage-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stage-panel::before {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -70px;
}

.hero-stage-panel::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -70px;
}

.stage-halo {
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 181, 138, 0.16), transparent 62%);
  animation: drift 16s ease-in-out infinite;
}

.stage-note,
.hero-stage-metric {
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 30px rgba(0, 0, 0, 0.14);
}

.stage-note {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-note-top {
  top: 28px;
  left: 28px;
  animation: float-soft 10s ease-in-out infinite;
}

.stage-note-bottom {
  right: 28px;
  bottom: 28px;
  animation: float-soft 11.5s ease-in-out infinite reverse;
}

.meeting-table {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 58%, transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(215, 181, 138, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.meeting-table::before,
.meeting-table::after {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.meeting-table::after {
  inset: 72px;
  border-color: rgba(215, 181, 138, 0.16);
}

.meeting-seat {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(215, 181, 138, 0.95), rgba(122, 97, 65, 0.92));
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.seat-a { top: -18px; left: 50%; transform: translateX(-50%); }
.seat-b { right: -12px; top: 50%; transform: translateY(-50%); }
.seat-c { bottom: -18px; left: 50%; transform: translateX(-50%); }
.seat-d { left: -12px; top: 50%; transform: translateY(-50%); }

.olive-branch {
  position: absolute;
  left: 36px;
  bottom: 46px;
  width: 200px;
  height: 140px;
  transform-origin: left bottom;
  animation: branch-sway 12s ease-in-out infinite;
}

.branch-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 174px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(215, 181, 138, 0.95), rgba(98, 121, 94, 0.95));
  transform: rotate(-26deg);
  transform-origin: left center;
}

.leaf {
  position: absolute;
  width: 38px;
  height: 18px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(123, 151, 117, 0.95), rgba(70, 91, 67, 0.92));
}

.leaf-1 { left: 28px; bottom: 24px; transform: rotate(-8deg); }
.leaf-2 { left: 64px; bottom: 44px; transform: rotate(-24deg); }
.leaf-3 { left: 102px; bottom: 60px; transform: rotate(-10deg); }
.leaf-4 { left: 84px; bottom: 16px; transform: rotate(12deg); }
.leaf-5 { left: 126px; bottom: 34px; transform: rotate(16deg); }

.hero-stage-metric strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stage-metric span {
  display: block;
  margin-top: 5px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.metric-a {
  right: 34px;
  top: 82px;
}

.metric-b {
  left: 42px;
  top: 118px;
}

.grid-orbit {
  position: absolute;
  inset: 98px 66px 78px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.grid-orbit span {
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(215, 181, 138, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float-soft 11s ease-in-out infinite;
}

.grid-orbit span:nth-child(2) { animation-delay: 0.9s; }
.grid-orbit span:nth-child(3) { animation-delay: 1.7s; }
.grid-orbit span:nth-child(4) { animation-delay: 2.4s; }

.hero-panel {
  padding: 30px;
  border: 1px solid rgba(20, 38, 63, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 38, 63, 0.97), rgba(33, 58, 92, 0.92));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.hero-panel h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.hero-panel p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 94px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(243, 235, 221, 0.62), rgba(255, 255, 255, 0.4)),
    var(--sand-100);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(188, 147, 97, 0.16), transparent 24%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.section-head > div {
  max-width: 700px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--olive-700);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 850;
}

.section-dark .section-kicker,
.guidance-card .section-kicker {
  color: var(--gold-400);
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-desc {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.section-desc-wide {
  max-width: 720px;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.68);
}

.principles-grid,
.card-grid,
.team-grid,
.office-grid,
.service-option-grid,
.tools-grid,
.legal-grid,
.support-grid,
.spotlight-grid {
  display: grid;
  gap: 18px;
}

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

.principle-card,
.card,
.office-card,
.tool-card,
.legal-card,
.detail-card,
.guidance-card,
.summary-chip,
.service-option {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

.principle-card,
.card,
.service-option,
.legal-card,
.guidance-card {
  padding: 26px;
}

.principle-card {
  position: relative;
  overflow: hidden;
}

.principle-card::before,
.card::before,
.service-option::before,
.tool-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.principle-no,
.card-number {
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.principle-card h3,
.card h3,
.feature h3,
.process-step h3,
.person h3,
.office-body h3,
.service-option h3,
.tool-card h3 {
  margin: 16px 0 10px;
  font-size: 1.28rem;
}

.principle-card p,
.card p,
.office-body p,
.service-option p,
.tool-card p,
.guidance-card p,
.legal-card p,
.detail-card p {
  margin: 0;
  color: var(--muted);
}

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

.card,
.principle-card,
.tool-card,
.office-card,
.service-option,
.person,
.legal-card,
.document-card,
.guidance-card,
.detail-card,
.contact-band,
.hero-panel,
.result-card,
.calculator-card,
.legal-nav,
.notice,
.summary-chip,
.spotlight-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.principle-card:hover,
.tool-card:hover,
.office-card:hover,
.service-option:hover,
.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 102, 80, 0.24);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--olive-700);
  font-weight: 800;
  font-size: 0.92rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-step {
  min-height: 198px;
  padding: 24px;
  border: 1px solid rgba(188, 147, 97, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--olive-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.section-dark .process-step {
  background: rgba(255, 255, 255, 0.97);
}

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

.spotlight-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

.spotlight-visual {
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.spotlight-visual::before,
.spotlight-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.office-visual-alt {
  background:
    linear-gradient(135deg, rgba(20, 38, 63, 0.95), rgba(79, 102, 80, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
}

.office-visual-alt::before {
  width: 220px;
  height: 220px;
  right: -54px;
  top: -40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.office-visual-alt::after {
  inset: auto 24px 30px 24px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.tools-visual-alt {
  background:
    linear-gradient(135deg, rgba(20, 38, 63, 0.98), rgba(33, 58, 92, 0.94)),
    radial-gradient(circle at 30% 30%, rgba(215, 181, 138, 0.16), transparent 40%);
}

.tools-visual-alt::before {
  inset: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.tools-visual-alt::after {
  width: 90px;
  height: 90px;
  right: 26px;
  bottom: 26px;
  background: rgba(215, 181, 138, 0.16);
}

.spotlight-body {
  padding: 28px;
}

.spotlight-body h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.spotlight-body p {
  margin: 0;
  color: var(--muted);
}

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

.person {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.person-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(215, 181, 138, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.person-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.person-avatar {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--navy-900);
  background: linear-gradient(145deg, #f0d7b6, #d1aa72);
  font-family: Georgia, serif;
  font-size: 1.22rem;
  font-weight: 800;
}

.person-media .person-avatar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.person p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(215, 181, 138, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy-900), var(--olive-700));
  box-shadow: var(--shadow-lg);
}

.contact-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.contact-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-band .btn {
  flex: 0 0 auto;
  color: var(--navy-900);
  background: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 26px;
  align-items: start;
}

.detail-card {
  padding: 24px;
}

.detail-card h3 {
  margin: 0 0 14px;
  font-size: 1.4rem;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-list li + li {
  margin-top: 8px;
}

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

.office-card {
  overflow: hidden;
}

.office-visual {
  min-height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(20, 38, 63, 0.96), rgba(79, 102, 80, 0.84)),
    linear-gradient(25deg, #4d6a52, #c8ab80);
}

.office-visual::before,
.office-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.office-visual::before {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -60px;
}

.office-visual::after {
  width: 120px;
  height: 120px;
  right: 30px;
  top: 20px;
}

.office-visual span {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.office-body {
  padding: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--olive-700);
  background: rgba(79, 102, 80, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.service-option strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--olive-700);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-grid {
  gap: 20px;
}

.guidance-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.guidance-card h2 {
  margin: 0 0 12px;
  font-size: 1.75rem;
}

.guidance-card p {
  color: rgba(255, 255, 255, 0.74);
}

.light-card {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--text);
}

.light-card p {
  color: var(--muted);
}

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

.tool-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.tool-card.featured {
  grid-column: span 2;
  color: var(--white);
  border: 0;
  background:
    radial-gradient(circle at top right, rgba(215, 181, 138, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.tool-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.tool-card .card-link {
  margin-top: auto;
  padding-top: 20px;
}

.tool-card.featured .card-link {
  color: #f4d4ac;
}

.tool-label {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--olive-700);
  background: rgba(79, 102, 80, 0.09);
  text-transform: uppercase;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.featured .tool-label {
  color: #f7d8af;
  background: rgba(188, 147, 97, 0.18);
}

.tool-label.muted-label {
  color: #66717e;
  background: rgba(20, 38, 63, 0.06);
}

.calculator-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.calculator-card,
.result-card,
.legal-card,
.notice,
.document-card,
.legal-nav {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

.calculator-card,
.result-body {
  padding: 28px;
}

.calc-hero {
  padding-bottom: 58px;
}

.calc-section {
  padding-block: 68px;
}

.calc-step-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.calc-step-head > span {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--olive-700), var(--navy-800));
  font-weight: 900;
}

.calc-step-head strong,
.calc-step-head small {
  display: block;
}

.calc-step-head small {
  color: var(--muted);
  font-size: 0.79rem;
}

.calc-main-choice {
  padding: 18px;
  border-radius: 18px;
  background: rgba(79, 102, 80, 0.06);
}

.selected-help {
  min-height: 24px;
  color: var(--olive-700);
  font-weight: 650;
}

.field {
  margin-bottom: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.88rem;
  font-weight: 800;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.control {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(20, 38, 63, 0.14);
  border-radius: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.control:focus {
  border-color: rgba(79, 102, 80, 0.62);
  box-shadow: 0 0 0 4px rgba(79, 102, 80, 0.12);
  outline: none;
}

.money-control {
  position: relative;
}

.money-control .control {
  padding-right: 46px;
}

.money-control span {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--olive-700);
  font-weight: 900;
}

.calc-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
}

.form-error {
  min-height: 24px;
  margin: 10px 0 0;
  color: #a64a3d;
  font-size: 0.84rem;
}

.result-card {
  overflow: hidden;
}

.result-empty {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 36px;
  text-align: center;
  color: var(--muted);
}

.result-empty-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 22px;
  color: var(--olive-700);
  background: rgba(79, 102, 80, 0.08);
  font-size: 1.7rem;
}

.result-content[hidden],
.result-empty[hidden] {
  display: none;
}

.result-top {
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(215, 181, 138, 0.16), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.result-top span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.result-total {
  margin: 9px 0 3px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.result-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.summary-item {
  padding: 12px;
  border-radius: 14px;
  background: rgba(20, 38, 63, 0.05);
}

.summary-item span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.summary-item strong {
  font-size: 0.92rem;
}

.breakdown-title {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.breakdown-table th,
.breakdown-table td {
  padding: 11px 8px;
  border-bottom: 1px solid rgba(20, 38, 63, 0.08);
  text-align: right;
  white-space: nowrap;
}

.breakdown-table th:first-child,
.breakdown-table td:first-child {
  text-align: left;
}

.breakdown-table th {
  color: var(--muted);
  font-size: 0.72rem;
}

.minimum-note {
  display: none;
  margin-top: 15px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #775024;
  background: #fff4e4;
  font-size: 0.82rem;
}

.minimum-note.is-visible {
  display: block;
}

.result-disclaimer {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.result-steps {
  width: max-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 0;
  list-style-position: inside;
  text-align: left;
  color: var(--muted);
  font-size: 0.87rem;
}

.result-steps li + li {
  margin-top: 5px;
}

.calc-legal-section {
  padding-top: 12px;
}

.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 16px 16px 0;
  background: #fff7ec;
  color: #695238;
}

.notice a {
  color: var(--olive-700);
  font-weight: 800;
  white-space: nowrap;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 138px;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.legal-nav strong {
  margin: 3px 9px 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-nav a {
  padding: 8px 9px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.legal-nav a:hover {
  color: var(--olive-700);
  background: rgba(79, 102, 80, 0.07);
}

.legal-content {
  min-width: 0;
}

.legal-section + .legal-section {
  margin-top: 62px;
  padding-top: 62px;
  border-top: 1px solid var(--line-soft);
}

.legal-section > h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.legal-section > p {
  color: var(--muted);
}

.document-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
}

.document-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--olive-700);
  background: rgba(79, 102, 80, 0.08);
  font-weight: 900;
}

.document-card h3 {
  margin: 0 0 4px;
  font-size: 1.18rem;
}

.document-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.legal-card strong {
  display: block;
  margin-bottom: 8px;
}

.legal-caveat {
  padding: 15px 16px;
  border-left: 3px solid var(--gold-500);
  background: #fff8ef;
}

.compact-process {
  margin-top: 24px;
}

.compact-process .process-step {
  min-height: 170px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  margin-top: 96px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top right, rgba(188, 147, 97, 0.16), transparent 24%),
    linear-gradient(180deg, #0f1c31, #0b1728);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.16fr 0.82fr 0.82fr;
  gap: 46px;
  padding: 60px 0 44px;
}

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

.footer-brand p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-title {
  margin: 0 0 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.footer-contact address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.js-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.72s ease var(--reveal-delay, 0ms),
    transform 0.72s ease var(--reveal-delay, 0ms);
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -10px) scale(1.03); }
}

@keyframes branch-sway {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(2.5deg); }
}

@media (max-width: 1120px) {
  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 70px;
    height: 70px;
    flex-basis: 70px;
  }

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

  .brand-copy span {
    display: none;
  }

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

@media (max-width: 860px) {
  .utility-note {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-links {
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .main-nav {
    min-height: 90px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 92px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .nav-links .nav-button {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .calculator-wrap,
  .legal-layout,
  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-stage-panel {
    min-height: 360px;
  }

  .summary-strip,
  .principles-grid,
  .card-grid,
  .office-grid,
  .service-option-grid,
  .tools-grid,
  .process,
  .support-grid,
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-card.featured {
    grid-column: span 2;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }

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

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .utility-links a:first-child {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 16px;
  }

  .brand-copy strong {
    max-width: 210px;
    font-size: 0.9rem;
    line-height: 1.15;
    white-space: normal;
  }

  .page-hero,
  .home-hero {
    padding: 58px 0 48px;
  }

  h1 {
    font-size: 2.58rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .summary-strip,
  .principles-grid,
  .card-grid,
  .team-grid,
  .office-grid,
  .service-option-grid,
  .tools-grid,
  .process,
  .legal-grid,
  .support-grid,
  .spotlight-grid,
  .field-row,
  .summary-list {
    grid-template-columns: 1fr;
  }

  .tool-card.featured {
    grid-column: auto;
  }

  .contact-band {
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
  }

  .hero-stage,
  .hero-stage-panel {
    min-height: 320px;
  }

  .meeting-table {
    width: 190px;
    height: 190px;
  }

  .meeting-seat {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .metric-a,
  .metric-b {
    padding: 10px 12px;
  }

  .calculator-card,
  .result-body {
    padding: 22px;
  }

  .document-card {
    grid-template-columns: 48px 1fr;
  }

  .document-card .btn {
    grid-column: 1 / -1;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-nav strong {
    grid-column: auto;
  }

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

  .footer-main > :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js-ready .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
