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

:root {
  --color-primary: #1a1a2e;
  --color-secondary: #24243e;
  --color-accent: #8b7355;
  --color-accent-hover: #a08662;
  --color-accent-light: #b8a88a;
  --color-accent-pale: rgba(139,115,85,0.08);
  --color-text: #262626;
  --color-text-light: #555555;
  --color-text-muted: #888;
  --color-bg: #ffffff;
  --color-bg-warm: #f6f4f0;
  --color-bg-dark: #1a1a2e;
  --color-border: #ddd8d0;
  --color-border-light: #eae6e0;
  --font-ja: 'Noto Serif JP', '游明朝', 'Yu Mincho', 'ヒラギノ明朝 ProN', serif;
  --font-en: 'Cormorant Garamond', serif;
  --section-padding: 120px 0;
  --container-width: 1100px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ========================================
   HEADER / NAVIGATION
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-img {
  height: 38px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-main {
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.15em;
}

.logo-sub {
  font-size: 0.62rem;
  color: var(--color-accent-light);
  letter-spacing: 0.06em;
  font-weight: 400;
}

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

.nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s, left 0.3s;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
  left: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0d1a;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s ease-out;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,26,0.55) 0%, rgba(13,13,26,0.25) 40%, rgba(13,13,26,0.7) 100%),
    linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.5) 40%, rgba(26,26,46,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.hero-label {
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: var(--color-accent-light);
  letter-spacing: 0.35em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.3s var(--ease-out-expo) forwards;
}

.hero-label::before {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--color-accent);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s 0.5s var(--ease-out-expo) forwards;
}

.hero-title strong {
  font-weight: 600;
  position: relative;
}

.hero-title strong::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.4;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 2.1;
  max-width: 560px;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s 0.7s var(--ease-out-expo) forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s 0.9s var(--ease-out-expo) forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-ja);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  border: 1px solid var(--color-accent);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary::before {
  background: var(--color-accent-hover);
}

.btn-primary:hover {
  border-color: var(--color-accent-hover);
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.9s 1.5s var(--ease-out-expo) forwards;
}

.scroll-indicator span {
  font-family: var(--font-en);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Slide pagination dots */
.hero-pagination {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: heroFadeUp 0.9s 1.5s var(--ease-out-expo) forwards;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s;
  background: transparent;
  padding: 0;
}

.hero-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.2);
}

.hero-dot:hover {
  border-color: var(--color-accent-light);
}

/* ========================================
   SECTION COMMON
======================================== */
.section {
  padding: var(--section-padding);
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.78rem;
  color: var(--color-accent);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 35px;
  height: 1px;
  background: var(--color-accent);
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.55;
  margin-bottom: 20px;
  color: var(--color-text);
}

.section-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 2.1;
  max-width: 640px;
  font-weight: 400;
}

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

.divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 24px 0;
}

.section-dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.section-dark .section-title {
  color: #fff;
}

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

.section-warm {
  background: var(--color-bg-warm);
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 0.9rem;
  line-height: 2.3;
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--color-border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-en);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-ja);
  font-size: 0.82rem;
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 10px;
  letter-spacing: 0.1em;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(139, 115, 85, 0.25);
  pointer-events: none;
  z-index: 1;
}

/* ========================================
   BUSINESS SECTION
======================================== */
.business-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.business-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.business-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.business-card:hover {
  border-color: var(--color-border);
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.07);
}

.business-card:hover::after {
  transform: scaleX(1);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.business-card:hover .card-image img {
  transform: scale(1.07);
}

.card-body {
  padding: 36px 32px 40px;
}

.card-number {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--color-accent);
  letter-spacing: 0.25em;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.card-title-en {
  font-family: var(--font-en);
  font-size: 0.78rem;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  font-style: italic;
}

.card-text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 2.1;
  font-weight: 400;
}

/* Strategic Partners */
.partners-box {
  background: var(--color-bg-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

.partners-image {
  overflow: hidden;
  position: relative;
}

.partners-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.7s var(--ease-out-expo);
}

.partners-image:hover img {
  transform: scale(1.04);
}

.partners-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(26,26,46,0.4) 100%);
}

.partners-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners-text h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.partners-text .card-title-en {
  margin-bottom: 24px;
}

.partners-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 2.1;
  font-weight: 400;
}

.partners-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.partner-stat {
  border: 1px solid rgba(139, 115, 85, 0.2);
  padding: 22px 20px;
  text-align: center;
  transition: border-color 0.3s;
}

.partner-stat:hover {
  border-color: rgba(139, 115, 85, 0.5);
}

.partner-stat-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--color-accent-light);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.partner-stat-value {
  font-family: var(--font-en);
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ========================================
   VALUES SECTION
======================================== */
.section-values {
  position: relative;
  overflow: hidden;
}

.values-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.values-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.3);
}

.section-values .container {
  position: relative;
  z-index: 1;
}

.values-list {
  display: flex;
  flex-direction: column;
}

.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 50px;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
  transition: background 0.3s;
}

.value-item:first-child {
  padding-top: 0;
}

.value-item:last-child {
  border-bottom: none;
}

.value-number {
  font-family: var(--font-en);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  line-height: 1;
}

.value-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}

.value-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 2.2;
  font-weight: 400;
}

/* ========================================
   COMPANY SECTION
======================================== */
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

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

.company-table th,
.company-table td {
  padding: 22px 0;
  font-size: 0.86rem;
  text-align: left;
  vertical-align: top;
  font-weight: 400;
  line-height: 1.8;
}

.company-table th {
  width: 130px;
  color: var(--color-text);
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.86rem;
}

.company-table td {
  color: var(--color-text-light);
}

.company-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.company-office-image {
  overflow: hidden;
  position: relative;
}

.company-office-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.company-office-image:hover img {
  transform: scale(1.03);
}

.company-location {
  background: var(--color-bg-dark);
  padding: 36px;
}

.company-location-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--color-accent);
  letter-spacing: 0.3em;
  margin-bottom: 14px;
}

.company-location-name {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.company-location-addr {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

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

.strength-item {
  border: 1px solid var(--color-border-light);
  padding: 22px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  transition: all 0.4s var(--ease-out-expo);
}

.strength-item:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-pale);
}

.network-section {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid var(--color-border-light);
}

.network-section h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.network-section p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 2.1;
  font-weight: 400;
  max-width: 800px;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: start;
}

.contact-info-icon {
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-family: var(--font-en);
}

.contact-info-value {
  font-size: 0.88rem;
  color: var(--color-text);
  font-weight: 400;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-required {
  font-size: 0.7rem;
  color: #a07060;
  margin-left: 6px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-ja);
  font-size: 0.86rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139,115,85,0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  margin-top: 20px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: #0f0f1e;
  color: rgba(255,255,255,0.5);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-brand p {
  font-size: 0.82rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.9;
  font-weight: 400;
}

.footer-heading {
  font-size: 0.75rem;
  color: var(--color-accent-light);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-en);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s, padding-left 0.3s;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

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

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  font-family: var(--font-en);
}

.footer-policy {
  display: flex;
  gap: 24px;
}

.footer-policy a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer-policy a:hover {
  color: rgba(255,255,255,0.55);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-pagination {
    display: none;
  }

  .about-grid,
  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .business-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .partners-box {
    grid-template-columns: 1fr;
  }

  .partners-image img {
    min-height: 250px;
    max-height: 300px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .container {
    padding: 0 24px;
  }

  .header-inner {
    padding: 0 24px;
    height: 64px;
  }

  .logo-img {
    height: 30px;
  }

  .logo-main {
    font-size: 1.1rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    border-top: 1px solid rgba(139, 115, 85, 0.1);
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

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

  .scroll-indicator {
    display: none;
  }

  .section-title {
    font-size: 1.5rem;
  }

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .partners-content {
    padding: 36px 24px;
  }

  .partners-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .value-item {
    grid-template-columns: 50px 1fr;
    gap: 24px;
    padding: 30px 0;
  }

  .value-number {
    font-size: 1.8rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
