:root {
  --bg: #f6f2ed;
  --bg-soft: #fbf8f5;
  --surface: #ffffff;
  --surface-strong: #fffdfa;
  --text: #161616;
  --text-soft: #5d5f66;
  --line: rgba(22, 22, 22, 0.1);
  --line-strong: rgba(22, 22, 22, 0.16);
  --accent: #b2322b;
  --accent-dark: #8f231e;
  --accent-soft: rgba(178, 50, 43, 0.08);
  --shadow-lg: 0 26px 70px rgba(16, 18, 23, 0.08);
  --shadow-md: 0 18px 36px rgba(16, 18, 23, 0.08);
  --shadow-sm: 0 12px 24px rgba(16, 18, 23, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(178, 50, 43, 0.08), transparent 36%),
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.04), transparent 28%),
    linear-gradient(180deg, #fcfbf9 0%, var(--bg) 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(178, 50, 43, 0.18);
}

:focus-visible {
  outline: 3px solid rgba(178, 50, 43, 0.28);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.logo-caption {
  color: var(--text-soft);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(22, 22, 22, 0.05);
  color: var(--text);
}

.nav-cta {
  margin-left: 0.35rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.95rem 1.35rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 16px 30px rgba(22, 22, 22, 0.18);
}

.button-primary:hover {
  background: #000;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border-color: var(--line);
}

.button-secondary:hover {
  background: #fff;
  border-color: var(--line-strong);
}

.button-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(178, 50, 43, 0.2);
}

.button-accent:hover {
  background: var(--accent-dark);
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main {
  padding-bottom: 4rem;
}

.hero,
.page-hero {
  padding: 3.8rem 0 2rem;
}

.hero-grid,
.page-hero-grid,
.contact-layout,
.info-panel,
.split,
.footer-grid,
.cta-panel,
.dual-panel {
  display: grid;
  gap: 1.5rem;
}

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

.page-hero-grid,
.contact-layout,
.info-panel,
.split,
.footer-grid,
.cta-panel,
.dual-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 1.2rem;
}

.hero-title,
.page-title,
.section-title {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.15rem);
  max-width: 11ch;
}

.page-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 12ch;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-subtitle,
.page-intro,
.section-intro,
.lead,
.prose,
.card p,
.panel-copy,
.policy-intro,
.policy-block p,
.list-note,
.footer-copy {
  color: var(--text-soft);
}

.hero-subtitle,
.page-intro,
.lead,
.prose {
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.55rem;
}

.meta-card,
.visual-card,
.card,
.surface,
.policy,
.contact-card,
.form-card,
.notice-card,
.cta-panel,
.journey-step {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: var(--shadow-md);
}

.meta-card,
.card,
.surface,
.policy,
.contact-card,
.form-card,
.notice-card,
.journey-step {
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.meta-card span,
.card-label,
.info-row span,
.feature-item span,
.policy-label {
  display: block;
  color: var(--text-soft);
  font-size: 0.87rem;
  letter-spacing: 0.02em;
}

.meta-card strong,
.info-row strong,
.card h3,
.step-card h3,
.value-card h3,
.feature-item strong,
.contact-card h3,
.form-card h2,
.notice-card h2 {
  color: var(--text);
}

.hero-visual,
.page-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(22, 22, 22, 0.08);
  background:
    radial-gradient(circle at 15% 20%, rgba(178, 50, 43, 0.15), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(22, 22, 22, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f1ec 100%);
  box-shadow: var(--shadow-lg);
}

.hero-visual {
  min-height: 520px;
}

.page-hero-card {
  min-height: 360px;
  padding: 1.5rem;
}

.hero-visual::before,
.hero-visual::after,
.page-hero-card::before,
.page-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-visual::before,
.page-hero-card::before {
  width: 230px;
  height: 230px;
  right: -50px;
  bottom: -70px;
  background: rgba(178, 50, 43, 0.08);
}

.hero-visual::after,
.page-hero-card::after {
  width: 180px;
  height: 180px;
  left: -60px;
  top: 50px;
  background: rgba(22, 22, 22, 0.04);
}

.visual-shell {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1.15fr 0.95fr 0.9fr;
  gap: 1rem;
}

.visual-card {
  position: relative;
  border-radius: 24px;
  padding: 1.2rem;
  backdrop-filter: blur(12px);
}

.visual-card--wide {
  grid-column: span 2;
}

.visual-card--tall {
  grid-row: span 2;
}

.visual-card h3,
.page-hero-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.visual-card p,
.page-hero-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.visual-lines,
.abstract-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.visual-line,
.abstract-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(178, 50, 43, 0.12), rgba(22, 22, 22, 0.05));
}

.visual-line:nth-child(1),
.abstract-line:nth-child(1) {
  width: 78%;
}

.visual-line:nth-child(2),
.abstract-line:nth-child(2) {
  width: 58%;
}

.visual-line:nth-child(3),
.abstract-line:nth-child(3) {
  width: 86%;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.pill {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(178, 50, 43, 0.08);
  color: var(--accent);
  border: 1px solid rgba(178, 50, 43, 0.14);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: 2.3rem 0;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.section-copy {
  max-width: 48rem;
}

.surface,
.policy,
.notice-card,
.contact-card,
.form-card,
.cta-panel {
  background: rgba(255, 255, 255, 0.9);
}

.surface h3,
.policy h2,
.notice-card h2,
.contact-card h3,
.form-card h2 {
  margin-top: 0;
  letter-spacing: -0.04em;
}

.info-panel {
  align-items: start;
}

.company-panel {
  display: grid;
  gap: 0.9rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cards {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  display: grid;
  gap: 0.75rem;
}

.card:hover,
.surface:hover,
.journey-step:hover {
  transform: translateY(-2px);
}

.card,
.surface,
.journey-step {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(22, 22, 22, 0.06);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.card h3,
.step-card h3,
.value-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.card p,
.step-card p,
.value-card p {
  margin: 0;
}

.split-card,
.value-card,
.step-card {
  height: 100%;
}

.accent-top {
  position: relative;
}

.accent-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(178, 50, 43, 0.1));
}

.cta-panel {
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.cta-panel h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.05em;
}

.cta-panel .hero-actions {
  justify-content: flex-start;
}

.dual-panel {
  align-items: stretch;
}

.steps {
  display: grid;
  gap: 1.2rem;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-item {
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: var(--shadow-sm);
}

.feature-item strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.journey-step {
  position: relative;
  padding-top: 3rem;
}

.journey-step::before {
  content: attr(data-step);
  position: absolute;
  top: 1rem;
  left: 1.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.journey-step h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.journey-step p {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
}

.policy,
.notice-card {
  padding: 1.9rem;
}

.policy-intro {
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.policy-block {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
}

.policy-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-block h3,
.notice-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.policy-block p,
.notice-card p,
.notice-card li {
  margin: 0;
  line-height: 1.8;
}

.notice-list,
.text-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-highlight {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(178, 50, 43, 0.06);
  border: 1px solid rgba(178, 50, 43, 0.12);
  margin: 1.2rem 0;
}

.contact-layout {
  align-items: start;
}

.contact-card,
.form-card {
  height: 100%;
}

.contact-card .button {
  margin-top: 1rem;
}

.form-card form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(22, 22, 22, 0.1);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(178, 50, 43, 0.35);
  box-shadow: 0 0 0 5px rgba(178, 50, 43, 0.08);
  outline: none;
}

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

.field-hint,
.form-note,
.list-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.form-status {
  display: none;
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-status.is-visible {
  display: block;
}

.form-status.info {
  background: rgba(22, 22, 22, 0.04);
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.form-status.error {
  background: rgba(178, 50, 43, 0.08);
  border: 1px solid rgba(178, 50, 43, 0.12);
  color: var(--accent-dark);
}

.footer {
  margin-top: 3.5rem;
  padding: 3.6rem 0 2rem;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at top left, rgba(178, 50, 43, 0.22), transparent 30%),
    linear-gradient(180deg, #1d1d1d 0%, #101010 100%);
}

.footer-grid {
  align-items: start;
  gap: 2rem;
}

.footer-brand h2 {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.footer-copy {
  margin: 0 0 1.2rem;
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-detail {
  display: grid;
  gap: 0.55rem;
}

.footer-detail strong {
  color: #fff;
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-links,
.footer-contacts {
  display: grid;
  gap: 0.7rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.footer a:hover,
.footer a[aria-current="page"] {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.04);
  color: var(--text-soft);
  border: 1px solid rgba(22, 22, 22, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid,
  .contact-layout,
  .info-panel,
  .split,
  .footer-grid,
  .cta-panel,
  .dual-panel {
    grid-template-columns: 1fr;
  }

  .cards-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .hero,
  .page-hero {
    padding-top: 2.6rem;
  }

  .hero-meta,
  .cards-3,
  .journey,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cards-5 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }
}

@media (max-width: 760px) {
  .header-row {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-shell {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.85rem);
    right: 0;
    min-width: min(320px, calc(100vw - 2rem));
    padding: 0.85rem;
    border-radius: 24px;
    border: 1px solid rgba(22, 22, 22, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

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

  .nav-link,
  .nav-cta {
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.4rem;
  }

  .hero-title,
  .page-title,
  .section-title,
  .cta-panel h2 {
    max-width: none;
  }

  .visual-shell {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .visual-card--wide,
  .visual-card--tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .page-hero-card,
  .cta-panel,
  .policy,
  .notice-card,
  .card,
  .surface,
  .contact-card,
  .form-card,
  .journey-step {
    border-radius: 22px;
  }

  .cards-5,
  .cards-4,
  .steps-4,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .info-row {
    flex-direction: column;
    gap: 0.25rem;
  }
}
