/* ============================================
   SEISEI INC. — Financial Architecture & Family Wealth
   Design language: classical private counsel
   Charcoal ink / warm ivory / oxblood hairlines
   ============================================ */

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

:root {
  --ink: #131312;
  --ink-soft: #1d1d1b;
  --paper: #f7f4ed;
  --paper-deep: #efe9dd;
  --oxblood: #6e1f2c;
  --oxblood-light: #9a3b49;
  --oxblood-hair: rgba(110, 31, 44, 0.3);
  --ivory-hair: rgba(231, 222, 205, 0.22);
  --text: #2e2c28;
  --text-light: #767167;
  --border: #ddd5c4;
  --font-serif: 'Zen Old Mincho', 'Noto Serif SC', 'Yu Mincho', YuMincho, serif;
  --font-sans: 'Noto Sans JP', 'Noto Sans SC', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: 'EB Garamond', 'Zen Old Mincho', Georgia, serif;
  --font-label: 'Cinzel', 'EB Garamond', serif;
  --transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1140px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.95;
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--oxblood);
  color: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(19, 19, 18, 0);
  transition: all var(--transition);
}

.header--sticky {
  background: rgba(247, 244, 237, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  transition: height var(--transition);
}

.header--sticky .header-inner {
  height: 66px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-main {
  font-family: var(--font-label);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--paper);
  transition: color var(--transition);
}

.logo-rule {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--oxblood-light);
}

.logo-sub {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(247, 244, 237, 0.55);
  transition: color var(--transition);
}

.header--sticky .logo-main {
  color: var(--ink);
}

.header--sticky .logo-sub {
  color: var(--text-light);
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-link {
  display: block;
  padding: 8px 15px;
  font-family: var(--font-label);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(247, 244, 237, 0.85);
  position: relative;
  transition: color var(--transition);
}

.header--sticky .nav-link {
  color: var(--ink);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--oxblood-light);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 50%;
}

.nav-link--contact {
  margin-left: 18px;
  border: 1px solid rgba(247, 244, 237, 0.4);
  padding: 10px 26px;
}

.header--sticky .nav-link--contact {
  border-color: var(--ink);
}

.nav-link--contact::after {
  display: none;
}

.nav-link--contact:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: var(--paper);
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
  margin-left: 16px;
  z-index: 1002;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(247, 244, 237, 0.3);
  padding: 7px 14px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(247, 244, 237, 0.85);
  letter-spacing: 0.08em;
  transition: all var(--transition);
  white-space: nowrap;
}

.header--sticky .lang-dropdown-toggle {
  border-color: var(--border);
  color: var(--ink);
}

.lang-dropdown-toggle:hover {
  border-color: var(--oxblood-light);
  color: var(--oxblood-light);
}

.lang-chevron {
  font-size: 9px;
  transition: transform 0.2s ease;
}

.lang-dropdown.is-open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 130px;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(19, 19, 18, 0.12);
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
}

.lang-dropdown.is-open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 9px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text);
  letter-spacing: 0.05em;
  text-align: left;
  transition: all 0.15s ease;
}

.lang-option:hover {
  background: var(--paper-deep);
  color: var(--oxblood);
}

.lang-option.active {
  color: var(--oxblood);
  font-weight: 500;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--paper);
  transition: all 0.3s;
}

.header--sticky .hamburger span,
.hamburger.is-active span {
  background: var(--ink);
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(120% 140% at 85% 15%, rgba(110, 31, 44, 0.16) 0%, transparent 50%),
    radial-gradient(100% 120% at 10% 90%, rgba(60, 58, 52, 0.5) 0%, transparent 55%),
    linear-gradient(165deg, #1b1b19 0%, #131312 55%, #0c0c0b 100%);
  overflow: hidden;
}

/* engraved double frame */
.hero-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid var(--ivory-hair);
  pointer-events: none;
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(231, 222, 205, 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 96px 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--oxblood-light);
  margin-bottom: 44px;
  animation: rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background: var(--oxblood-hair);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.2vw, 84px);
  font-weight: 500;
  color: #f3efe5;
  line-height: 1.34;
  letter-spacing: 0.1em;
  margin-bottom: 44px;
  animation: rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s both;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(231, 222, 205, 0.62);
  line-height: 2.4;
  letter-spacing: 0.08em;
  margin-bottom: 64px;
  animation: rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s both;
}

.hero-btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  color: #ece5d4;
  border: 1px solid rgba(231, 222, 205, 0.35);
  padding: 17px 50px;
  transition: all var(--transition);
}

.hero-btn:hover {
  border-color: var(--oxblood-light);
  color: var(--oxblood-light);
}

.hero-btn--solid {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: #f3efe5;
}

.hero-btn--solid:hover {
  background: #82293a;
  border-color: #82293a;
  color: #f3efe5;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero-scroll span {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(231, 222, 205, 0.4);
  writing-mode: vertical-lr;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(231, 222, 205, 0.18);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--oxblood-light);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* --- Sections --- */
.section {
  padding: 150px 0;
  position: relative;
}

.section--paper {
  background: var(--paper-deep);
}

.section--dark {
  background:
    radial-gradient(110% 130% at 85% 10%, rgba(110, 31, 44, 0.14) 0%, transparent 55%),
    var(--ink);
  color: #ece5d4;
}

.section-header {
  margin-bottom: 92px;
}

.section-number {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--oxblood);
  margin-bottom: 20px;
}

.section-number::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--oxblood-hair);
}

.section-title {
  font-family: var(--font-label);
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ink);
  line-height: 1.1;
}

.section-title-ja {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-light);
  margin-top: 18px;
  letter-spacing: 0.34em;
}

.section-header--light .section-number {
  color: var(--oxblood-light);
}

.section-header--light .section-title {
  color: #f3efe5;
}

.section-header--light .section-title-ja {
  color: rgba(231, 222, 205, 0.5);
}

/* --- Philosophy --- */
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
}

.phil-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 36px;
}

.phil-text {
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.04em;
}

.phil-values {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.phil-value {
  display: grid;
  grid-template-columns: 64px 100px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--border);
}

.phil-value-num {
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--oxblood);
}

.phil-value h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.phil-value > p {
  grid-column: 2 / 4;
  font-family: var(--font-en);
  font-size: 12.5px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

.phil-value-desc {
  grid-column: 2 / 4;
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  color: var(--text) !important;
  margin-top: 4px;
}

/* --- Practice --- */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.practice-card {
  padding: 52px 40px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background var(--transition);
}

.practice-card:hover {
  background: var(--ink);
}

.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.practice-en {
  font-family: var(--font-en);
  font-size: 12.5px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--oxblood);
  margin-bottom: 22px;
  transition: color var(--transition);
}

.practice-desc {
  font-size: 13.5px;
  line-height: 2.15;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color var(--transition);
}

.practice-card:hover h3 {
  color: #f3efe5;
}

.practice-card:hover .practice-en {
  color: var(--oxblood-light);
}

.practice-card:hover .practice-desc {
  color: rgba(231, 222, 205, 0.7);
}

.practice-note {
  margin-top: 36px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--text-light);
}

/* --- Archon --- */
.archon-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: start;
}

.archon-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #f3efe5;
  margin-bottom: 36px;
}

.archon-text {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 2.4;
  letter-spacing: 0.05em;
  color: rgba(231, 222, 205, 0.66);
}

.archon-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(154, 59, 73, 0.35);
}

.archon-stat {
  padding: 44px 32px 38px;
  text-align: center;
}

.archon-stat:nth-child(odd) {
  border-right: 1px solid rgba(154, 59, 73, 0.25);
}

.archon-stat:nth-child(-n+2) {
  border-bottom: 1px solid rgba(154, 59, 73, 0.25);
}

.archon-stat-num {
  display: block;
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--oxblood-light);
  line-height: 1.2;
  margin-bottom: 12px;
}

.archon-stat-num small {
  font-size: 26px;
}

.archon-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(231, 222, 205, 0.6);
  line-height: 1.8;
}

/* --- Approach --- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  counter-reset: step;
}

.approach-step {
  padding: 48px 36px 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.approach-num {
  display: block;
  font-family: var(--font-en);
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--oxblood);
  margin-bottom: 24px;
}

.approach-step h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 4px;
}

.approach-en {
  font-family: var(--font-en);
  font-size: 12.5px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.approach-desc {
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: 0.03em;
  color: var(--text);
}

/* --- Firm --- */
.firm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.firm-table {
  width: 100%;
  border-collapse: collapse;
}

.firm-table tr {
  border-bottom: 1px solid var(--border);
}

.firm-table tr:first-child {
  border-top: 1px solid var(--border);
}

.firm-table th,
.firm-table td {
  padding: 20px 0;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}

.firm-table th {
  width: 120px;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  white-space: nowrap;
  padding-right: 28px;
}

.firm-table td {
  letter-spacing: 0.03em;
}

.firm-table a:hover {
  color: var(--oxblood);
}

.firm-team h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.firm-team h3:not(:first-child) {
  margin-top: 44px;
}

.firm-team p {
  font-size: 13.5px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* --- Contact --- */
.contact {
  text-align: center;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-eyebrow {
  font-family: var(--font-en);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--oxblood-light);
  margin-bottom: 28px;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #f3efe5;
  margin-bottom: 28px;
}

.contact-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.3;
  letter-spacing: 0.05em;
  color: rgba(231, 222, 205, 0.62);
  margin-bottom: 52px;
}

.contact-btn {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 17px;
  letter-spacing: 0.1em;
  color: #f3efe5;
  border: 1px solid rgba(154, 59, 73, 0.5);
  padding: 18px 56px;
  transition: all var(--transition);
}

.contact-btn:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
  color: #f3efe5;
}

/* --- Footer --- */
.footer {
  background: #0c0c0b;
  padding: 72px 0 0;
  color: rgba(231, 222, 205, 0.6);
  border-top: 1px solid rgba(154, 59, 73, 0.25);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(231, 222, 205, 0.07);
}

.footer-brand .logo-main {
  color: #f3efe5;
  font-size: 19px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(231, 222, 205, 0.4);
  margin-top: 14px;
}

.footer-disclaimer {
  font-size: 11.5px;
  line-height: 2.1;
  letter-spacing: 0.03em;
  color: rgba(231, 222, 205, 0.38);
}

.footer-bottom {
  padding: 26px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-en);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: rgba(231, 222, 205, 0.28);
}

/* --- Scroll animation --- */
.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.practice-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
.practice-card.fade-up:nth-child(3) { transition-delay: 0.2s; }
.practice-card.fade-up:nth-child(4) { transition-delay: 0.1s; }
.practice-card.fade-up:nth-child(5) { transition-delay: 0.2s; }
.practice-card.fade-up:nth-child(6) { transition-delay: 0.3s; }

.approach-step.fade-up:nth-child(2) { transition-delay: 0.12s; }
.approach-step.fade-up:nth-child(3) { transition-delay: 0.24s; }
.approach-step.fade-up:nth-child(4) { transition-delay: 0.36s; }

.archon-stat.fade-up:nth-child(2) { transition-delay: 0.12s; }
.archon-stat.fade-up:nth-child(3) { transition-delay: 0.24s; }
.archon-stat.fade-up:nth-child(4) { transition-delay: 0.36s; }

.phil-value.fade-up:nth-child(2) { transition-delay: 0.12s; }
.phil-value.fade-up:nth-child(3) { transition-delay: 0.24s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .phil-grid,
  .archon-grid,
  .firm-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

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

  .hero-content {
    padding: 120px 64px 80px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 380px;
    height: 100vh;
    background: var(--paper);
    z-index: 1000;
    transition: right 0.4s ease;
    padding: 104px 44px 44px;
    box-shadow: -4px 0 30px rgba(19, 19, 18, 0.15);
  }

  .nav.is-open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    padding: 17px 0;
    font-size: 13px;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link--contact {
    margin-left: 0;
    margin-top: 28px;
    text-align: center;
    border: 1px solid var(--ink);
  }

  .section {
    padding: 92px 0;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .hero-frame {
    inset: 14px;
  }

  .hero-content {
    padding: 130px 36px 90px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-eyebrow {
    letter-spacing: 0.28em;
    gap: 14px;
  }

  .hero-eyebrow::before {
    width: 32px;
  }

  .hero-scroll {
    display: none;
  }

  .practice-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .phil-value {
    grid-template-columns: 48px 1fr;
  }

  .phil-value > p,
  .phil-value-desc {
    grid-column: 2 / 3;
  }

  .archon-stats {
    grid-template-columns: 1fr 1fr;
  }

  .archon-stat {
    padding: 32px 18px 28px;
  }

  .archon-stat-num {
    font-size: 34px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 31px;
  }

  .hero-btn {
    padding: 15px 32px;
    letter-spacing: 0.2em;
  }

  .archon-stats {
    grid-template-columns: 1fr;
  }

  .archon-stat:nth-child(odd) {
    border-right: none;
  }

  .archon-stat:not(:last-child) {
    border-bottom: 1px solid rgba(154, 59, 73, 0.25);
  }
}
