/* ============================================================
   SIX EAST — 合肥六挺东网络科技有限公司
   East-meets-tech • Six-pillar structure • Directional
   ============================================================ */

/* --------------------------------------------------------
   CUSTOM PROPERTIES
   -------------------------------------------------------- */
:root {
  --crimson: #DC2626;
  --crimson-dark: #991B1B;
  --crimson-light: #FCA5A5;
  --charcoal: #1F2937;
  --charcoal-light: #374151;
  --warm-gray: #F3EFE6;
  --gold: #D97706;
  --gold-light: #FDE68A;
  --white: #FAFAFA;
  --steel: #4B5563;
  --steel-light: #9CA3AF;
  --steel-dark: #1F2937;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
  --max-width: 1200px;
  --hex-size: 180px;
}

/* --------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--crimson);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover,
a:focus-visible {
  color: var(--crimson-dark);
  text-decoration: underline;
}
a:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
}

ul {
  list-style: none;
}

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

/* --------------------------------------------------------
   SKIP LINK
   -------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  background: var(--crimson);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-bottom: 3px solid var(--crimson);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.logo:hover,
.logo:focus-visible {
  color: var(--white);
  text-decoration: none;
}
.logo:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 4px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .en {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.logo-text .cn {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

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

.nav-links a {
  color: var(--steel-light);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current] {
  color: var(--white);
  text-decoration: none;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------
   HERO — Typographic + Diagonal Band
   -------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--crimson);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gold);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  color: var(--crimson);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--steel-light);
  max-width: 36ch;
}

.hero-geometric {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.hero-hex-cluster {
  position: relative;
  width: 300px;
  height: 300px;
}

.hero-hex {
  position: absolute;
  width: 120px;
  height: 138px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
  transform: scale(0.6);
  animation: hexAppear 0.6s ease forwards;
}

.hero-hex:nth-child(1) { background: var(--crimson); top: 0; left: 90px; animation-delay: 0.1s; }
.hero-hex:nth-child(2) { background: var(--gold); top: 104px; left: 0; animation-delay: 0.2s; }
.hero-hex:nth-child(3) { background: var(--steel); top: 104px; left: 180px; animation-delay: 0.3s; }
.hero-hex:nth-child(4) { background: var(--crimson-dark); top: 208px; left: 30px; animation-delay: 0.4s; }
.hero-hex:nth-child(5) { background: var(--charcoal-light); top: 208px; left: 120px; animation-delay: 0.5s; }
.hero-hex:nth-child(6) { background: var(--crimson); top: 104px; left: 60px; width: 60px; height: 69px; animation-delay: 0.6s; }
.hero-hex:nth-child(7) { background: var(--gold); top: 130px; left: 150px; width: 60px; height: 69px; animation-delay: 0.7s; }

@keyframes hexAppear {
  to { opacity: 1; transform: scale(1); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--steel-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: bounce 2s ease infinite;
}

.hero-scroll-indicator .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --------------------------------------------------------
   DIAGONAL SECTION DIVIDER
   -------------------------------------------------------- */
.section-diagonal {
  position: relative;
  padding: 100px 0;
}

.section-diagonal::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: inherit;
  transform: skewY(-2.5deg);
  z-index: 1;
}

.section-diagonal .section-inner {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------
   SIX PILLARS — Hexagonal Honeycomb Grid
   -------------------------------------------------------- */
.pillars {
  background: var(--warm-gray);
  padding: 100px 0;
}

.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars-header .section-number {
  font-size: clamp(4rem, 10vw, 8rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--crimson);
  line-height: 0.8;
  opacity: 0.15;
}

.pillars-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-top: -24px;
}

.pillars-header .subtitle {
  color: var(--steel);
  font-size: 1.05rem;
  margin-top: 8px;
}

.pillars-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
}

/* Offset rows for honeycomb effect */
.pillars-grid .pillar-card:nth-child(odd) {
  transform: translateY(30px);
}

.pillar-card {
  position: relative;
  background: var(--white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  padding: 64px 24px 48px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 4px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 2px solid var(--warm-gray);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.pillars-grid .pillar-card:nth-child(odd):hover {
  transform: translateY(22px) scale(1.03);
}

.pillar-card:hover::before {
  border-color: var(--crimson);
}

.pillar-card .pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.pillar-card .pillar-number {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--crimson);
  opacity: 0.2;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.pillar-card h3 {
  font-size: 1rem;
  color: var(--charcoal);
  margin: 8px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.pillar-card p {
  font-size: 0.8rem;
  color: var(--steel);
  line-height: 1.5;
  max-width: 22ch;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------
   ABOUT — Manifesto / Geometric Block
   -------------------------------------------------------- */
.about {
  background: var(--white);
  padding: 100px 0;
  position: relative;
}

.about-geometric-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--warm-gray);
  clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0% 50%);
  z-index: 0;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-brand h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.1;
}

.about-brand h2 .em {
  color: var(--crimson);
}

.about-brand .cn-name {
  font-size: 1.1rem;
  color: var(--steel);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

.about-brand .tagline {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-top: 16px;
  padding-left: 16px;
  border-left: 4px solid var(--crimson);
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-block {
  padding: 24px;
  background: var(--warm-gray);
  position: relative;
}

.detail-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--crimson);
}

.detail-block h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
  margin-bottom: 4px;
}

.detail-block p {
  color: var(--charcoal);
  font-size: 0.95rem;
}

/* --------------------------------------------------------
   EXPERTISE — Diagonal Band Sections
   -------------------------------------------------------- */
.expertise-band {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.expertise-band.one {
  background: var(--charcoal);
  color: var(--white);
}

.expertise-band.two {
  background: var(--crimson);
  color: var(--white);
}

.expertise-band.three {
  background: var(--warm-gray);
  color: var(--charcoal);
}

.expertise-band .band-cut {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

.expertise-band.one .band-cut {
  background: var(--white);
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
}

.expertise-band.two .band-cut {
  background: var(--charcoal);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.expertise-band.three .band-cut {
  background: var(--crimson);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.band-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 8px;
}

.expertise-band.one .band-label { color: var(--gold); }
.expertise-band.two .band-label { color: var(--gold-light); }
.expertise-band.three .band-label { color: var(--crimson); }

.band-inner h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.band-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

.band-counter {
  font-size: clamp(4rem, 8vw, 7rem);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.85;
  text-align: right;
}

.expertise-band.one .band-counter { color: var(--crimson); opacity: 0.6; }
.expertise-band.two .band-counter { color: var(--charcoal); opacity: 0.5; }
.expertise-band.three .band-counter { color: var(--crimson); opacity: 0.35; }

.band-counter .counter-suffix {
  font-size: 1.5rem;
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------
   CONTACT
   -------------------------------------------------------- */
.contact {
  background: var(--charcoal);
  color: var(--white);
  padding: 100px 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--crimson);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.contact-info .section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
}

.contact-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-meta-item .meta-icon {
  width: 36px;
  height: 36px;
  background: var(--crimson);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-meta-item .meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-light);
}

.contact-meta-item .meta-value {
  color: var(--white);
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: var(--white);
  color: var(--charcoal);
  padding: 40px;
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--warm-gray);
  pointer-events: none;
  transform: translate(8px, 8px);
  z-index: -1;
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-family: var(--font-display);
  margin-bottom: 24px;
  color: var(--charcoal);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--warm-gray);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--crimson);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--crimson);
  color: var(--white);
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font-sans);
}

.btn-submit:hover,
.btn-submit:focus-visible {
  background: var(--crimson-dark);
  outline: none;
}

.btn-submit:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 2px;
}

.form-feedback {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 24px;
}

.form-feedback.success {
  color: #059669;
}

.form-feedback.error {
  color: var(--crimson);
}

/* --------------------------------------------------------
   FOOTER
   -------------------------------------------------------- */
.site-footer {
  background: #111827;
  color: var(--steel-light);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-nav h4,
.footer-legal h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-nav a,
.footer-legal a {
  display: block;
  color: var(--steel-light);
  font-size: 0.85rem;
  padding: 4px 0;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--crimson-light);
  text-decoration: none;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid var(--charcoal-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom .icp {
  color: var(--steel-light);
}

/* --------------------------------------------------------
   LEGAL PAGES
   -------------------------------------------------------- */
.legal-page {
  background: var(--white);
}

.legal-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0;
  position: relative;
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--crimson);
}

.legal-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.legal-hero .section-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--crimson);
  opacity: 0.25;
  line-height: 0.8;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  margin-top: -12px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--crimson);
  margin: 40px 0 12px;
  font-family: var(--font-display);
}

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

.legal-content h3 {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin: 24px 0 8px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 16px 24px;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--charcoal);
  font-weight: 700;
}

.legal-content a {
  color: var(--crimson);
  text-decoration: underline;
  font-weight: 500;
}

.legal-content .legal-company-block {
  background: var(--warm-gray);
  padding: 24px 32px;
  margin: 32px 0;
  border-left: 4px solid var(--crimson);
}

.legal-content .legal-company-block h3 {
  margin-top: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel);
}

.legal-content .legal-company-block p {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.legal-content .last-updated {
  font-size: 0.85rem;
  color: var(--steel);
  margin-bottom: 32px;
  font-style: italic;
}

/* --------------------------------------------------------
   SCROLL ANIMATIONS
   -------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--charcoal);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-bottom: 3px solid var(--crimson);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-hex-cluster {
    width: 220px;
    height: 220px;
  }
  .hero-hex {
    width: 90px;
    height: 104px;
  }
  .hero-hex:nth-child(1) { top: 0; left: 65px; }
  .hero-hex:nth-child(2) { top: 78px; left: 0; }
  .hero-hex:nth-child(3) { top: 78px; left: 130px; }
  .hero-hex:nth-child(4) { top: 156px; left: 20px; }
  .hero-hex:nth-child(5) { top: 156px; left: 85px; }
  .hero-hex:nth-child(6) { top: 78px; left: 42px; width: 45px; height: 52px; }
  .hero-hex:nth-child(7) { top: 98px; left: 108px; width: 45px; height: 52px; }

  .hero::before {
    width: 35%;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 420px;
  }
  .pillars-grid .pillar-card:nth-child(odd) {
    transform: none;
  }
  .pillars-grid .pillar-card:nth-child(even) {
    transform: translateY(30px);
  }
  .pillars-grid .pillar-card:nth-child(odd):hover {
    transform: translateY(-8px) scale(1.03);
  }
  .pillars-grid .pillar-card:nth-child(even):hover {
    transform: translateY(22px) scale(1.03);
  }
  .pillar-card {
    min-height: 240px;
    padding: 48px 16px 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .band-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .band-counter {
    text-align: left;
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact::before {
    width: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 220px;
    gap: 8px;
  }
  .pillars-grid .pillar-card:nth-child(even) {
    transform: none;
  }
  .pillars-grid .pillar-card:nth-child(even):hover {
    transform: translateY(-8px) scale(1.03);
  }

  .hero-hex-cluster {
    width: 180px;
    height: 180px;
  }
  .hero-hex {
    width: 70px;
    height: 81px;
  }
  .hero-hex:nth-child(1) { top: 0; left: 55px; }
  .hero-hex:nth-child(2) { top: 61px; left: 0; }
  .hero-hex:nth-child(3) { top: 61px; left: 110px; }
  .hero-hex:nth-child(4) { top: 122px; left: 18px; }
  .hero-hex:nth-child(5) { top: 122px; left: 72px; }
  .hero-hex:nth-child(6) { top: 61px; left: 35px; width: 35px; height: 40px; }
  .hero-hex:nth-child(7) { top: 76px; left: 90px; width: 35px; height: 40px; }
}
