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

:root {
  --primary: #1a2a3a;
  --primary-light: #2c3e50;
  --accent: #c49a6c;
  --accent-light: #d4ad82;
  --accent-dark: #a07848;
  --text: #222;
  --text-sub: #555;
  --text-light: #999;
  --bg: #fff;
  --bg-gray: #f6f5f3;
  --bg-dark: #1a2a3a;
  --border: #e0ddd8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}


/* ===== MOCK ANNOTATION ===== */
.mock-note {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 2px;
  border: 1px solid #ffc107;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0;
  font-style: normal;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
  border-bottom-color: rgba(0,0,0,0.04);
}

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

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

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

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

.logo-main {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 3px;
  line-height: 1;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.nav a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav a:hover { color: var(--primary); }
.nav a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-tel {
  text-align: right;
}

.header-tel-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1;
}

.header-tel-label {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-light);
  display: block;
  letter-spacing: 0;
  margin-top: 3px;
}

.btn-contact-sm {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 0;
  transition: background 0.3s;
}

.btn-contact-sm:hover {
  background: var(--accent-dark);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  margin-top: 80px;
  position: relative;
  height: 100vh;
  max-height: 900px;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1a26 0%, #1a2a3a 40%, #2c3e50 100%);
}

.hero-photo-area {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  background: linear-gradient(135deg, #1e3348, #2a4560);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0d1a26 0%, transparent 30%);
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-placeholder {
  color: rgba(255,255,255,0.15);
  font-size: 12px;
  letter-spacing: 2px;
  text-align: center;
  line-height: 2.5;
  z-index: 0;
}

.hero-bg-text {
  position: absolute;
  right: 5%;
  bottom: 8%;
  font-family: 'Oswald', sans-serif;
  font-size: 180px;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  letter-spacing: 12px;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}

.hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 28px;
  letter-spacing: 2px;
  max-width: 560px;
}

.hero-title em {
  color: var(--accent-light);
  font-style: normal;
}

.hero-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  line-height: 2.2;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 18px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 0;
  transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 18px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  transition: border-color 0.3s, color 0.3s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

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

.hero-scroll span {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 4px;
  text-transform: uppercase;
}

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

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

/* ===== PAGE HEADER (for sub pages) ===== */
.page-header {
  margin-top: 80px;
  background: linear-gradient(135deg, #0d1a26 0%, #1a2a3a 40%, #2c3e50 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header-bg-text {
  position: absolute;
  right: 5%;
  bottom: 10%;
  font-family: 'Oswald', sans-serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  letter-spacing: 10px;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.page-header .section-label {
  color: var(--accent-light);
}

.page-header .section-title {
  color: #fff;
  margin-bottom: 12px;
}

.page-header .section-desc {
  color: rgba(255,255,255,0.45);
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb span {
  margin: 0 8px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  margin-bottom: 60px;
  position: relative;
}

.section-head-center {
  text-align: center;
}

.section-bg-text {
  font-family: 'Oswald', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(0,0,0,0.025);
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-33.3334%);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.section-head-center .section-bg-text {
  left: 50%;
  transform: translateX(-33.3334%);
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 1px;
  line-height: 1.5;
}

.section-desc {
  font-size: 14px;
  color: var(--text-sub);
  max-width: 580px;
  line-height: 2.2;
}

.section-head-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-more {
  text-align: center;
  margin-top: 50px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  border: 1px solid var(--border);
  background: transparent;
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 0;
  transition: border-color 0.3s, background 0.3s;
}

.btn-more:hover {
  border-color: var(--accent);
  background: rgba(196,154,108,0.04);
  color: var(--accent-dark);
}

/* ===== ABOUT ===== */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, #1e3348, #2a4560);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder {
  color: rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  line-height: 2.5;
}

.about-image-accent {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent);
}

.about-text { position: relative; }

.about-text--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.about-text--center .section-label { text-align: center; }
.about-text--center .about-link { justify-content: center; }

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.about-feature-item {
  text-align: center;
  padding: 32px 20px;
}

.about-feature-num {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.about-feature-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-feature-item p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 2.0;
}

.about-text h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-text h3 em {
  color: var(--accent);
  font-style: normal;
}

.about-text p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 2.2;
  margin-bottom: 16px;
}

.about-link { margin-top: 32px; }

.about-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  transition: gap 0.3s;
}

.about-link a:hover { gap: 16px; }

/* ===== PHOTO BAND ===== */
.photo-band {
  height: 400px;
  background: linear-gradient(135deg, #1a2a3a, #2c3e50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,42,58,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.photo-band-text {
  text-align: center;
  color: #fff;
  z-index: 2;
  position: relative;
}

.photo-band-text .big {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
}

.photo-band-text .sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.4);
}

.photo-band-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.photo-band-track .photo-band-slide {
  flex-shrink: 0;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.photo-band-track .photo-band-slide span {
  color: rgba(255,255,255,0.12);
  font-size: 11px;
  letter-spacing: 2px;
  text-align: center;
  line-height: 2;
}

.photo-band-track .photo-band-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3334%); }
}

/* ===== SERVICE ===== */
.service { background: var(--bg-gray); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.service-card {
  background: #fff;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.service-num {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(196,154,108,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2.1;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
  background: #fff;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.service-detail h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.service-detail-left p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 16px;
}

.detail-list { margin: 0; padding: 0; }

.detail-list li {
  padding: 10px 0 10px 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-sub);
  border-bottom: 1px solid var(--bg-gray);
}

.detail-list li:last-child { border-bottom: none; }

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== FLOW ===== */
.flow-inline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-gray);
}

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

.flow-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-light);
}

.flow-item-text h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.flow-item-text p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

.flow-caution {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bg-gray);
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.8;
}

.flow-caution strong { color: var(--primary); }

/* ===== WORKS (Before/After) ===== */
.works { background: var(--bg); }

.works-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.work-item {
  background: var(--bg-gray);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.work-ba-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-ba-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}

.work-ba-label.before { color: var(--text-light); }
.work-ba-label.after { color: var(--accent-dark); }

.work-ba-img {
  height: 260px;
  background: linear-gradient(135deg, #1e3348, #2a4560);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 2px;
  text-align: center;
  line-height: 2;
  position: relative;
  overflow: hidden;
}

.work-ba-img.after-img {
  background: linear-gradient(135deg, #2a4560, #3a5a78);
}

.work-ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  align-self: center;
}

.work-ba-arrow-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.work-item-info {
  grid-column: 1 / -1;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.work-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(196,154,108,0.12);
  padding: 4px 12px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.work-item-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.work-item-info p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
}

.work-item-text { flex: 1; }

/* ===== VOICE ===== */
.voice {
  background: var(--bg-dark);
  color: #fff;
}

.voice .section-label { color: var(--accent-light); }
.voice .section-title { color: #fff; }
.voice .section-desc { color: rgba(255,255,255,0.45); }
.voice .section-bg-text { color: rgba(255,255,255,0.02); }

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.voice-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.voice-avatar {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}

.voice-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.voice-role {
  font-size: 11px;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.voice-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 2.1;
  font-style: italic;
}

/* ===== COMPANY ===== */
.company { background: var(--bg-gray); }

.company-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

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

.company-table th,
.company-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 120px;
  font-weight: 600;
  color: var(--primary);
}

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

.company-map {
  background: linear-gradient(135deg, #e4e2de, #d4d2ce);
  height: 380px;
  position: relative;
  overflow: hidden;
}

.company-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 160px;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  letter-spacing: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

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

.contact .section-title { color: #fff; }
.contact .section-desc { color: rgba(255,255,255,0.5); }

.contact-info { color: #fff; }
.contact-info .section-label { color: var(--accent-light); }

.contact-info h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.5;
}

.contact-info > p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 2.2;
  margin-bottom: 24px;
}

.contact-notice {
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 36px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}

.contact-notice strong { color: var(--accent-light); }

.contact-tel {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-tel-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-tel-num {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
}

.contact-tel-hours {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}

/* ===== FORM ===== */
.contact-form-wrap {
  background: #fff;
  padding: 44px 40px;
}

.form-row { margin-bottom: 24px; }
.form-row:last-of-type { margin-bottom: 0; }

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-required {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  letter-spacing: 1px;
}

.form-optional {
  display: inline-block;
  background: var(--border);
  color: var(--text-light);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg-gray);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,154,108,0.1);
  background: #fff;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #d9534f;
  box-shadow: 0 0 0 3px rgba(217,83,79,0.08);
}

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

.form-select {
  cursor: pointer;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M1 1l5 5 5-5" stroke="%23999" stroke-width="1.5" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

.form-error-msg { font-size: 12px; color: #d9534f; margin-top: 6px; display: none; }
.form-error-msg.show { display: block; }

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

.form-privacy {
  margin: 28px 0;
  padding: 16px 20px;
  background: var(--bg-gray);
  font-size: 12px;
  color: var(--text-sub);
  line-height: 2;
}

.form-privacy a { color: var(--accent-dark); text-decoration: underline; }

.form-privacy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.form-privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-privacy-check span { font-size: 13px; font-weight: 500; color: var(--text); }

.form-submit { text-align: center; margin-top: 32px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  background: var(--primary);
  color: #fff;
  padding: 20px 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-submit:disabled { background: var(--border); color: var(--text-light); cursor: not-allowed; transform: none; }

/* ===== FORM STATES ===== */
.form-confirm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.form-confirm-overlay.show { display: flex; }

.form-confirm-box {
  background: #fff;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
}

.form-confirm-box h3 { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.form-confirm-box > p { font-size: 13px; color: var(--text-sub); margin-bottom: 28px; }

.confirm-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }

.confirm-table th,
.confirm-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.confirm-table th { width: 130px; font-weight: 600; color: var(--primary); }
.confirm-table td { color: var(--text-sub); white-space: pre-wrap; }

.confirm-btns { display: flex; gap: 16px; justify-content: center; }

.btn-confirm-back {
  padding: 16px 36px;
  background: transparent;
  border: 1px solid var(--border);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  cursor: pointer;
  transition: border-color 0.3s;
  border-radius: 0;
}

.btn-confirm-back:hover { border-color: var(--text-sub); }

.btn-confirm-send {
  padding: 16px 48px;
  background: var(--primary);
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  letter-spacing: 2px;
  transition: background 0.3s;
  border-radius: 0;
}

.btn-confirm-send:hover { background: var(--accent-dark); }

.form-complete { display: none; text-align: center; padding: 60px 40px; background: #fff; }
.form-complete.show { display: block; }

.form-complete-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: #fff;
}

.form-complete h3 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.form-complete p { font-size: 14px; color: var(--text-sub); line-height: 2.2; max-width: 440px; margin: 0 auto; }

/* ===== CTA BAND (top page simplified contact) ===== */
.cta-band {
  background: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  letter-spacing: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.cta-band-inner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.5;
}

.cta-band-inner > p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 2.2;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band-tel {
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.cta-band-tel-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a1118;
  color: rgba(255,255,255,0.4);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 16px; letter-spacing: 3px; display: flex; align-items: center; gap: 10px; }
.footer-logo-img { height: 36px; width: auto; }
.footer-info p { font-size: 13px; line-height: 2.2; }

.footer-nav h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-nav ul li a:hover { color: var(--accent-light); }

.footer-nav--inline ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.15);
  letter-spacing: 2px;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.15s; }
[data-reveal][data-delay="2"] { transition-delay: 0.3s; }
[data-reveal][data-delay="3"] { transition-delay: 0.45s; }

/* ===== PAGE LOAD ANIMATION ===== */
.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
}

.hero-label { animation-delay: 0.3s; }
.hero-title { animation-delay: 0.5s; }
.hero-desc { animation-delay: 0.7s; }
.hero-btns { animation-delay: 0.9s; }

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

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background: rgba(26,42,58,0.97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 3px;
  text-align: center;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--accent-light); }

.mobile-nav-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 3px;
  display: block;
  margin-top: 2px;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
}

.mobile-nav-close span:first-child { transform: rotate(45deg); }
.mobile-nav-close span:last-child { transform: rotate(-45deg); }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav { display: none; }
  .header-right { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 34px; }
  .hero { height: 80vh; }
  .hero-photo-area { width: 100%; opacity: 0.3; }
  .hero-photo-area::before { background: linear-gradient(to right, #0d1a26 0%, rgba(13,26,38,0.7) 100%); }
  .hero-bg-text { font-size: 100px; }

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

  .service-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; padding: 32px; }

  .work-item { grid-template-columns: 1fr auto 1fr; padding: 28px; }
  .work-ba-img { height: 200px; }

  .photo-band { height: 280px; }
  .photo-band-text .big { font-size: 36px; }
  .photo-band-track .photo-band-slide { width: 280px; height: 280px; }

  .voice-grid { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-bg-text { font-size: 80px; }

  .section { padding: 80px 0; }
  .section-bg-text { font-size: 72px; }

  .page-header-bg-text { font-size: 80px; }
  .cta-band-bg-text { font-size: 80px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 28px; }
  .hero-btns { flex-direction: column; }
  .hero-bg-text { font-size: 60px; }

  .work-item { grid-template-columns: 1fr; padding: 20px; }
  .work-ba-arrow { padding: 12px 0; transform: rotate(90deg); }
  .work-ba-img { height: 180px; }

  .section { padding: 64px 0; }
  .section-title { font-size: 24px; }
  .section-bg-text { font-size: 48px; top: -10px; }

  .voice-card { flex-direction: column; align-items: center; text-align: center; }

  .photo-band { height: 200px; }
  .photo-band-text .big { font-size: 28px; letter-spacing: 6px; }
  .photo-band-track .photo-band-slide { width: 200px; height: 200px; }

  .form-row-half { grid-template-columns: 1fr; }
  .form-confirm-box { padding: 28px 20px; }
  .confirm-btns { flex-direction: column; }

  .cta-band-btns { flex-direction: column; align-items: center; }
  .page-header-bg-text { font-size: 48px; }
}


/* ===== Typography: larger text (client request) ===== */
body { font-size: 18px; line-height: 1.85; }
.hero-desc { font-size: 19px !important; line-height: 2.0 !important; }
.hero-title { font-size: 62px !important; line-height: 1.3 !important; }
.hero-label { font-size: 14px !important; letter-spacing: 3px !important; }
.section-title { font-size: 40px !important; line-height: 1.45 !important; }
.section-desc { font-size: 18px !important; line-height: 2.0 !important; }
.section-label { font-size: 16px !important; }
.about-text h3 { font-size: 34px !important; line-height: 1.55 !important; }
.about-text p { font-size: 18px !important; line-height: 2.0 !important; }
.service-card h4 { font-size: 22px !important; }
.service-card p { font-size: 16px !important; line-height: 1.9 !important; }
.work-card-body h4 { font-size: 19px !important; line-height: 1.6 !important; }
.work-card-body p { font-size: 15px !important; line-height: 1.95 !important; }
.work-tag { font-size: 12px !important; }
.btn-primary, .btn-outline, .btn-submit, .btn-contact-sm { font-size: 16px !important; }
.nav a { font-size: 16px !important; }
.header-tel-num { font-size: 21px !important; }
.cta-band-inner h2 { font-size: 44px !important; line-height: 1.5 !important; }
.cta-band-inner > p { font-size: 19px !important; }
.cta-band-tel-num { font-size: 34px !important; }
.footer-logo { font-size: 24px !important; }
.footer-info p { font-size: 15px !important; }
.footer-nav h4 { font-size: 14px !important; }
.footer-nav ul li a { font-size: 15px !important; }
.form-input, .form-textarea, .form-select { font-size: 16px !important; }
.detail-list li, .company-table td, .company-table th { font-size: 16px !important; }


/* ===== Layout safety after font bump ===== */
.hero-title { max-width: 720px !important; letter-spacing: 1px !important; }
.hero-desc { max-width: 560px !important; }
.section-desc { max-width: 680px !important; }
.about-text h3 { max-width: 100% !important; }
.cta-band-inner h2 { max-width: 720px !important; }
.cta-band-inner > p { max-width: 560px !important; }
/* Prevent nav squeeze: allow wrap before mobile breakpoint */
.nav { gap: 28px !important; }
/* Section padding balancing */
.section { padding: 100px 0 !important; }
/* Service card body */
.service-card h4 { line-height: 1.55 !important; }
.service-card p { line-height: 2.0 !important; }
/* Work card body min height for uniform look with variable desc length */
.work-card-body { min-height: 160px !important; }
/* Footer readability */
.footer-info p, .footer-nav ul li a { line-height: 2.0 !important; }
/* Photo band Precision label sizing - slightly bigger to match larger theme */
.photo-band-text .big { font-size: 80px !important; letter-spacing: 12px !important; }
.photo-band-text .sub { font-size: 16px !important; letter-spacing: 5px !important; }


/* ===== Photo-band: GPU-accelerated seamless scroll ===== */
.photo-band-track { will-change: transform; backface-visibility: hidden; transform: translateZ(0); }
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-33.3334%, 0, 0); }
}
/* Precision text: bolder + shadow for visibility */
.photo-band-text .big { font-weight: 500 !important; text-shadow: 0 2px 12px rgba(0,0,0,0.5) !important; }
.photo-band-text .sub { font-weight: 500 !important; text-shadow: 0 1px 6px rgba(0,0,0,0.4) !important; }


/* ===== Mobile responsive: rewind oversized desktop bumps ===== */
@media (max-width: 960px) {
  body { font-size: 16px !important; line-height: 1.85 !important; }
  .hero-title { font-size: 38px !important; line-height: 1.4 !important; max-width: 100% !important; letter-spacing: 0 !important; }
  .hero-desc { font-size: 16px !important; line-height: 1.95 !important; max-width: 100% !important; }
  .hero-label { font-size: 12px !important; letter-spacing: 2px !important; }
  .section-title { font-size: 28px !important; line-height: 1.45 !important; }
  .section-desc { font-size: 15px !important; line-height: 1.95 !important; max-width: 100% !important; }
  .section-label { font-size: 13px !important; }
  .about-text h3 { font-size: 24px !important; line-height: 1.6 !important; }
  .about-text p { font-size: 16px !important; line-height: 1.95 !important; }
  .service-card h4 { font-size: 19px !important; }
  .service-card p { font-size: 15px !important; line-height: 1.9 !important; }
  .work-card-body { min-height: auto !important; padding: 18px 22px !important; }
  .work-card-body h4 { font-size: 18px !important; line-height: 1.55 !important; }
  .work-card-body p { font-size: 14px !important; line-height: 1.9 !important; }
  .work-tag { font-size: 11px !important; }
  .btn-primary, .btn-outline, .btn-submit, .btn-contact-sm { font-size: 15px !important; }
  .cta-band-inner h2 { font-size: 30px !important; line-height: 1.5 !important; max-width: 100% !important; }
  .cta-band-inner > p { font-size: 16px !important; max-width: 100% !important; }
  .cta-band-tel-num { font-size: 26px !important; }
  .footer-logo { font-size: 20px !important; }
  .footer-info p, .footer-nav ul li a { font-size: 14px !important; }
  .form-input, .form-textarea, .form-select { font-size: 16px !important; padding: 13px 15px !important; }
  .form-label { font-size: 14px !important; }
  .photo-band-text .big { font-size: 44px !important; letter-spacing: 6px !important; }
  .photo-band-text .sub { font-size: 13px !important; letter-spacing: 3px !important; }
  .section { padding: 72px 0 !important; }
  .contact-form-wrap { padding: 32px 22px !important; }
  .contact-info h2 { font-size: 26px !important; }
  .contact-info > p { font-size: 15px !important; }
  .contact-tel-num { font-size: 28px !important; }
  .nav { gap: 0 !important; }
}
@media (max-width: 600px) {
  body { font-size: 15px !important; }
  .hero-title { font-size: 30px !important; line-height: 1.4 !important; }
  .hero-desc { font-size: 15px !important; }
  .hero-label { font-size: 11px !important; }
  .section-title { font-size: 24px !important; }
  .section-desc { font-size: 14px !important; }
  .about-text h3 { font-size: 22px !important; }
  .about-text p { font-size: 15px !important; }
  .service-card h4 { font-size: 18px !important; }
  .service-card p { font-size: 14px !important; }
  .work-card-body h4 { font-size: 17px !important; }
  .work-card-body p { font-size: 13.5px !important; }
  .cta-band-inner h2 { font-size: 24px !important; }
  .cta-band-inner > p { font-size: 15px !important; }
  .cta-band-tel-num { font-size: 22px !important; }
  .photo-band-text .big { font-size: 32px !important; letter-spacing: 4px !important; }
  .photo-band-text .sub { font-size: 12px !important; }
  .section { padding: 56px 0 !important; }
  .contact-form-wrap { padding: 28px 18px !important; }
  .contact-info h2 { font-size: 22px !important; }
  .contact-tel-num { font-size: 24px !important; }
  .form-label { font-size: 13.5px !important; }
}

/* ===== Active nav indicator ===== */
.nav a.active { color: var(--primary); }
.nav a.active::after { transform: scaleX(1); }

/* ===== CTA Band ===== */
.cta-band {
  background: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  letter-spacing: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.cta-band-inner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.5;
}
.cta-band-inner > p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 2.2;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band-tel {
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.cta-band-tel-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ===== Scroll offset for fixed header ===== */
html {
  scroll-padding-top: 90px;
}

/* ===== WORKS (After only gallery) ===== */
.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.work-card-img {
  width: 100%;
  aspect-ratio: 1.07 / 1;
  overflow: hidden;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Placeholder for missing photos */
.work-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1.07 / 1;
  background: linear-gradient(135deg, #1e3348, #2a4560);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 12px;
  letter-spacing: 2px;
  text-align: center;
  line-height: 2;
}

.work-card-name {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  letter-spacing: 0.5px;
  border-left: 3px solid var(--accent);
  background: var(--bg-gray);
}

.work-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.work-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.6;
}

.work-card-body p {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 2;
}

@media (max-width: 960px) {
  .cta-band-bg-text { font-size: 80px; }
  .works-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cta-band-btns { flex-direction: column; align-items: center; }
  .works-gallery { grid-template-columns: 1fr; }
}

/* ====== Variant A: Navy × Orange accent ====== */
:root {
  --accent: #E04828 !important;
  --accent-light: #ED7050 !important;
  --accent-dark: #B43A20 !important;
}
.header { border-top: 3px solid #E04828 !important; }
.header-tel-num { color: #E04828 !important; }
.btn-contact-sm { background: #E04828 !important; }
.btn-contact-sm:hover { background: #B43A20 !important; }
/* hardcoded gold rgba → orange */
.btn-outline:hover { background: rgba(224,72,40,0.05) !important; border-color: #E04828 !important; color: #E04828 !important; }
.service-num { color: rgba(224,72,40,0.12) !important; }
.work-tag { background: rgba(224,72,40,0.10) !important; color: #B43A20 !important; }
.form-input:focus, .form-textarea:focus, .form-select:focus { box-shadow: 0 0 0 3px rgba(224,72,40,0.1) !important; border-color: #E04828 !important; }

/* ===== MOBILE FINAL OVERRIDE (highest cascade priority) ===== */
@media (max-width: 960px) {
  body { font-size: 16px !important; line-height: 1.85 !important; }
  .hero-title { font-size: 38px !important; line-height: 1.4 !important; max-width: 100% !important; letter-spacing: 0 !important; }
  .hero-desc { font-size: 16px !important; line-height: 1.95 !important; max-width: 100% !important; }
  .hero-label { font-size: 12px !important; letter-spacing: 2px !important; }
  .section-title { font-size: 28px !important; line-height: 1.45 !important; }
  .section-desc { font-size: 15px !important; line-height: 1.95 !important; max-width: 100% !important; }
  .section-label { font-size: 13px !important; }
  .about-text h3 { font-size: 24px !important; line-height: 1.6 !important; }
  .about-text p { font-size: 16px !important; line-height: 1.95 !important; }
  .service-card h4 { font-size: 19px !important; }
  .service-card p { font-size: 15px !important; line-height: 1.9 !important; }
  .work-card-body { min-height: auto !important; padding: 18px 22px !important; }
  .work-card-body h4 { font-size: 18px !important; line-height: 1.55 !important; }
  .work-card-body p { font-size: 14px !important; line-height: 1.9 !important; }
  .work-tag { font-size: 11px !important; }
  .btn-primary, .btn-outline, .btn-submit, .btn-contact-sm { font-size: 15px !important; padding: 16px 28px !important; }
  .cta-band-inner h2 { font-size: 30px !important; line-height: 1.5 !important; max-width: 100% !important; }
  .cta-band-inner > p { font-size: 16px !important; max-width: 100% !important; }
  .cta-band-tel-num { font-size: 26px !important; }
  .footer-logo { font-size: 20px !important; }
  .footer-info p, .footer-nav ul li a { font-size: 14px !important; }
  .form-input, .form-textarea, .form-select { font-size: 16px !important; padding: 13px 15px !important; }
  .form-label { font-size: 14px !important; margin-bottom: 8px !important; }
  .form-privacy, .form-privacy-check span { font-size: 13px !important; }
  .photo-band-text .big { font-size: 44px !important; letter-spacing: 6px !important; }
  .photo-band-text .sub { font-size: 13px !important; letter-spacing: 3px !important; }
  .section { padding: 72px 0 !important; }
  .contact { padding: 80px 0 !important; }
  .contact-form-wrap { padding: 32px 22px !important; }
  .contact-info h2 { font-size: 26px !important; line-height: 1.55 !important; }
  .contact-info > p { font-size: 15px !important; line-height: 1.95 !important; }
  .contact-notice { font-size: 13px !important; padding: 16px 18px !important; }
  .contact-tel-num { font-size: 28px !important; }
  .contact-tel-label, .contact-tel-hours { font-size: 11px !important; }
  .nav { gap: 0 !important; }
  /* Header height tighten on mobile */
  .header-tel-num { font-size: 18px !important; }
}
@media (max-width: 600px) {
  body { font-size: 15px !important; }
  .container { padding: 0 18px !important; }
  .hero-title { font-size: 28px !important; line-height: 1.45 !important; }
  .hero-desc { font-size: 14.5px !important; line-height: 1.9 !important; }
  .hero-label { font-size: 11px !important; }
  .section-title { font-size: 23px !important; }
  .section-desc { font-size: 13.5px !important; }
  .about-text h3 { font-size: 21px !important; }
  .about-text p { font-size: 14.5px !important; }
  .service-card h4 { font-size: 17px !important; }
  .service-card p { font-size: 13.5px !important; }
  .work-card-body h4 { font-size: 16px !important; }
  .work-card-body p { font-size: 13px !important; }
  .cta-band-inner h2 { font-size: 23px !important; line-height: 1.5 !important; }
  .cta-band-inner > p { font-size: 14px !important; }
  .cta-band-tel-num { font-size: 22px !important; }
  .photo-band-text .big { font-size: 30px !important; letter-spacing: 4px !important; }
  .photo-band-text .sub { font-size: 12px !important; }
  .section { padding: 56px 0 !important; }
  .contact { padding: 64px 0 !important; }
  .contact-form-wrap { padding: 26px 16px !important; }
  .contact-info h2 { font-size: 21px !important; }
  .contact-info > p { font-size: 14px !important; }
  .contact-tel-num { font-size: 22px !important; }
  .form-label { font-size: 13px !important; }
  .form-input, .form-textarea, .form-select { font-size: 15px !important; padding: 12px 13px !important; }
  .btn-submit { font-size: 14px !important; padding: 16px 28px !important; letter-spacing: 1.5px !important; }
}

/* ===== Photo-band slides via background-image (dedupe base64) ===== */
.photo-band-track .photo-band-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo-band-slide.pbs-1 { background-image: url("images/scroll/slide_01.jpg"); }
.photo-band-slide.pbs-2 { background-image: url("images/scroll/slide_02.jpg"); }
.photo-band-slide.pbs-3 { background-image: url("images/scroll/slide_03.jpg"); }
.photo-band-slide.pbs-4 { background-image: url("images/scroll/slide_04.jpg"); }
.photo-band-slide.pbs-5 { background-image: url("images/scroll/slide_05.jpg"); }
.photo-band-slide.pbs-6 { background-image: url("images/scroll/slide_06.jpg"); }
.photo-band-slide.pbs-7 { background-image: url("images/scroll/slide_07.jpg"); }
.photo-band-slide.pbs-8 { background-image: url("images/scroll/slide_08.jpg"); }
.photo-band-slide.pbs-9 { background-image: url("images/scroll/slide_09.jpg"); }
.photo-band-slide.pbs-10 { background-image: url("images/scroll/slide_10.jpg"); }
.photo-band-slide.pbs-11 { background-image: url("images/scroll/slide_11.jpg"); }
.photo-band-slide.pbs-12 { background-image: url("images/scroll/slide_12.jpg"); }
