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

:root {
  /* Primary: Navy */
  --primary-900: #0a0f1f;
  --primary-800: #0f1a33;
  --primary-700: #162044;
  --primary-600: #1e3a5f;
  --primary-500: #1e40af;
  --primary-400: #3b6fd4;
  --primary-300: #6b9ce8;
  --primary-100: #dbeafe;
  --primary-50: #eff6ff;
  /* Accent: Silver / Light Navy */
  --gold-500: #475569;
  --gold-400: #64748b;
  --gold-300: #94a3b8;
  --gold-200: #cbd5e1;
  --gold-100: #f1f5f9;
  /* Neutrals */
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

ul {
  list-style: none;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.logo-text {
  height: 18px;
  width: auto;
}

/* Show white logos by default (dark header bg), dark logos when scrolled */
.logo .logo-dark {
  display: none;
}

.logo .logo-white {
  display: block;
}

.header.scrolled .logo .logo-dark {
  display: block;
}

.header.scrolled .logo .logo-white {
  display: none;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.nav-link:hover {
  color: var(--gold-300);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled .hamburger span {
  background: var(--gray-900);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-500);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--primary-800);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 50%, var(--primary-500) 100%);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10, 15, 31, 0.7) 0%, rgba(22, 32, 68, 0.5) 50%, rgba(30, 64, 175, 0.4) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.9;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-gray {
  background: var(--gray-50);
}

.section-blue {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 100%);
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-500);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

/* ===== About ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-lead {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--primary-50);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--primary-100);
}

.stat-card:last-child {
  grid-column: 1 / -1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-500);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-icon {
  color: var(--primary-500);
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--gold-300);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-500);
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ===== Company ===== */
.company-table-wrapper {
  max-width: 800px;
  margin: 0 auto 48px;
}

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

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

.company-table th,
.company-table td {
  padding: 20px 16px;
  text-align: left;
  font-size: 0.9375rem;
  vertical-align: top;
}

.company-table th {
  width: 160px;
  color: var(--gray-500);
  font-weight: 500;
  white-space: nowrap;
}

.company-table td {
  color: var(--gray-900);
}

.company-list {
  list-style: none;
}

.company-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
}

.company-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background: var(--gold-400);
  border-radius: 50%;
}

.map-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ===== Contact ===== */
.section-dark {
  background: var(--gray-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-side {
  padding-top: 8px;
}

.contact-lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.9;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

.contact-detail-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.required {
  color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: var(--font);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--gray-50);
  color: var(--gray-900);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
  background: var(--white);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary-500);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.btn-submit:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 16px;
  padding: 0;
  font-size: 0.875rem;
  text-align: center;
  border-radius: 8px;
  transition: var(--transition);
}

.form-status.success {
  padding: 12px;
  background: #f0fff4;
  color: #276749;
  border: 1px solid #c6f6d5;
}

.form-status.error {
  padding: 12px;
  background: #fff5f5;
  color: #9b2c2c;
  border: 1px solid #fed7d7;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-900);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-company {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== Subpage ===== */
.subpage .header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.subpage .logo .logo-dark {
  display: block;
}

.subpage .logo .logo-white {
  display: none;
}

.subpage .nav-link {
  color: var(--gray-700);
}

.subpage .hamburger span {
  background: var(--gray-900);
}

/* Page Header */
/* ===== Sub-page Header ===== */
.page-header {
  position: relative;
  padding: 140px 0 64px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 50%, var(--primary-500) 100%);
}

.page-header-img {
  background: none;
}

.page-header-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-header-img::before {
  z-index: 1;
  background: linear-gradient(135deg, rgba(10, 15, 31, 0.85) 0%, rgba(22, 32, 68, 0.7) 50%, rgba(30, 64, 175, 0.6) 100%);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59, 111, 212, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(100, 116, 139, 0.08) 0%, transparent 50%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold-300);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.9);
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ===== Service Detail (sub-page) ===== */
.service-detail {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.service-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.service-detail-desc {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 2;
  margin-bottom: 24px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  list-style: none;
}

.service-features li {
  position: relative;
  padding: 16px 16px 16px 28px;
  background: var(--primary-50);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--gray-700);
  border: 1px solid var(--primary-100);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 22px;
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
}

/* ===== About hero image ===== */
.about-hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-hero-img img {
  width: 100%;
  display: block;
}

/* ===== About sub-page layouts ===== */
.mission-content,
.message-content {
  max-width: 780px;
  margin: 0 auto;
}

.mission-body {
  columns: 1;
}

.message-single {
  columns: 1;
}

.mission-body p,
.message-single p {
  color: var(--gray-700);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  break-inside: avoid;
}

.message-signature {
  font-weight: 500;
  margin-top: 2rem;
  break-inside: avoid;
}

@media (max-width: 768px) {
  .mission-body,
  .message-body {
    columns: 1;
  }
}

/* ===== Services page (redesigned) ===== */
.sv-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.sv-block-reverse {
  direction: rtl;
}

.sv-block-reverse > * {
  direction: ltr;
}

.sv-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-500);
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border: 1.5px solid var(--primary-500);
  border-radius: 20px;
  margin-bottom: 20px;
}

.sv-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.sv-lead {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sv-desc {
  font-size: 0.9375rem;
  color: var(--gray-600, #4b5563);
  line-height: 2;
  margin-bottom: 16px;
}

.sv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.sv-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-500);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.sv-visual {
  position: sticky;
  top: 120px;
}

.sv-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-500);
  margin-bottom: 32px;
}

.sv-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-point {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

.sv-point:last-child {
  border-bottom: none;
}

.sv-point-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--primary-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.sv-point-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sv-point-text strong {
  font-size: 0.9375rem;
  color: var(--gray-900);
  font-weight: 600;
}

.sv-point-text span {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Flow */
.flow-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.flow-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  max-width: 220px;
}

.flow-step {
  width: 48px;
  height: 48px;
  background: var(--primary-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.flow-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.flow-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 12px;
  color: var(--gray-300);
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sv-block,
  .sv-block-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .sv-visual {
    position: static;
  }

  .flow-grid {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .flow-item {
    max-width: 100%;
  }

  .sp-only {
    display: inline;
  }
}

/* ===== Contact page (white bg version) ===== */
.contact-page-lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.contact-page-text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 32px;
}

.contact-page-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-page-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.contact-page-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-500);
}

/* Access */
.access-content {
  max-width: 800px;
  margin: 0 auto;
}

.access-info {
  margin-top: 32px;
}

.access-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.access-address svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--primary-500);
}

.access-direction {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--gray-500);
  padding-left: 20px;
  border-left: 3px solid var(--gold-300);
}

/* CTA */
.cta-content {
  text-align: center;
}

.cta-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 32px;
  font-weight: 300;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    color: var(--gray-700) !important;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
  }

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

  .hero-content {
    padding: 140px 0 100px;
  }

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

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

  .company-table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
  }

  .company-table td {
    display: block;
    padding-top: 0;
  }

  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .section {
    padding: 72px 0;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-card:last-child {
    grid-column: auto;
  }
}
