/* ==========================================================
   BASE & VARIABLES
   ========================================================== */
:root {
  --navy: #1B2A4A;
  --navy-light: #2a3d66;
  --gold: #C8A96E;
  --gold-light: #e0c99a;
  --cream: #FAF8F5;
  --light-gray: #F5F6FA;
  --mid-gray: #E8E9ED;
  --dark-gray: #2A2D35;
  --text: #333740;
  --text-light: #6B7084;
  --white: #FFFFFF;
  --accent: #C8A96E;
  --bg-light: #FAF8F5;
  --text-dark: #333740;
  --space-side: 2rem;
  --font-main: 'Noto Sans JP', sans-serif;
  --font-accent: 'Shippori Mincho', serif;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ==========================================================
   UTILITY
   ========================================================== */
.section-label {
  margin-bottom: 8px;
}

.section-label-en {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.section-label--light .section-label-en {
  color: var(--gold-light);
}

.section-heading {
  font-family: var(--font-accent);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--navy);
}

.section-heading .heading-en {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-heading--light {
  color: var(--white);
}

.section-heading--light .heading-en {
  color: var(--gold-light);
}

.section-intro {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* scroll-triggered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(27, 42, 74, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-h);
}

.header-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  z-index: 1001;
}

.logo-main {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  transition: color var(--transition);
}

.logo-sub {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.scrolled .logo-main {
  color: var(--navy);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 1.5rem);
  white-space: nowrap;
}

.nav-list a {
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.scrolled .nav-list a {
  color: var(--text);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.scrolled .hamburger span {
  background: var(--navy);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(27, 42, 74, 0.72) 0%,
    rgba(27, 42, 74, 0.4) 50%,
    rgba(27, 42, 74, 0.6) 100%
  );
}

.hero-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: var(--white);
}

.hero-lead {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.hero-slogan {
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.9;
  opacity: 0.92;
}

.hero-pagination {
  bottom: 100px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

.hero-prev, .hero-next {
  color: var(--white) !important;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.hero-prev:hover, .hero-next:hover { opacity: 1; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
}

/* ==========================================================
   CARD NAVIGATION
   ========================================================== */
.nav-cards {
  padding: clamp(2rem, 4vw, 4rem) var(--space-side);
  background: var(--bg-light);
}
.nav-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}
.nav-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  border: 1px solid #e8e4df;
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 100%;
}
.nav-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.nav-card--wide {
  grid-column: 2 / 3;
}
.nav-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-light);
  color: var(--accent);
}
.nav-card-body {
  min-width: 0;
}
.nav-card-en {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
}
.nav-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.15rem 0;
}
.nav-card-desc {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.4;
}

/* ==========================================================
   MESSAGE & VISION
   ========================================================== */
.message {
  padding: 6rem 2rem;
  background: var(--cream);
  overflow: hidden;
}

.message-layout {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 4rem;
  position: relative;
}

.message-photo {
  position: relative;
  z-index: 1;
  max-height: 480px;
  overflow: hidden;
}

.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px 0 0 4px;
}

.message-text {
  position: relative;
  z-index: 2;
  padding: 3rem 3rem 3rem 4rem;
  margin-left: -3rem;
  margin-top: 2rem;
  background: var(--white);
  border-radius: 0 8px 8px 0;
  box-shadow: 20px 20px 60px rgba(27, 42, 74, 0.06);
}

.message-lead {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--mid-gray);
}

.message-text p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.message-dreams {
  list-style: none;
  padding: 1.5rem 0;
  margin: 1rem 0;
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
}
.message-dreams li {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  line-height: 2;
  color: var(--navy);
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.message-dreams li::before {
  content: "―";
  margin-right: 0.4em;
  color: var(--gold);
}

.message-sign {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.mvv {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mvv-item {
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.mvv-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.mvv-item h3 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 6px 0 8px;
  line-height: 1.6;
}

.mvv-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ==========================================================
   DATA
   ========================================================== */
.data {
  background: var(--navy);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.data::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200, 169, 110, 0.1);
  border-radius: 50%;
}

.data-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.data-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  text-align: left;
}

.data-col {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(200, 169, 110, 0.12);
}

.data-col-title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.data-item {
  padding: 1rem 0;
}

.data-number {
  font-family: var(--font-accent);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.data-unit {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold-light);
  margin-left: 4px;
}

.data-label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.data-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

.data-chart-block {
  margin: 1.2rem 0;
}

.data-chart-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.6rem;
}

.data-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.data-bar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.data-bar-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  min-width: 70px;
  text-align: right;
}

.data-bar-track {
  flex: 1;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.data-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
}

.data-ratio-bar {
  display: flex;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
}

.data-ratio-fill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.data-ratio-male {
  background: var(--navy-light);
  color: var(--white);
}

.data-ratio-female {
  background: var(--gold);
  color: var(--navy);
}

.data-ratio-exp {
  background: var(--gold);
  color: var(--navy);
}

.data-ratio-unexp {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.data-item-small {
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.data-small-value {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.data-timestamp {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 2rem;
  text-align: center;
}

/* ==========================================================
   WORKS
   ========================================================== */
.works {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.works-subtitle {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2rem;
  text-align: center;
}

.flow-accordion {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: left;
}

.flow-acc-item {
  border-bottom: 1px solid var(--mid-gray);
}

.flow-acc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
  cursor: pointer;
  transition: background var(--transition);
}

.flow-acc-header:hover {
  background: var(--light-gray);
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 -1rem;
  border-radius: 6px;
}

.flow-step-num {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
}

.flow-acc-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}

.flow-acc-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.flow-acc-item.open .flow-acc-toggle {
  transform: rotate(45deg);
}

.flow-acc-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.flow-acc-item.open .flow-acc-detail {
  max-height: 400px;
  padding: 0 0 1.5rem 3.5rem;
}

.flow-acc-detail p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.flow-acc-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.flow-acc-tags span {
  padding: 3px 10px;
  background: var(--light-gray);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
}

.flow-acc-point {
  font-size: 0.85rem !important;
  color: var(--gold) !important;
  font-weight: 500;
  padding-left: 1rem;
  border-left: 2px solid var(--gold-light);
}

.works-career {
  margin-bottom: 4rem;
}

.career-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.career-step {
  text-align: center;
  padding: 1.5rem 1.2rem;
  background: var(--light-gray);
  border-radius: 8px;
  flex: 1;
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.career-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.1);
}

.career-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(200, 169, 110, 0.12);
  padding: 2px 10px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.career-skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}

.career-skills li {
  font-size: 0.68rem;
  color: var(--text-light);
  background: var(--white);
  padding: 2px 8px;
  border-radius: 3px;
}

.career-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.career-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.career-step p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.career-arrow {
  width: 24px;
  height: 2px;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
}

.career-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border-left: 8px solid var(--gold);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.works-reward { margin-top: 2rem; }

.reward-box {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: left;
}

.reward-box h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.reward-box > p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.reward-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.reward-detail {
  background: var(--white);
  border-radius: 6px;
  padding: 1.2rem;
  border-left: 3px solid var(--gold);
}

.reward-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.reward-detail-value {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.reward-detail-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ==========================================================
   ENVIRONMENT
   ========================================================== */
.environment {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.environment > .section-label,
.environment > .section-heading {
  padding: 0 2rem;
}

.env-concept {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  gap: 0;
  align-items: center;
}

.env-concept-photo {
  position: relative;
  border-radius: 8px;
  overflow: visible;
  padding-bottom: 1.5rem;
}

.env-concept-photo img:first-child {
  width: 85%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.env-concept-photo img:last-child {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  width: 50%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--white);
}

.env-concept-text {
  text-align: left;
  padding: 3rem;
  margin-left: -2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 0 12px 12px 0;
  position: relative;
  z-index: 2;
}

.env-concept-lead {
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--white);
}

.env-concept-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.85;
}

.env-on-off {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 2rem;
  text-align: left;
}

.env-column {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
}

.env-col-title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.env-col-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.env-col-badge--on {
  background: var(--navy);
  color: var(--white);
}

.env-col-badge--off {
  background: var(--gold);
  color: var(--white);
}

.env-sub-title {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mid-gray);
}

.club-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.club-card {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.8rem;
  background: var(--white);
  border-radius: 6px;
  transition: transform var(--transition);
}

.club-card:hover {
  transform: translateY(-2px);
}

.club-card svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.club-card h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.club-card p {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.5;
}

.env-gallery-slider {
  margin: 3rem 0;
  padding: 0 4%;
}

.env-gallery-slider .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 8 / 5;
}

.env-gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.env-gallery-pagination {
  margin-top: 1rem;
  position: relative !important;
}

.env-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
}

.env-section-title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.env-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.env-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.env-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.env-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.env-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.env-benefits-section {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  text-align: left;
}

.env-benefits-simple {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.env-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  flex: 1;
  min-width: 240px;
  padding: 1.2rem;
  background: var(--light-gray);
  border-radius: 8px;
}

.env-benefit-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.env-benefit-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.env-benefit-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.env-events {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  text-align: left;
}

.env-events-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.env-event-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition);
}

.env-event-card:hover {
  transform: translateY(-4px);
}

.env-event-card:nth-child(2) {
  margin-top: 0;
}

.env-event-card img {
  width: 100%;
  aspect-ratio: 5 / 3.5;
  object-fit: cover;
}

.env-event-info {
  padding: 1.2rem;
}

.env-event-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.env-event-info p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.env-event-card--no-img {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  min-height: 120px;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid #e8e4df;
}
.env-event-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.env-event-card--no-img .env-event-info {
  padding: 0;
}
.env-event-card--no-img .env-event-info h4 {
  margin-bottom: 0.5rem;
}

/* ==========================================================
   EDUCATION
   ========================================================== */
.education {
  padding: 6rem 2rem;
  background: var(--cream);
  text-align: center;
}

.edu-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 3rem;
  align-items: center;
  text-align: left;
}

.edu-feature--reverse {
  direction: rtl;
}

.edu-feature--reverse > * {
  direction: ltr;
}

.edu-feature-img {
  border-radius: 8px;
  overflow: hidden;
}

.edu-feature-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.edu-feature-text {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 8px;
  margin-left: -3rem;
  position: relative;
  z-index: 2;
  box-shadow: 12px 12px 40px rgba(27, 42, 74, 0.06);
}

.edu-feature--reverse .edu-feature-text {
  margin-left: 0;
  margin-right: -3rem;
}

.edu-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.edu-feature-text h3 {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.edu-feature-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.edu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.edu-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.05);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition);
}

.edu-card:hover {
  transform: translateY(-4px);
}

.edu-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.edu-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.edu-feature--icon {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.edu-feature--icon.edu-feature--reverse {
  flex-direction: row-reverse;
}
.edu-feature-icon-block {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 20px;
  border: 2px solid #e8e4df;
}

/* ==========================================================
   TECHNOLOGY
   ========================================================== */
.technology {
  background: var(--dark-gray);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.technology::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200, 169, 110, 0.08);
  border-radius: 50%;
}

.tech-layout {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tech-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
  margin-bottom: 3rem;
}

.tech-img,
.tech-main-img {
  border-radius: 8px;
  overflow: hidden;
}

.tech-img img,
.tech-main-img img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.tech-content h3 {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tech-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.tech-tools {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tech-tool {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.tech-quote {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2rem;
  border-left: 3px solid var(--gold);
}

.tech-quote-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tech-quote blockquote p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  font-style: italic;
}

.tech-quote cite {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-style: normal;
}

.tech-main--no-img {
  max-width: 800px;
  margin: 0 auto 2rem;
}
.tech-main--no-img .tech-content {
  text-align: center;
}
.tech-main--no-img .tech-content h3 {
  margin-bottom: 1.5rem;
}
.tech-culture {
  text-align: center;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 700px;
  border: 2px solid rgba(200,169,110,0.3);
  border-radius: 12px;
  background: rgba(200,169,110,0.05);
}
.tech-culture-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd;
}
.tech-quote--no-img {
  max-width: 700px;
  margin: 2rem auto 0;
}
.tech-quote--no-img blockquote {
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent);
  background: rgba(255,255,255,0.05);
  border-radius: 0 8px 8px 0;
}
.tech-quote--no-img blockquote p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 0.5rem;
}
.tech-quote--no-img cite {
  font-size: 0.85rem;
  color: var(--accent);
  font-style: normal;
}

.tech-quote-img {
  display: none;
}

/* ==========================================================
   VOICE
   ========================================================== */
.voice {
  padding: 6rem 2rem;
  background: var(--light-gray);
  text-align: center;
  overflow: hidden;
}

.voice-slider {
  max-width: 1300px;
  margin: 0 auto 4rem;
  padding: 0 40px;
  overflow: visible;
}
.voice-slider .swiper-slide {
  height: auto;
}

.voice-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 30px rgba(27, 42, 74, 0.07);
  text-align: left;
  height: 100%;
}

.voice-card-img {
  overflow: hidden;
}

.voice-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  min-height: 280px;
  max-height: 360px;
}

.voice-card-body {
  padding: 1.8rem;
}

.voice-card-tag {
  display: inline-block;
  background: rgba(200, 169, 110, 0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.voice-card-body h3 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.voice-card-quote {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--mid-gray);
}

.voice-card-detail dt {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 0.8rem;
}

.voice-card-detail dd {
  font-size: 0.85rem;
  color: var(--text-light);
}

.voice-prev, .voice-next {
  color: var(--navy) !important;
}

.daily-schedule-section {
  padding: 6rem 2rem;
  background: var(--light-gray);
  text-align: center;
}

.daily-schedule {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.schedule-tab {
  padding: 8px 20px;
  border: 2px solid var(--mid-gray);
  border-radius: 30px;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.schedule-tab.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.schedule-content {
  display: none;
}

.schedule-content.active {
  display: block;
}

.schedule-timeline {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mid-gray);
  align-items: center;
}

.schedule-time {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 70px;
  text-align: right;
}

.schedule-event {
  font-size: 0.9rem;
  color: var(--text);
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  padding: 6rem 2rem;
  background: var(--white);
  text-align: center;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.faq-cat {
  padding: 8px 20px;
  border: 2px solid var(--mid-gray);
  border-radius: 30px;
  background: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.faq-cat.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.faq-list {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-list.active {
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--mid-gray);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.3rem 0;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  line-height: 1.6;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.3rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  padding-left: 0.5rem;
  border-left: 2px solid var(--gold-light);
}

/* ==========================================================
   RECRUIT & ENTRY
   ========================================================== */
.recruit {
  padding: 6rem 2rem;
  background: var(--light-gray);
  text-align: center;
}

.recruit-positions {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: left;
}

.position-card {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.position-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background var(--transition);
}

.position-header:hover {
  background: var(--light-gray);
}

.position-type {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.position-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.position-toggle {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.position-card.open .position-toggle {
  transform: rotate(45deg);
}

.position-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.position-card.open .position-detail {
  max-height: 600px;
}

.position-detail dl {
  padding: 0 2rem 2rem;
}

.position-detail dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.position-detail dd {
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 2px;
}

.selection-flow {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.sel-step {
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  min-width: 100px;
}

.sel-step--last {
  background: var(--gold);
}

.sel-step-num {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.sel-step--last .sel-step-num {
  color: var(--white);
}

.sel-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.sel-step-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 4px;
}

.sel-step--last .sel-step-desc {
  color: rgba(255,255,255,0.8);
}

.sel-step--last .sel-step-label {
  color: var(--white);
}

.sel-arrow {
  width: 20px;
  height: 2px;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
}

.sel-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border-left: 7px solid var(--gold);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.flow-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

.entry-form-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.entry-lead {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.entry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.required {
  color: #d44;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--mid-gray);
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}

.btn-submit {
  display: inline-block;
  padding: 14px 60px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

.entry-thankyou {
  text-align: center;
  padding: 3rem 2rem;
}

.thankyou-inner {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.thankyou-inner svg {
  margin-bottom: 1rem;
}

.thankyou-inner h4 {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.thankyou-inner p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo .logo-main {
  color: var(--white);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-info address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.9;
}

.footer-map iframe {
  display: block;
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 2rem;
  text-align: center;
}

.footer-copy p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================
   FLOATING CTA
   ========================================================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.floating-btn--primary {
  background: var(--navy);
  color: var(--white);
}

.floating-btn--primary:hover {
  background: var(--gold);
}

.floating-btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.floating-btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

/* ==========================================================
   PRIVACY POLICY MODAL
   ========================================================== */
.pp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.pp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.pp-modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.pp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.pp-modal-close:hover {
  color: var(--navy);
}
.pp-modal h2 {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.pp-modal h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.pp-modal-body p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.pp-modal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.pp-modal-body li {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
}
.pp-date {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: right;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .nav-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .env-on-off {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .header-nav {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .header-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header-nav .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    white-space: normal;
  }

  .header-nav .nav-list a {
    font-size: 1.1rem;
    color: var(--white) !important;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span {
    background: var(--white) !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .nav-card--wide {
    grid-column: auto;
  }

  .hero-content {
    left: 6%;
    right: 6%;
  }

  .hero-prev, .hero-next {
    display: none !important;
  }

  .message-layout {
    grid-template-columns: 1fr;
  }

  .message-photo {
    max-height: 350px;
    overflow: hidden;
  }

  .message-photo img {
    border-radius: 8px 8px 0 0;
  }

  .message-text {
    margin-left: 0;
    margin-top: -1rem;
    padding: 2rem 1.5rem;
    border-radius: 0 0 8px 8px;
  }

  .data-columns {
    grid-template-columns: 1fr;
  }

  .career-path {
    flex-direction: column;
  }

  .career-arrow {
    transform: rotate(90deg);
    margin: 0.2rem 0;
  }

  .env-concept {
    grid-template-columns: 1fr;
  }

  .env-concept-photo {
    padding-bottom: 0;
  }
  .env-concept-photo img:first-child {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  .env-concept-photo img:last-child {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
  }

  .env-concept-text {
    margin-left: 0;
    border-radius: 0 0 12px 12px;
    padding: 2rem 1.5rem;
  }

  .env-on-off {
    grid-template-columns: 1fr;
  }

  .env-events-stack {
    grid-template-columns: 1fr;
  }

  .env-event-card:nth-child(2) {
    margin-top: 0;
  }

  .club-cards {
    grid-template-columns: 1fr 1fr;
  }

  .edu-feature,
  .edu-feature--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .edu-feature-text,
  .edu-feature--reverse .edu-feature-text {
    margin-left: 0;
    margin-right: 0;
    margin-top: -1.5rem;
  }

  .edu-cards {
    grid-template-columns: 1fr;
  }

  .edu-feature--icon {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .edu-feature--icon.edu-feature--reverse {
    flex-direction: column;
  }
  .edu-feature-icon-block {
    width: 100px;
    height: 100px;
  }

  .tech-main {
    grid-template-columns: 1fr;
  }

  .tech-tools {
    gap: 1.5rem;
  }

  .tech-quote {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .voice-card {
    grid-template-columns: 1fr;
  }

  .voice-card-img img {
    aspect-ratio: 16 / 9;
    min-height: auto;
    max-height: 250px;
  }

  .flow-steps {
    flex-direction: column;
  }

  .sel-step {
    min-width: 80px;
    padding: 1rem;
  }

  .sel-arrow {
    transform: rotate(90deg);
    margin: 0.2rem 0;
  }

  .entry-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .floating-cta {
    padding: 10px 1rem;
  }

  .floating-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .daily-schedule-section {
    padding: 4rem 1.5rem;
  }

  .pp-modal {
    padding: 1.5rem;
    max-height: 85vh;
  }
}

@media (max-width: 480px) {
  .nav-cards-grid {
    grid-template-columns: 1fr;
  }

  .nav-card--wide {
    grid-column: auto;
  }

  .data-grid {
    grid-template-columns: 1fr;
  }

  .schedule-tabs {
    gap: 0.3rem;
  }

  .schedule-tab {
    padding: 6px 14px;
    font-size: 0.78rem;
  }

  .faq-categories {
    gap: 0.3rem;
  }

  .faq-cat {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}
