/* ============================================================
   style.css — Shared Design System
   株式会社〇〇 Website
   ============================================================ */

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

:root {
  --navy:       #1a2744;
  --navy-light: #2d3f6b;
  --gold:       #b8976a;
  --cream:      #f7f5f0;
  --warm-gray:  #e8e4dc;
  --text:       #2c2c2c;
  --text-muted: #7a7060;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif JP', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 60px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,39,68,0.08);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; letter-spacing: 0.15em;
  color: var(--navy); text-decoration: none;
}

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

.hamburger { display: none; }

nav a {
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.3s; position: relative;
}

nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--navy); transition: width 0.3s;
}

nav a:hover,
nav a.active { color: var(--navy); }

nav a:hover::after,
nav a.active::after { width: 100%; }

/* ============================================================
   HERO (shared across all inner pages)
   ============================================================ */
.hero {
  height: 420px; margin-top: 72px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 0 60px 100px;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(26,39,68,0.75) 0%,
    rgba(26,39,68,0.30) 60%,
    transparent 100%);
}

.hero-content { position: relative; z-index: 1; }

.hero-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.55); display: block; margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 300;
  color: #fff; letter-spacing: 0.12em; line-height: 1.3;
}

.hero-line {
  width: 48px; height: 1px;
  background: var(--gold); margin-top: 20px;
}

/* ============================================================
   TOP PAGE HERO (full-height variant)
   ============================================================ */
.hero--full {
  height: calc(100vh - 72px);
  align-items: center;
  padding: 0 100px;
}

.hero-catch {
  font-size: clamp(30px, 4vw, 52px); font-weight: 300;
  color: #fff; letter-spacing: 0.08em; line-height: 1.5; margin-bottom: 32px;
}

.hero-catch strong { display: block; font-weight: 400; }

.hero-sub {
  font-size: 13px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em; line-height: 2; max-width: 480px; margin-bottom: 48px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 18px 100px; font-size: 11px;
  letter-spacing: 0.15em; color: var(--text-muted);
  border-bottom: 1px solid var(--warm-gray); background: #fff;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb span { margin: 0 8px; }

/* ============================================================
   SHARED TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 0.35em;
  color: var(--gold); display: block; margin-bottom: 16px;
}

.section-label--light { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 48px; border: 1px solid var(--navy);
  background: transparent; color: var(--navy);
  font-family: 'Noto Serif JP', serif;
  font-size: 12px; letter-spacing: 0.25em; text-decoration: none;
  position: relative; overflow: hidden; transition: color 0.4s; cursor: pointer;
}

.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s; z-index: 0;
}

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

.btn span,
.btn .arr { position: relative; z-index: 1; }

.btn--light {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn--light::before { background: rgba(255,255,255,0.12); }
.btn--light:hover { color: #fff; }

/* Arrow decoration used in buttons */
.arr {
  width: 24px; height: 1px;
  background: currentColor; position: relative; display: block;
}

.arr::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   TOP PAGE — INTRO SECTION
   ============================================================ */
.intro {
  padding: 120px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
  max-width: 1400px; margin: 0 auto;
}

.intro-heading {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 400;
  color: var(--navy); letter-spacing: 0.06em; line-height: 1.7; margin-bottom: 28px;
}

.intro-body { font-size: 13px; color: #555; line-height: 2.2; letter-spacing: 0.04em; }
.intro-body p + p { margin-top: 14px; }

.intro-image { position: relative; height: 480px; overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(26,39,68,0.1); pointer-events: none;
}

/* ============================================================
   TOP PAGE — ABOUT STRIP (navy background cards)
   ============================================================ */
.about-strip {
  background: var(--navy); padding: 100px;
  position: relative; overflow: hidden;
}

.about-strip::before {
  content: 'ABOUT'; position: absolute; right: -10px; top: 30px;
  font-family: 'Cormorant Garamond', serif; font-size: 180px; font-weight: 300;
  color: rgba(255,255,255,0.03); pointer-events: none; line-height: 1;
}

.about-inner { max-width: 1200px; margin: 0 auto; }

.about-header { margin-bottom: 60px; }
.about-header h2 { font-size: 20px; font-weight: 300; color: #fff; letter-spacing: 0.1em; }

.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.about-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  padding: 40px 32px; position: relative; overflow: hidden; transition: background 0.4s;
}

.about-card:hover { background: rgba(255,255,255,0.09); }

.about-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}

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

.card-bg-num {
  font-family: 'Cormorant Garamond', serif; font-size: 80px; font-weight: 300;
  color: rgba(255,255,255,0.04); position: absolute; top: 10px; right: 20px; line-height: 1;
}

.card-idx {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 20px;
}

.card-en {
  font-family: 'Cormorant Garamond', serif; font-size: 14px;
  font-style: italic; color: rgba(255,255,255,0.35);
  display: block; margin-bottom: 10px; letter-spacing: 0.08em;
}

.card-title { font-size: 15px; color: #fff; letter-spacing: 0.06em; line-height: 1.8; }

.about-detail { display: flex; justify-content: center; margin-top: 60px; }

/* ============================================================
   TOP PAGE — BANNER GRID
   ============================================================ */
.banner-grid { display: grid; grid-template-columns: 1fr 1fr; height: 360px; }

.banner-item {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 40px 48px; text-decoration: none;
}

.banner-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease;
}

.banner-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(26,39,68,0.75) 0%,
    rgba(26,39,68,0.20) 60%,
    transparent 100%);
}

.banner-item:hover img { transform: scale(1.05); }

.banner-text { position: relative; z-index: 1; }

.banner-en {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300;
  color: #fff; letter-spacing: 0.1em; display: block;
}

.banner-ja {
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6); margin-top: 6px; display: block;
}

.banner-line { width: 32px; height: 1px; background: var(--gold); margin-top: 12px; }

/* ============================================================
   TOP PAGE — GALLERY PREVIEW
   ============================================================ */
.gallery-preview { padding: 100px; max-width: 1400px; margin: 0 auto; }

.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 22px; font-weight: 400; color: var(--navy); letter-spacing: 0.08em; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}

.gallery-item img {
  width: 100%;
}

.gallery-more {
  text-align: center; 
  margin-top: 1.5rem;
}

.page-intro-center {
  padding: 80px 100px 20px;
  text-align: center;
}
.page-intro-center p {
  font-size: 14px; color: #555; letter-spacing: 0.06em; line-height: 2;
}

/* ============================================================
   CARD GRID
   ============================================================ */
.cards-section {
  padding: 3rem 4rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.work-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,39,68,0.10);
}

/* Image area */
.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-img img {
  width: 100%; 
  height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}

.work-card:hover .card-img img { transform: scale(1.06); }

.card-img-overlay {
  position: absolute; inset: 0;
  background: rgba(26,39,68,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}

.work-card:hover .card-img-overlay { background: rgba(26,39,68,0.45); }

.overlay-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.4s, transform 0.4s;
  position: relative;
}

.work-card:hover .overlay-icon { opacity: 1; transform: scale(1); }

.overlay-icon::before,
.overlay-icon::after {
  content: ''; position: absolute;
  background: #fff;
}
.overlay-icon::before { width: 14px; height: 1px; }
.overlay-icon::after  { width: 1px; height: 14px; }

/* Card body */
.card-body {
  padding: 10px;
  border-top: 1px solid var(--warm-gray);
}

.card-cat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.35em;
  color: var(--gold); display: block; margin-bottom: 6px;
}

.card-title-text {
  font-size: 15px; font-weight: 400;
  color: var(--navy); letter-spacing: 0.06em; line-height: 1.5;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.03em; line-height: 1.9;
}

/* ============================================================
   MODAL OVERLAY
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,12,22,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.open {
  opacity: 1; pointer-events: all;
}

.modal {
  width: 88vw; max-width: 960px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal-overlay.open .modal { transform: translateY(0); }

/* Close */
.modal-close {
  position: fixed; top: 24px; right: 32px;
  width: 44px; height: 44px;
  cursor: pointer; background: none; border: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 1002;
}

.modal-close::before,
.modal-close::after {
  content: ''; position: absolute;
  width: 22px; height: 1px; background: rgba(255,255,255,0.6);
  transition: background 0.3s;
}
.modal-close::before { transform: rotate(45deg); }
.modal-close::after  { transform: rotate(-45deg); }
.modal-close:hover::before,
.modal-close:hover::after { background: #fff; }

/* ============================================================
   MAIN CAROUSEL
   ============================================================ */
.carousel-wrap {
  position: relative;
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.carousel-slide {
  flex-shrink: 0; width: 100%; height: 100%;
}

.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Arrows */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(0,0,0,0.25); border: none; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.carousel-btn:hover { background: rgba(0,0,0,0.55); }
.carousel-btn--prev { left: 0; }
.carousel-btn--next { right: 0; }

.carousel-btn svg {
  width: 22px; height: 22px;
  stroke: rgba(255,255,255,0.75); fill: none;
  stroke-width: 1.5; transition: stroke 0.3s;
}
.carousel-btn:hover svg { stroke: #fff; }

/* Dots */
.carousel-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: background 0.3s, transform 0.3s;
  border: none; padding: 0;
}
.dot.active { background: #fff; transform: scale(1.35); }

/* ============================================================
   THUMBNAIL STRIP
   ============================================================ */
.thumb-strip {
  display: flex; gap: 6px;
  margin-top: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.thumb-strip::-webkit-scrollbar { display: none; }

.thumb {
  flex-shrink: 0;
  width: calc(25% - 5px); aspect-ratio: 4/3;
  overflow: hidden; cursor: pointer;
  position: relative;
  opacity: 0.45; transition: opacity 0.3s;
}

.thumb.active { opacity: 1; }
.thumb:hover  { opacity: 0.8; }

.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.thumb.active::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid var(--gold);
  pointer-events: none;
}

/* ============================================================
   MODAL INFO
   ============================================================ */
.modal-info {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0 0;
}

.modal-cat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.35em; color: var(--gold);
}

.modal-title-label {
  font-size: 14px; color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em; font-weight: 300;
}

/* ============================================================
   TOP PAGE — NEWS
   ============================================================ */
.news-section { background: #fff; padding: 100px; }
.news-inner { max-width: 900px; margin: 0 auto; }

.news-list { border-top: 1px solid var(--warm-gray); }

.news-item {
  display: grid; grid-template-columns: 140px auto 1fr;
  gap: 24px; align-items: start;
  padding: 24px 0; border-bottom: 1px solid var(--warm-gray);
  text-decoration: none; color: var(--text); transition: color 0.3s;
}

.news-item:hover { color: var(--navy); }

.news-date {
  font-family: 'Cormorant Garamond', serif; font-size: 13px;
  letter-spacing: 0.1em; color: var(--text-muted); padding-top: 2px;
}

.news-cat {
  font-size: 10px; letter-spacing: 0.15em; color: var(--gold);
  border: 1px solid var(--gold); padding: 3px 10px; display: inline-block;
}

.news-title { font-size: 13px; letter-spacing: 0.04em; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE — INTRO
   ============================================================ */
.page-intro { padding: 2rem 100px; max-width: 1200px; margin: 0 auto; }

.page-intro-heading {
  font-size: clamp(24px, 3vw, 36px); font-weight: 300;
  color: var(--navy); letter-spacing: 0.1em; line-height: 1.4; margin-bottom: 16px;
}

.intro-heading-lg {
  font-size: clamp(22px, 3vw, 32px); font-weight: 400;
  color: var(--navy); letter-spacing: 0.06em; line-height: 1.6; margin-bottom: 36px;
}

.intro-heading-lg em {
  font-style: normal; border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}

.page-intro-body { font-size: 14px; color: #555; line-height: 2; max-width: 680px; letter-spacing: 0.03em; }
.page-intro-body p + p { margin-top: 16px; }

.page-image-wrap { padding: 0 100px 100px; max-width: 1200px; margin: 0 auto; }

.page-image-inner { position: relative; height: 420px; overflow: hidden; }
.page-image-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-image-inner::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(26,39,68,0.12); pointer-events: none;
}

.image-caption {
  position: absolute; bottom: 28px; right: 32px;
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 0.25em; color: rgba(255,255,255,0.7); font-style: italic;
}

/* ============================================================
   ABOUT PAGE — STRENGTHS
   ============================================================ */
.strengths {
  background: var(--navy); padding: 100px;
  position: relative; overflow: hidden;
}

.strengths::before {
  content: 'STRENGTH'; position: absolute; top: 40px; right: -20px;
  font-family: 'Cormorant Garamond', serif; font-size: 160px; font-weight: 300;
  color: rgba(255,255,255,0.03); pointer-events: none; user-select: none; line-height: 1;
}

.strengths-header { max-width: 1000px; margin: 0 auto 72px; }
.strengths-header h2 { font-size: 22px; font-weight: 300; color: #fff; letter-spacing: 0.1em; }
.strengths-header h2 strong { font-weight: 500; color: var(--gold); }

.strength-item {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.strength-item:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.08); }

.strength-item.reverse { direction: rtl; }
.strength-item.reverse > * { direction: ltr; }

.strength-num {
  font-family: 'Cormorant Garamond', serif; font-size: 80px; font-weight: 300;
  color: rgba(255,255,255,0.06); line-height: 1; display: block;
  margin-bottom: -20px; letter-spacing: -0.02em;
}

.strength-idx {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 18px;
}

.strength-title {
  font-size: 20px; font-weight: 400; color: #fff;
  letter-spacing: 0.06em; line-height: 1.6; margin-bottom: 20px;
}

.strength-body { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 2; letter-spacing: 0.03em; }

.strength-image { height: 280px; overflow: hidden; position: relative; }
.strength-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.strength-image:hover img { transform: scale(1.04); }
.strength-image::after {
  content: attr(data-label); position: absolute; bottom: 16px; left: 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.5); font-style: italic;
}

/* ============================================================
   WORKS PAGE — SERVICE ITEMS
   ============================================================ */
.service-item {
  max-width: 1200px; margin: 0 auto;
  padding: 0 100px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }

.service-image { height: 360px; overflow: hidden; position: relative; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
.service-image:hover img { transform: scale(1.04); }
.service-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(26,39,68,0.1); pointer-events: none;
}

.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300;
  color: var(--navy); opacity: 0.07; line-height: 1; display: block; margin-bottom: -16px;
}

.service-idx {
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 20px;
}

.service-title { font-size: 22px; font-weight: 400; color: var(--navy); letter-spacing: 0.06em; margin-bottom: 16px; }
.service-body { font-size: 13px; color: #555; line-height: 2.1; letter-spacing: 0.04em; margin-bottom: 28px; }

.service-list { list-style: none; }
.service-list li {
  font-size: 12px; letter-spacing: 0.06em; color: var(--text-muted);
  padding: 8px 0; border-bottom: 1px solid var(--warm-gray);
  display: flex; align-items: center; gap: 12px;
}
.service-list li::before {
  content: ''; display: block; width: 16px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

.section-divider { height: 1px; background: var(--warm-gray); max-width: 1000px; margin: 0 auto 100px; }

/* ============================================================
   GALLERY PAGE — FILTER BAR
   ============================================================ */
/* .filter-bar { display: flex; justify-content: center; gap: 4px; margin-bottom: 60px; padding: 0 100px; }

.filter-btn {
  padding: 10px 28px; border: 1px solid var(--warm-gray); background: transparent;
  font-family: 'Noto Serif JP', serif; font-size: 12px; letter-spacing: 0.15em;
  color: var(--text-muted); cursor: pointer; transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.gallery-section { padding: 0 80px 100px; } */

/* ============================================================
   COMPANY PAGE — TABLE
   ============================================================ */
.company-section { padding: 100px; max-width: 1100px; margin: 0 auto; }
.section-heading { font-size: 24px; font-weight: 400; color: var(--navy); letter-spacing: 0.08em; margin-bottom: 60px; }

.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--warm-gray); }
.company-table tr:first-child { border-top: 1px solid var(--warm-gray); }

.company-table th {
  width: 200px; padding: 28px 0; text-align: left;
  font-size: 13px; font-weight: 400; letter-spacing: 0.12em;
  color: var(--navy); vertical-align: top; position: relative;
}

.company-table th span { padding-left: 8px; display: block; border-left: 3px solid var(--gold); }

.company-table td {
  padding: 28px 0 28px 48px;
  font-size: 13px; color: #555; letter-spacing: 0.05em; line-height: 2;
}

/* ============================================================
   COMPANY PAGE — MAP SECTION
   ============================================================ */
.map-section { background: var(--navy); padding: 80px 100px; }
.map-inner { max-width: 900px; margin: 0 auto; }
.map-header { margin-bottom: 40px; }
.map-header h2 { font-size: 18px; font-weight: 300; color: #fff; letter-spacing: 0.1em; }

.map-placeholder {
  height: 360px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.google-map {
  width: 100%; height: 100%; border: none; display: block;
}
.map-address { margin-top: 24px; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; line-height: 2; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #111820; padding: 72px 100px 40px; color: rgba(255,255,255,0.4); }
.footer-inner { max-width: 1000px; margin: 0 auto; }

.footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.7); display: block; margin-bottom: 8px;
}

.footer-address { font-size: 12px; letter-spacing: 0.08em; line-height: 2; margin-bottom: 40px; }

.footer-nav {
  display: flex; gap: 32px; flex-wrap: wrap; padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px;
}

.footer-nav a {
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s;
}

.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 10px; letter-spacing: 0.1em; text-align: center; }

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

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.30s; }
.fade-in-delay-3 { transition-delay: 0.45s; }

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel-section {
  padding: 0 100px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(247,245,240,0.85);
  border: 1px solid rgba(26,39,68,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}

.carousel-btn:hover { background: rgba(247,245,240,1); }

.carousel-btn--prev { left: 4px; }
.carousel-btn--next { right: 4px; }

.carousel-btn--prev::before,
.carousel-btn--next::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--navy);
  border-right: 1px solid var(--navy);
}

.carousel-btn--prev::before { transform: rotate(-135deg) translate(-2px, 2px); }
.carousel-btn--next::before { transform: rotate(45deg) translate(-2px, 2px); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm-gray);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active { background: var(--navy); }

@media (max-width: 768px) {
  .carousel-section { padding: 0 24px 2rem; }
  .carousel-slide img { height: 260px; }
  .carousel-btn { width: 36px; height: 36px; }
}

/* ============================================================
   CAROUSEL THUMBNAILS
   ============================================================ */
.carousel-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.carousel-thumb {
  flex: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s, opacity 0.3s;
  opacity: 0.55;
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-thumb.active {
  border-color: var(--navy);
  opacity: 1;
}

.carousel-thumb:hover { opacity: 0.85; }

.none { display: none; }
