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

:root {
  --gold: #CFA653;
  --gold-deep: #8E7236;
  --gold-glow: rgba(207,166,83,0.5);
  --bg: #0A0A0B;
  --bg-2: #121214;
  --line: #232024;
  --text: #F2F2F4;
  --text-dim: #8A8A92;
  --text-faint: #4A4A52;
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
}

.num,
.section-num,
.hero-tag,
.btn-nav-cta,
.stat-label,
.work-no,
.work-cat,
.srv-en,
.srv-num,
.side-text,
.card-label,
.footer-version {
  font-family: "Bebas Neue", "JetBrains Mono", monospace;
}

/* ===== SAMPLE BANNER ===== */
.sample-banner {
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  line-height: 1.6;
}
.sample-banner a {
  color: var(--bg);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sample-banner .banner-br { display: none; }
@media (max-width: 540px) {
  .sample-banner .banner-br { display: inline; }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; left: 0; right: 0;
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.site-header.scrolled { background: rgba(10,10,11,0.95); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  max-width: 1480px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 44px; width: auto;
  filter: drop-shadow(0 0 12px rgba(207,166,83,0.15));
}
.nav-pc {
  display: flex; align-items: center; gap: 32px;
}
.nav-pc a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
  padding: 6px 0;
  position: relative;
}
.nav-pc a .num {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.nav-pc a:not(.btn-nav-cta)::after {
  content: ""; position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-pc a:not(.btn-nav-cta):hover::after {
  transform: scaleX(1); transform-origin: left;
}
.btn-nav-cta {
  background: var(--gold);
  padding: 12px 22px !important;
  letter-spacing: 0.14em !important;
  border: 1px solid var(--gold);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-nav-cta::before {
  content: ""; position: absolute;
  inset: 0; background: var(--bg);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s var(--ease); z-index: -1;
}
.btn-nav-cta:hover { color: var(--gold); }
.btn-nav-cta:hover::before { transform: scaleY(1); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
  width: 26px; height: 1.5px; background: var(--text);
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-sp {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--bg-2);
  flex-direction: column;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
}
.nav-sp.open { display: flex; }
.nav-sp a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-weight: 600; letter-spacing: 0.1em; font-size: 14px;
}
.nav-sp a .num {
  font-size: 11px; color: var(--text-faint);
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 100px 0 48px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("../images/pour-action.jpg");
  background-size: cover;
  background-position: center center;
  filter: brightness(0.55) saturate(0.85) contrast(1.1);
  z-index: 1;
  animation: heroPan 18s ease-in-out infinite alternate;
}
@keyframes heroPan {
  0% { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.12) translateX(-3%); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(10,10,11,0.4) 0%, transparent 35%, rgba(10,10,11,0.95) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-meta {
  margin-bottom: 36px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}
.hero-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  font-weight: 700;
}
.hero-title {
  font-size: clamp(48px, 8vw, 128px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.005em;
  margin-bottom: 56px;
}
.hero-title .line {
  display: block; overflow: hidden;
  animation: heroIn 1s var(--ease) both;
}
.hero-title .line:nth-child(2) { animation-delay: 0.2s; }
.hero-title .accent {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(207,166,83,0.45);
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  animation: heroIn 1s var(--ease) 0.5s both;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dim);
  max-width: 480px;
}
.hero-stats {
  display: flex; gap: 40px;
  padding-left: 40px;
  border-left: 1px solid var(--line);
}
.stat {
  display: flex; flex-direction: column;
}
.stat-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  margin-top: 6px;
}

.hero-side {
  position: absolute;
  right: 32px; bottom: 48px;
  z-index: 3;
}
.side-text {
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--gold);
  color: var(--bg);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.marquee-track .dot { font-size: 8px; opacity: 0.7; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION HEAD ===== */
.section-head {
  margin-bottom: 80px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: end;
}
.section-num {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
}
.section-num.light { color: var(--gold); }
.section-h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.section-h2 .accent { color: var(--gold); }
.section-h2 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
}

/* ===== SERVICE ===== */
.service { padding: 140px 0; background: var(--bg); }
.service-list {
  display: flex; flex-direction: column;
}
.service-row {
  display: grid;
  grid-template-columns: 90px 280px 1fr 60px;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.service-row:first-child { border-top: 1px solid var(--line); }
.service-row:hover {
  padding-left: 16px;
}
.service-row:hover .srv-num { color: var(--gold); }
.service-row:hover .srv-arrow { transform: translateX(8px); color: var(--gold); }
.srv-num {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-faint);
  line-height: 1;
  transition: color 0.4s var(--ease);
}
.srv-photo {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.4s var(--ease);
}
.service-row:hover .srv-photo { filter: brightness(1) saturate(1); }
.srv-info { padding-right: 20px; }
.srv-title {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.srv-en {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  font-weight: 700;
}
.srv-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.85;
}
.srv-arrow {
  color: var(--text-faint);
  transition: all 0.4s var(--ease);
}

/* ===== WORKS ===== */
.works { padding: 140px 0; background: var(--bg-2); }
.works-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 760px;
}
.work-tile {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
}
.work-large {
  grid-row: span 2;
}
.work-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(0.85);
  transition: all 0.8s var(--ease);
}
.work-tile:hover .work-img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(1);
}
.work-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,0.9));
  pointer-events: none;
}
.work-overlay {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  padding: 28px;
  z-index: 2;
}
.work-no {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}
.work-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 10px;
}
.work-cat {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  font-weight: 700;
  border: 1px solid var(--text-faint);
  padding: 4px 10px;
  display: inline-block;
}

/* ===== ABOUT ===== */
.about { padding: 140px 0; background: var(--bg); position: relative; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left .section-num { display: inline-block; margin-bottom: 24px; }
.about-left .section-h2 { margin-bottom: 36px; }
.about-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 48px;
}
.company-info {
  border-top: 1px solid var(--line);
}
.company-info div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.company-info dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  padding-top: 4px;
  font-family: "Bebas Neue", sans-serif;
}
.company-info dd {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

.about-right {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-photo-main {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  filter: contrast(1.05) saturate(0.9);
}
.about-photo-sub {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  grid-column: 2 / 3;
  margin-top: 60px;
  filter: contrast(1.05) saturate(0.9);
}

/* ===== RECRUIT ===== */
.recruit {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}
.recruit-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.7);
  z-index: 1;
}
.recruit-inner {
  position: relative; z-index: 2;
  max-width: 720px;
}
.recruit-h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.15;
  margin: 24px 0 32px;
}
.recruit-h2 .accent { color: var(--gold); }
.recruit-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  background: var(--gold);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  border: 1px solid var(--gold);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--bg);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.btn-primary:hover { color: var(--gold); }
.btn-primary:hover::before { transform: scaleY(1); }
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(6px); }

/* ===== CONTACT ===== */
.contact { padding: 140px 0; background: var(--bg-2); }
.contact .section-num { display: inline-block; margin-bottom: 24px; }
.contact-h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-h2 .accent { color: var(--gold); }
.contact-sub {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 56px;
  max-width: 600px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 48px 48px;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
}
.contact-card > .card-label,
.contact-card > .card-num,
.contact-card > .card-time,
.contact-card > .card-text { grid-column: 1; }
.contact-card > .card-arrow {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
}
.contact-card:hover {
  border-color: var(--gold);
  background: var(--bg);
  transform: translateY(-4px);
}
.contact-card.form {
  background: var(--gold);
  border-color: var(--gold);
}
.contact-card.form:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
.card-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-card.form .card-label { color: var(--bg); }
.card-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}
.card-time {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
  letter-spacing: 0.05em;
}
.card-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.card-arrow {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: var(--text);
  transition: transform 0.3s var(--ease);
}
.contact-card:hover .card-arrow { transform: translateX(6px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 100px 0 24px;
}
.footer-inner { max-width: 1480px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { display: inline-block; margin-bottom: 24px; }
.footer-logo-img {
  height: 60px; width: auto;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-family: "Bebas Neue", sans-serif;
  transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-tel {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px !important;
  color: var(--text) !important;
  letter-spacing: 0.05em;
  margin-bottom: 24px !important;
}
.footer-sns {
  display: flex; gap: 12px;
}
.footer-sns a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text);
  transition: all 0.3s var(--ease);
}
.footer-sns a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.15em;
}

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.modal.open {
  display: block;
  opacity: 1;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal-shell {
  position: relative;
  width: min(1200px, 94vw);
  max-height: 92vh;
  margin: 4vh auto;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease);
}
.modal.open .modal-shell { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--text);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--line);
  z-index: 10;
  transition: all 0.3s var(--ease);
}
.modal-close:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.modal-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
  max-height: 92vh;
}
.modal-gallery {
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-main {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  transition: background-image 0.3s var(--ease);
}
.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  background: var(--bg);
}
.modal-thumb {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease);
  border: 1px solid transparent;
}
.modal-thumb:hover { opacity: 0.85; }
.modal-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}
.modal-body {
  padding: 56px 48px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.modal-tag {
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.modal-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.modal-date {
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.modal-desc {
  font-size: 14.5px;
  line-height: 2;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.modal-meta div {
  display: flex;
  flex-direction: column;
}
.modal-meta dt {
  font-family: "Bebas Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.modal-meta dd {
  font-size: 14px;
  color: var(--text);
}

/* ===== CONTACT MODAL ===== */
.contact-shell {
  position: relative;
  width: min(720px, 94vw);
  max-height: 92vh;
  margin: 4vh auto;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease);
}
.contact-modal.open .contact-shell { transform: translateY(0); }
.contact-modal-inner {
  padding: 56px 56px 48px;
}
.contact-modal-tag {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-modal-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.contact-modal-sub {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.field .req {
  font-family: "Bebas Neue", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 6px;
  font-weight: 700;
}
.field input,
.field textarea,
.field select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s var(--ease);
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  background: var(--bg);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.7; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
                    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position: calc(100% - 22px) center, calc(100% - 15px) center;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}
.field-submit {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: inherit;
}
.btn-submit:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
.btn-submit svg { transition: transform 0.3s var(--ease); }
.btn-submit:hover svg { transform: translateX(6px); }
.form-note {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.contact-success {
  text-align: center;
  padding: 40px 0;
}
.contact-success .success-icon {
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.contact-success h4 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.contact-success p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 32px;
}
.contact-success a {
  color: var(--gold);
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .contact-modal-inner { padding: 40px 28px 32px; }
  .contact-modal-title { font-size: 28px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 18px; }
}

.service-row[data-project],
.service-row[data-action] { cursor: pointer; }
.service-row[data-project]:hover .srv-arrow,
.service-row[data-action]:hover .srv-arrow {
  transform: translateX(8px); color: var(--gold);
}

body.modal-open { overflow: hidden; }

@media (max-width: 1024px) {
  .modal-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .modal-shell { margin: 2vh auto; max-height: 96vh; }
  .modal-body { padding: 40px 32px; }
  .modal-main { min-height: 280px; }
  .modal-title { font-size: 24px; }
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container,
  .header-inner,
  .hero-inner { padding-left: 32px; padding-right: 32px; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
  .service-row {
    grid-template-columns: 60px 200px 1fr 40px;
    gap: 24px;
  }
  .srv-num { font-size: 44px; }
  .works-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .work-large { grid-row: auto; }
  .work-tile { aspect-ratio: 4/3; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-foot {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-stats { padding-left: 0; border-left: 0; gap: 28px; }
}

@media (max-width: 768px) {
  .nav-pc { display: none; }
  .hamburger { display: flex; }
  .container,
  .header-inner,
  .hero-inner { padding-left: 20px; padding-right: 20px; }
  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .srv-num { font-size: 32px; }
  .srv-arrow { display: none; }
  .service-row:hover { padding-left: 0; }
  .works-grid { grid-template-columns: 1fr; gap: 12px; }
  .work-tile { aspect-ratio: 4/3; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-num { font-size: 28px; }
  .marquee-track { font-size: 18px; gap: 24px; }
  .contact-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px;
  }
  .card-num { font-size: 36px; }
  .card-arrow { justify-self: end; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .about-right { grid-template-columns: 1fr; }
  .about-photo-sub { margin-top: 0; }
  .recruit { padding: 100px 0; }
  .service,
  .works,
  .about,
  .contact { padding: 80px 0; }
  .section-h2 { font-size: 36px; }
  .hero-title { font-size: 48px; }
  .company-info div { grid-template-columns: 80px 1fr; gap: 16px; }
}
