/* ==========================================================
   JOURLEY Inc. — TOP v2 (Light)
   Style Guide:
     Base #FFFFFF / Paper #F6F4F0 / Ink #121212
     Dark section #14110E / Accent (Brass) #B08F5C
     Headings: Montserrat Bold (caps, wide tracking, brass cap)
     JP headings: Noto Sans JP Light / Body: Noto Sans JP Regular
   ========================================================== */

:root {
  --base: #ffffff;
  --paper: #f6f4f0;
  --ink: #121212;
  --dark: #14110e;
  --footer-bg: #0e0c0a;
  --brass: #b08f5c;
  --muted: #736e66;
  --body-sub: #47423d;
  --line: #e5e0d9;
  --line-news: #e0dbd4;
  --font-en: "Montserrat", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

/* ---------- Section heading pattern ---------- */

.sec-head {
  margin-bottom: 0;
}

.sec-title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.22em;
  color: var(--ink);
  line-height: 1.2;
}

.sec-title .cap {
  color: var(--brass);
}

.sec-sub {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 14px;
}

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

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding: 0 60px;
  background: var(--base);
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.brand-logo {
  width: 141px;
  height: 20px;
}

.brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--muted);
  padding-left: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink);
  transition: color 0.3s ease;
}

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

.btn-contact {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #fff;
  background: var(--ink);
  padding: 12px 24px;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: var(--brass);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, top 0.3s ease, background 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 25px; }

.menu-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */

.sec-hero {
  position: relative;
  height: 820px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ring {
  position: absolute;
  left: 830px;
  top: -300px;
  width: 980px;
  height: 980px;
  max-width: none;
}

.hero-dark-panel {
  position: absolute;
  left: -1250px;
  top: -640px;
  width: 2100px;
  height: 2100px;
  max-width: none;
}

.hero-gold-arc {
  position: absolute;
  left: -1270px;
  top: -660px;
  width: 2140px;
  height: 2140px;
  max-width: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 236px 100px 0;
}

.hero-eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--brass);
}

.hero-title {
  margin-top: 21px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 58px;
  letter-spacing: 0.04em;
  line-height: 1.28;
  color: #fff;
}

.hero-rule {
  margin-top: 30px;
  width: 300px;
  height: 3px;
  background: var(--brass);
}

.hero-copy {
  margin-top: 31px;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: #fff;
}

.hero-lead {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.75);
}

.hero-scroll {
  position: absolute;
  left: 100px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--brass);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

/* ---------- Service ---------- */

.sec-service {
  position: relative;
  overflow: hidden;
  background: var(--base);
  padding: 110px 0 110px;
}

.service-ellipse {
  position: absolute;
  left: 1120px;
  top: 420px;
  width: 760px;
  height: 760px;
  max-width: none;
  pointer-events: none;
}

.service-cards {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 128px;
  padding: 0 140px;
}

.service-card {
  position: relative;
  width: 560px;
  max-width: 100%;
  background: var(--base);
  border: 1px solid rgba(176, 143, 92, 0.6);
  padding: 56px 48px 40px;
}

.card-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--ink);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--brass);
}

.card-title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.card-sub {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 4px;
}

.card-rule {
  width: 48px;
  height: 2px;
  background: var(--brass);
  margin-top: 22px;
}

.card-list {
  margin-top: 30px;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.card-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 1.5px;
  background: var(--brass);
}

.card-more {
  margin-top: 28px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--brass);
}

/* ---------- About ---------- */

.sec-about {
  background: var(--paper);
  padding: 110px 0;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px 0 100px;
}

.about-text {
  flex: 1;
  min-width: 0;
}

.about-statement {
  margin-top: 88px;
  font-weight: 300;
  font-size: 38px;
  letter-spacing: 0.12em;
  line-height: 1.75;
  color: var(--ink);
}

.about-body {
  margin-top: 36px;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  line-height: 2.3;
  color: var(--body-sub);
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 52px;
  padding: 16px 32px;
  background: var(--base);
  border: 1px solid var(--ink);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-more i {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brass);
}

.btn-more:hover {
  background: var(--ink);
  color: #fff;
}

.about-photo-wrap,
.company-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.about-photo-wrap::after,
.company-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid rgba(176, 143, 92, 0.7);
  pointer-events: none;
}

.about-photo-wrap {
  margin-top: 20px;
}

.about-photo {
  width: 560px;
  height: 400px;
  object-fit: cover;
}

/* ---------- Fields ---------- */

.sec-fields {
  background: var(--base);
  padding: 110px 0 80px;
  overflow: hidden;
}

.fields-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.fields-hint {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--brass);
  padding-bottom: 34px;
}

.fields-strip {
  display: flex;
  gap: 22px;
  margin-top: 62px;
  padding: 0 100px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.fields-strip::-webkit-scrollbar {
  display: none;
}

.fields-strip.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.field-item {
  flex-shrink: 0;
  width: 168px;
}

.field-item img {
  width: 168px;
  height: 236px;
  object-fit: cover;
}

.field-item figcaption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.field-num {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--brass);
}

.field-name {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.fields-progress {
  position: relative;
  height: 2px;
  background: var(--line);
  max-width: 1240px;
  margin: 62px auto 0;
}

@media (max-width: 1440px) {
  .fields-progress {
    margin-left: 100px;
    margin-right: 100px;
  }
}

.fields-progress i {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 26%;
  background: var(--brass);
  transition: width 0.2s ease;
}

/* ---------- Company ---------- */

.sec-company {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 110px 0;
}

.company-ellipse {
  position: absolute;
  left: -260px;
  top: 380px;
  width: 700px;
  height: 700px;
  max-width: none;
  pointer-events: none;
}

.company-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px 0 100px;
}

.sec-company .sec-title {
  color: #fff;
}

.sec-company .sec-sub {
  color: rgba(255, 255, 255, 0.55);
}

.company-text {
  flex: 1;
  min-width: 0;
  max-width: 760px;
}

.company-table {
  margin-top: 86px;
}

.company-row {
  display: flex;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.company-row dt {
  flex-shrink: 0;
  width: 180px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--brass);
}

.company-row dd {
  font-size: 14.5px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}

.company-photo-wrap {
  margin-top: 110px;
}

.company-photo {
  width: 400px;
  height: 440px;
  object-fit: cover;
}

/* ---------- News ---------- */

.sec-news {
  background: var(--base);
  padding: 110px 0 120px;
}

.news-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.news-viewall {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--brass);
  padding-bottom: 34px;
}

.news-list {
  margin-top: 66px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-news);
}

.news-item time {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.news-tag {
  flex-shrink: 0;
  padding: 5px 14px;
  border: 1px solid var(--brass);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--brass);
}

.news-item p {
  font-size: 14.5px;
  letter-spacing: 0.08em;
  color: var(--ink);
}

/* ---------- Contact ---------- */

.sec-contact {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 10, 0.72);
}

.contact-ellipse {
  position: absolute;
  left: 1000px;
  top: -450px;
  width: 900px;
  height: 900px;
  max-width: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--brass);
}

.contact-title {
  margin-top: 30px;
  font-weight: 300;
  font-size: 36px;
  letter-spacing: 0.14em;
  color: #fff;
}

.contact-lead {
  margin-top: 33px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}

.btn-contact-form {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  padding: 20px 44px;
  border: 1px solid var(--brass);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: #fff;
  transition: background 0.3s ease;
}

.btn-contact-form i {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--brass);
}

.btn-contact-form:hover {
  background: rgba(176, 143, 92, 0.25);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--footer-bg);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px 60px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  width: 155px;
  height: 22px;
}

.footer-brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 2px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 12px;
}

.footer-nav a {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--brass);
}

.footer-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 76px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
}

.footer-copy {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-slogan {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: rgba(176, 143, 92, 0.8);
}

/* ==========================================================
   Responsive — SP 375 reference
   ========================================================== */

@media (max-width: 1180px) {
  .service-cards {
    padding: 0 60px;
  }

  .about-inner,
  .company-inner {
    flex-direction: column;
    padding: 0 60px;
  }

  .about-photo-wrap,
  .company-photo-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  /* Header */
  .site-header {
    height: 64px;
    padding: 0 24px;
  }

  .brand-logo {
    width: 120px;
    height: 17px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .header-brand {
    gap: 5px;
    position: relative;
    z-index: 110;
  }

  .menu-toggle {
    display: block;
  }

  .header-nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .header-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 14px;
  }

  /* Hero */
  .sec-hero {
    height: 620px;
  }

  .hero-ring {
    left: auto;
    right: -325px;
    top: 330px;
    width: 560px;
    height: 560px;
  }

  .hero-dark-panel {
    display: none;
  }

  .hero-gold-arc {
    left: -330px;
    top: -330px;
    width: 700px;
    height: 700px;
  }

  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 14, 0.72);
  }

  .hero-inner {
    padding: 140px 24px 0;
  }

  .hero-eyebrow {
    font-size: 11px;
  }

  .hero-title {
    margin-top: 17px;
    font-size: 34px;
  }

  .hero-rule {
    margin-top: 22px;
    width: 180px;
  }

  .hero-copy {
    margin-top: 23px;
    font-size: 17px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 12px;
    line-height: 2.05;
  }

  .hero-lead br {
    display: none;
  }

  .hero-scroll {
    left: 24px;
    bottom: 33px;
  }

  /* Section headings */
  .sec-title {
    font-size: 30px;
  }

  .sec-sub {
    margin-top: 12px;
    font-size: 11px;
  }

  /* Service */
  .sec-service {
    padding: 80px 0;
  }

  .service-ellipse {
    left: auto;
    right: -235px;
    top: 780px;
    width: 380px;
    height: 380px;
  }

  .sec-service .sec-head--center {
    text-align: left;
    padding: 0 24px;
  }

  .service-cards {
    flex-direction: column;
    gap: 92px;
    margin-top: 108px;
    padding: 0 24px;
  }

  .service-card {
    width: 100%;
    padding: 44px 32px 36px;
  }

  .card-num {
    width: 56px;
    height: 56px;
    font-size: 15px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-sub {
    font-size: 13px;
  }

  .card-rule {
    margin-top: 18px;
    width: 40px;
  }

  .card-list {
    margin-top: 20px;
  }

  .card-list li {
    padding: 13px 0;
    font-size: 13px;
  }

  .card-list li::before {
    width: 14px;
  }

  .card-more {
    margin-top: 24px;
    font-size: 11px;
  }

  /* About */
  .sec-about {
    padding: 80px 0;
  }

  .about-inner {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
  }

  .about-statement {
    margin-top: 54px;
    font-size: 26px;
  }

  .about-body {
    margin-top: 26px;
    font-size: 13px;
    line-height: 2.25;
  }

  .about-body br {
    display: none;
  }

  .btn-more {
    margin-top: 40px;
    padding: 15px 30px;
    font-size: 11px;
  }

  .about-photo-wrap {
    margin-top: 40px;
  }

  .about-photo-wrap::after,
  .company-photo-wrap::after {
    inset: 16px -16px -16px 16px;
  }

  .about-photo {
    width: 100%;
    height: 220px;
  }

  /* Fields */
  .sec-fields {
    padding: 80px 0 70px;
  }

  .fields-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 24px;
  }

  .fields-hint {
    padding-bottom: 0;
    font-size: 10px;
  }

  .fields-strip {
    margin-top: 40px;
    padding: 0 24px;
    gap: 16px;
  }

  .field-item {
    width: 140px;
  }

  .field-item img {
    width: 140px;
    height: 190px;
  }

  .field-num {
    font-size: 9px;
  }

  .field-name {
    font-size: 12px;
  }

  .fields-progress {
    margin: 40px 24px 0;
  }

  /* Company */
  .sec-company {
    padding: 80px 0;
  }

  .company-ellipse {
    left: -220px;
    top: 540px;
    width: 500px;
    height: 500px;
  }

  .company-inner {
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
  }

  .company-table {
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .company-row {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .company-row dt {
    width: auto;
    font-size: 13px;
  }

  .company-row dd {
    font-size: 13px;
  }

  .company-photo-wrap {
    margin-top: 58px;
  }

  .company-photo {
    width: 100%;
    height: 180px;
  }

  /* News */
  .sec-news {
    padding: 80px 0 90px;
  }

  .news-inner {
    padding: 0 24px;
  }

  .news-head {
    align-items: flex-start;
  }

  .news-viewall {
    padding-bottom: 0;
    padding-top: 10px;
    font-size: 11px;
  }

  .news-list {
    margin-top: 44px;
    border-top: 1px solid var(--line-news);
  }

  .news-item {
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 20px 0;
  }

  .news-item time {
    font-size: 12px;
  }

  .news-tag {
    font-size: 10px;
    padding: 4px 12px;
  }

  .news-item p {
    width: 100%;
    font-size: 13px;
  }

  /* Contact */
  .sec-contact {
    height: 520px;
  }

  .contact-ellipse {
    left: auto;
    right: -315px;
    top: -250px;
    width: 500px;
    height: 500px;
  }

  .contact-inner {
    padding: 0 24px;
  }

  .contact-eyebrow {
    font-size: 12px;
  }

  .contact-title {
    margin-top: 28px;
    font-size: 22px;
  }

  .contact-lead {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.9;
  }

  .btn-contact-form {
    margin-top: 48px;
    padding: 18px 36px;
    font-size: 12px;
  }

  /* Footer */
  .site-footer {
    padding-top: 52px;
  }

  .footer-inner {
    padding: 0 24px 44px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-logo {
    width: 120px;
    height: 17px;
  }

  .footer-nav {
    gap: 20px 32px;
    padding-top: 0;
  }

  .footer-rule {
    margin-top: 44px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 26px;
  }
}

/* ==========================================================
   Opening intro (index) — L drop / bounce / close-up / punch-out
   ========================================================== */

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

html.has-intro .intro {
  display: block;
}

html.has-intro {
  overflow: hidden;
}

.intro-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Hero text reveal (reading order) ---------- */

.rv {
  display: block;
  overflow: hidden;
}

html.js-anim .rv-in {
  display: block;
  transform: translateY(115%);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

html.texts-go .rv-in {
  transform: translateY(0);
}

html.js-anim .hero-eyebrow .rv-in { transition-delay: 0.05s; }
html.js-anim .hero-title .rv:nth-child(1) .rv-in { transition-delay: 0.18s; }
html.js-anim .hero-title .rv:nth-child(2) .rv-in { transition-delay: 0.32s; }
html.js-anim .hero-copy .rv-in { transition-delay: 0.72s; }

html.js-anim .hero-rule {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.55s;
}

html.texts-go .hero-rule {
  transform: scaleX(1);
}

html.js-anim .hero-lead {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease 0.92s, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.92s;
}

html.texts-go .hero-lead {
  opacity: 1;
  transform: translateY(0);
}

html.js-anim .hero-scroll {
  opacity: 0;
  transition: opacity 0.9s ease 1.25s;
}

html.texts-go .hero-scroll {
  opacity: 1;
}

/* ==========================================================
   Sub pages
   ========================================================== */

.card-more:hover,
.news-viewall:hover {
  opacity: 0.7;
}

.page-hero {
  background: var(--dark);
  padding: 96px 100px 88px;
}

.page-hero .sec-title {
  color: #fff;
}

.page-hero .sec-sub {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 40px;
}

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

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

.page-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 100px 130px;
}

.page-lead {
  font-size: 14.5px;
  letter-spacing: 0.08em;
  line-height: 2.3;
  color: var(--body-sub);
}

.page-block {
  margin-top: 90px;
}

.page-block:first-child {
  margin-top: 0;
}

.page-block-title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.page-block-sub {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 4px;
}

.page-block-rule {
  width: 48px;
  height: 2px;
  background: var(--brass);
  margin-top: 22px;
}

.page-block .card-list {
  max-width: 720px;
}

.page-note {
  margin-top: 34px;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  line-height: 2.1;
  color: var(--muted);
}

/* Light company table (company.html) */

.company-table--light {
  margin-top: 0;
  max-width: 860px;
  border-top: 1px solid var(--line);
}

.company-table--light .company-row {
  border-bottom: 1px solid var(--line);
}

.company-table--light .company-row dd {
  color: var(--ink);
}

/* News page list */

.news-list--page {
  margin-top: 0;
  border-top: 1px solid var(--line-news);
}

/* Contact form */

.contact-form {
  max-width: 720px;
}

.form-field {
  margin-bottom: 32px;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 12px;
}

.req {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: 2px 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-jp);
  font-size: 14.5px;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%),
    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--base);
}

.form-privacy {
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 36px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 56px;
  background: var(--ink);
  border: none;
  cursor: pointer;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: #fff;
  transition: background 0.3s ease;
}

.btn-submit i {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--brass);
}

.btn-submit:hover {
  background: var(--brass);
}

/* Sub-page CTA band */

.page-cta {
  background: var(--dark);
  text-align: center;
  padding: 90px 24px;
}

.page-cta .contact-eyebrow {
  font-size: 13px;
}

.page-cta .contact-title {
  margin-top: 24px;
  font-size: 30px;
}

@media (max-width: 900px) {
  .page-hero {
    padding: 60px 24px 56px;
  }

  .breadcrumb {
    margin-top: 30px;
  }

  .page-main {
    padding: 64px 24px 90px;
  }

  .page-block {
    margin-top: 64px;
  }

  .page-block-title {
    font-size: 22px;
  }

  .page-block-sub {
    font-size: 13px;
  }

  .page-cta {
    padding: 64px 24px;
  }

  .page-cta .contact-title {
    font-size: 21px;
  }
}
