/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(160deg, #001a52 0%, var(--blue, #003087) 100%);
  color: #fff;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.page-hero__en {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.page-hero__en::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero__lead {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb__list li + li::before {
  content: '/';
  margin-right: 8px;
}

.breadcrumb__list a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.breadcrumb__list a:hover { color: #fff; }

/* ===== Works Photo Grid ===== */
.works-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.works-photo-card {
  position: relative;
  aspect-ratio: 16/9;
  background-color: var(--blue, #003087);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.works-photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,20,70,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
}

.works-photo-card__title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .works-photo-grid { grid-template-columns: 1fr; }
}

/* ===== Works Table ===== */
.works-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border, #e0e0e0);
  border-left: 1px solid var(--border, #e0e0e0);
}

.works-table__item {
  padding: 18px 24px;
  font-size: 0.88rem;
  border-right: 1px solid var(--border, #e0e0e0);
  border-bottom: 1px solid var(--border, #e0e0e0);
  transition: background 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.works-table__item::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue, #003087);
  flex-shrink: 0;
}

.works-table__item:hover {
  background: var(--blue-light, #e8eef8);
  color: var(--blue, #003087);
}

/* ===== Clients Grid ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.client-item {
  padding: 20px 24px;
  border: 1px solid var(--border, #e0e0e0);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text, #111);
  transition: border-color 0.3s, color 0.3s;
}

.client-item:hover {
  border-color: var(--blue, #003087);
  color: var(--blue, #003087);
}

/* ===== Section title note ===== */
.section__title-note {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray, #888);
}

/* ===== Current nav ===== */
.nav__list .is-current {
  color: #fff;
  font-weight: 700;
}

/* ===== Company Table ===== */
.company-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--border, #e0e0e0);
}

.company-table tr {
  border-bottom: 1px solid var(--border, #e0e0e0);
}

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

.company-table th {
  width: 160px;
  color: var(--blue, #003087);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding-right: 32px;
  white-space: nowrap;
}

.company-table td a {
  color: var(--blue, #003087);
}

.company-table__note {
  font-size: 0.8rem;
  color: var(--gray, #888);
}

/* ===== Map ===== */
.map-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
}

.map-wrap iframe {
  display: block;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.access-info__item {
  font-size: 0.88rem;
  display: flex;
  gap: 24px;
}

.access-info__item span {
  color: var(--blue, #003087);
  font-weight: 700;
  white-space: nowrap;
  min-width: 60px;
}

@media (max-width: 600px) {
  .company-table th { width: 100px; font-size: 0.82rem; }
  .company-table th, .company-table td { padding: 16px 0; }
  .access-info__item { flex-direction: column; gap: 4px; }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .works-table { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
}

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