/* =========================================
   MarbleMarle — style-v2.css
   Dynamic / Editorial design
   ========================================= */

/* ---------- Variables ---------- */
:root {
  --white:      #ffffff;
  --off-white:  #f8f6f2;
  --black:      #0f0c08;
  --dark:       #1a140d;
  --dark-mid:   #2a2018;
  --brown:      #3a2e22;
  --brown-mid:  #6a5e52;
  --brown-light:#b0a090;
  --gold:       #c4993a;
  --gold-light: #e8c96a;
  --gold-pale:  #f5edd4;
  --green:      #4a6838;
  --red:        #c84030;

  --font-sans:  'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --font-en:    'Cormorant Garamond', serif;

  --header-h:  64px;
  --max-w:    1200px;
  --ease:      0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--brown);
  line-height: 1.75;
  overflow-x: hidden;
  font-size: 15px;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* =========================================
   HEADER
   ========================================= */
.v2-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
.v2-header.scrolled {
  background: rgba(10,7,4,.92);
  border-bottom-color: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.v2-header__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.v2-header__logo {
  font-family: var(--font-sans); font-weight: 700; font-size: 1.2rem;
  color: var(--white); letter-spacing: .04em; margin-right: auto;
  transition: opacity var(--ease);
}
.v2-header__logo:hover { opacity: .7; }
.v2-gnav { display: flex; align-items: center; gap: 0; }
.v2-gnav a {
  display: block; padding: 6px 16px;
  font-size: .8rem; letter-spacing: .1em; color: rgba(255,255,255,.75);
  transition: color var(--ease);
  position: relative;
}
.v2-gnav a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform var(--ease);
}
.v2-gnav a:hover { color: var(--white); }
.v2-gnav a:hover::after { transform: scaleX(1); }
.v2-gnav__cta {
  margin-left: 16px; padding: 9px 24px;
  background: var(--gold); color: var(--white) !important;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  border: none; transition: background var(--ease) !important;
}
.v2-gnav__cta:hover { background: #a07c28 !important; }
.v2-gnav__cta::after { display: none !important; }

/* Hamburger */
.v2-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.v2-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px; transition: all .25s; }

/* Mobile drawer */
.v2-drawer {
  position: fixed; top: 0; right: -100%; bottom: 0; width: min(360px, 100vw);
  background: var(--dark); z-index: 200;
  padding: calc(var(--header-h) + 32px) 40px 40px;
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.v2-drawer.open { right: 0; }
.v2-drawer ul { display: flex; flex-direction: column; gap: 8px; }
.v2-drawer a {
  display: block; padding: 12px 0; font-size: 1rem; color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--ease);
}
.v2-drawer a:hover { color: var(--gold); }
.v2-drawer__cta {
  display: inline-block; margin-top: 24px;
  padding: 14px 32px; background: var(--gold); color: var(--white) !important;
  font-size: .88rem; font-weight: 600; letter-spacing: .08em; border: none !important;
}

/* =========================================
   HERO — large editorial
   ========================================= */
.v2-hero {
  position: relative; min-height: 100vh;
  background: var(--dark);
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* Ambient gradient blobs */
.v2-hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.v2-hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,153,58,.22) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat1 12s ease-in-out infinite;
}
.v2-hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,104,56,.25) 0%, transparent 70%);
  bottom: 0; left: -80px;
  animation: blobFloat2 14s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%,100%  { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-40px,60px) scale(1.08); }
}
@keyframes blobFloat2 {
  0%,100%  { transform: translate(0,0) scale(1); }
  50%      { transform: translate(50px,-40px) scale(1.05); }
}

/* Grid lines */
.v2-hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.v2-hero__inner {
  flex: 1; display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0; align-items: stretch;
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  width: 100%; padding-top: var(--header-h);
}

.v2-hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 0;
  position: relative;
}

.v2-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px;
}
.v2-hero__eyebrow-line {
  width: 32px; height: 1px; background: var(--gold);
}
.v2-hero__eyebrow-text {
  font-size: .72rem; letter-spacing: .28em; color: var(--gold);
  font-family: var(--font-en); font-weight: 600; text-transform: uppercase;
}

.v2-hero__title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white); line-height: 1.15;
  margin-bottom: 28px; letter-spacing: -.01em;
}
.v2-hero__title em {
  font-style: normal; color: var(--gold);
  position: relative;
}

.v2-hero__sub {
  font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.9;
  max-width: 480px; margin-bottom: 48px;
  border-left: 2px solid rgba(196,153,58,.4); padding-left: 20px;
}

.v2-hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.v2-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: .85rem; font-weight: 500;
  letter-spacing: .08em; cursor: pointer; border: none;
  transition: all var(--ease); white-space: nowrap;
}
.v2-btn--gold { background: var(--gold); color: var(--white); }
.v2-btn--gold:hover { background: var(--gold-light); color: var(--dark); }
.v2-btn--outline { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.3); }
.v2-btn--outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.06); }

/* Right column: stacked visual cards */
.v2-hero__right {
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
}
.v2-hero__card {
  flex: 1; position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
}
.v2-hero__card:last-child { border-bottom: none; }

.v2-hero__card-bg {
  position: absolute; inset: 0;
  transition: transform .6s ease;
}
.v2-hero__card:hover .v2-hero__card-bg { transform: scale(1.04); }

.v2-hero__card--farm .v2-hero__card-bg  { background: linear-gradient(135deg, #304828 0%, #507040 100%); }
.v2-hero__card--sport .v2-hero__card-bg { background: linear-gradient(135deg, #1e3a5a 0%, #3a6080 100%); }
.v2-hero__card--art .v2-hero__card-bg   { background: linear-gradient(135deg, #5a2810 0%, #8a4828 100%); }

.v2-hero__card-svg {
  width: 80px; height: 80px; position: relative; z-index: 1;
  opacity: .9;
}
.v2-hero__card-label {
  position: absolute; bottom: 14px; left: 16px; z-index: 1;
  font-size: .7rem; letter-spacing: .16em; color: rgba(255,255,255,.65);
  text-transform: uppercase; font-family: var(--font-en);
}

/* Scroll indicator */
.v2-hero__scroll {
  height: 64px; display: flex; align-items: center;
  padding: 0 48px; border-top: 1px solid rgba(255,255,255,.07);
  gap: 16px; max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.v2-hero__scroll-line {
  width: 40px; height: 1px; background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.v2-hero__scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--gold); animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}
.v2-hero__scroll-text {
  font-size: .68rem; letter-spacing: .22em; color: rgba(255,255,255,.35);
  font-family: var(--font-en); text-transform: uppercase;
}

/* =========================================
   STATS TICKER
   ========================================= */
.v2-ticker {
  background: var(--gold); padding: 16px 0;
  overflow: hidden;
}
.v2-ticker__track {
  display: flex; gap: 0; white-space: nowrap;
  animation: tickerMove 20s linear infinite;
}
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.v2-ticker__item {
  display: inline-flex; align-items: center; gap: 48px;
  padding: 0 48px;
  font-size: .75rem; letter-spacing: .18em; color: var(--dark);
  font-family: var(--font-en); text-transform: uppercase; font-weight: 600;
}
.v2-ticker__dot { width: 5px; height: 5px; background: rgba(0,0,0,.3); border-radius: 50%; }

/* =========================================
   SECTION COMMONS
   ========================================= */
.v2-section { padding: 120px 0; }
.v2-section--dark { background: var(--dark); color: var(--white); }
.v2-section--off  { background: var(--off-white); }
.v2-section--mid  { background: #141008; color: var(--white); }

.v2-sect-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.v2-sect-label__num {
  font-family: var(--font-en); font-size: .72rem; color: var(--gold);
  letter-spacing: .1em; font-weight: 600;
}
.v2-sect-label__line { flex: 1; max-width: 40px; height: 1px; background: var(--gold); }
.v2-sect-label__text {
  font-size: .7rem; letter-spacing: .26em; color: var(--gold);
  font-family: var(--font-en); text-transform: uppercase; font-weight: 600;
}

.v2-sect-title {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.25; letter-spacing: -.01em;
}
.v2-sect-title--white { color: var(--white); }
.v2-sect-title--dark  { color: var(--brown); }

.v2-sect-lead {
  font-size: .9rem; line-height: 1.9;
  color: var(--brown-mid); margin-top: 16px;
  max-width: 520px;
}
.v2-sect-lead--white { color: rgba(255,255,255,.55); }

/* =========================================
   ABOUT
   ========================================= */
.v2-about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 80px;
}
.v2-about__visual {
  position: relative; background: var(--dark-mid);
  min-height: 520px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.v2-about__visual-inner {
  position: relative; z-index: 1; text-align: center; padding: 40px;
}
.v2-about__visual svg { width: 160px; height: 160px; margin: 0 auto 20px; }
.v2-about__visual-label {
  font-size: .7rem; letter-spacing: .22em; color: rgba(255,255,255,.45);
  text-transform: uppercase; font-family: var(--font-en);
}
.v2-about__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #2a3a20 0%, #1e2a16 100%);
  opacity: .9;
}
.v2-about__body {
  padding: 80px 64px; background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.v2-about__text { font-size: .9rem; line-height: 2; color: var(--brown-mid); margin: 24px 0 40px; }
.v2-about__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--off-white); }
.v2-about__stat { background: var(--white); padding: 24px 20px; text-align: center; }
.v2-about__stat-num {
  font-family: var(--font-en); font-size: 2.4rem; font-weight: 600;
  color: var(--brown); display: block; line-height: 1;
}
.v2-about__stat-num small { font-size: 1rem; }
.v2-about__stat-lbl { font-size: .72rem; color: var(--brown-mid); letter-spacing: .1em; margin-top: 6px; display: block; }

/* =========================================
   PROGRAMS — editorial grid
   ========================================= */
.v2-programs__header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 80px;
}
.v2-programs__intro { font-size: .88rem; line-height: 2; color: rgba(255,255,255,.5); }

.v2-programs__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 360px 280px;
  gap: 2px;
}
.v2-prog-card {
  position: relative; overflow: hidden; cursor: pointer;
}
.v2-prog-card--1 { grid-column: 1 / 6; grid-row: 1; }
.v2-prog-card--2 { grid-column: 6 / 9; grid-row: 1; }
.v2-prog-card--3 { grid-column: 9 / 13; grid-row: 1; }
.v2-prog-card--4 { grid-column: 1 / 5; grid-row: 2; }
.v2-prog-card--5 { grid-column: 5 / 9; grid-row: 2; }
.v2-prog-card--6 { grid-column: 9 / 13; grid-row: 2; }

.v2-prog-card__bg {
  position: absolute; inset: 0;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.v2-prog-card:hover .v2-prog-card__bg { transform: scale(1.06); }

.v2-prog-card--1 .v2-prog-card__bg { background: linear-gradient(145deg, #2a3e1a 0%, #4a6830 60%, #608848 100%); }
.v2-prog-card--2 .v2-prog-card__bg { background: linear-gradient(145deg, #1a2a3e 0%, #2a4a6a 60%, #3a6080 100%); }
.v2-prog-card--3 .v2-prog-card__bg { background: linear-gradient(145deg, #3e2010 0%, #6a3820 60%, #8a5030 100%); }
.v2-prog-card--4 .v2-prog-card__bg { background: linear-gradient(145deg, #1e1408 0%, #3a2a18 100%); }
.v2-prog-card--5 .v2-prog-card__bg { background: linear-gradient(145deg, #2e2214 0%, #5a3a20 100%); }
.v2-prog-card--6 .v2-prog-card__bg { background: linear-gradient(145deg, #201810 0%, #382a1a 100%); }

.v2-prog-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
}
.v2-prog-card__svg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 80px; height: 80px; opacity: .5;
  transition: opacity var(--ease), transform var(--ease);
}
.v2-prog-card:hover .v2-prog-card__svg { opacity: .75; transform: translate(-50%, -65%); }

.v2-prog-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px; z-index: 1;
}
.v2-prog-card__tag {
  display: inline-block; padding: 3px 10px; margin-bottom: 8px;
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--font-en); font-weight: 600;
  background: rgba(196,153,58,.9); color: var(--dark);
}
.v2-prog-card__title {
  font-size: 1rem; font-weight: 700; color: var(--white);
  line-height: 1.4; margin-bottom: 6px;
}
.v2-prog-card--1 .v2-prog-card__title { font-size: 1.3rem; }
.v2-prog-card__meta {
  font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: .04em;
}
.v2-prog-card__arrow {
  position: absolute; top: 20px; right: 20px; z-index: 1;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .8rem;
  transition: all var(--ease);
}
.v2-prog-card:hover .v2-prog-card__arrow {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}

/* =========================================
   STATS — dark dramatic
   ========================================= */
.v2-stats__inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,.06);
}
.v2-stat-block {
  background: var(--dark); padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden;
  transition: background var(--ease);
}
.v2-stat-block:hover { background: #1e160e; }
.v2-stat-block::before {
  content: ''; position: absolute; top: 0; left: 40px; right: 40px;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .4s ease;
}
.v2-stat-block:hover::before { transform: scaleX(1); }
.v2-stat-num {
  font-family: var(--font-en); font-size: 4rem; font-weight: 600;
  color: var(--white); line-height: 1; display: block;
  transition: color var(--ease);
}
.v2-stat-block:hover .v2-stat-num { color: var(--gold); }
.v2-stat-num small { font-size: 1.6rem; }
.v2-stat-lbl { font-size: .75rem; color: rgba(255,255,255,.4); letter-spacing: .12em; margin-top: 12px; display: block; }
.v2-stat-desc { font-size: .72rem; color: rgba(255,255,255,.25); margin-top: 8px; }

/* =========================================
   ACTIVITIES — magazine grid
   ========================================= */
.v2-activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px; margin-top: 64px;
}
.v2-act-item {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer;
}
.v2-act-item--wide { grid-column: span 2; aspect-ratio: unset; }
.v2-act-item__bg {
  position: absolute; inset: 0;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.v2-act-item:hover .v2-act-item__bg { transform: scale(1.05); }
.v2-act-item--a1 .v2-act-item__bg { background: linear-gradient(145deg, #304828 0%, #4a6838 100%); }
.v2-act-item--a2 .v2-act-item__bg { background: linear-gradient(145deg, #1e3a5a 0%, #2a5070 100%); }
.v2-act-item--a3 .v2-act-item__bg { background: linear-gradient(145deg, #5a2810 0%, #7a3820 100%); }
.v2-act-item--a4 .v2-act-item__bg { background: linear-gradient(145deg, #3a2a18 0%, #5a4028 100%); }
.v2-act-item--a5 .v2-act-item__bg { background: linear-gradient(145deg, #2a3e20 0%, #406030 100%); }

.v2-act-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 60%);
}
.v2-act-item__svg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%);
  width: 64px; height: 64px; opacity: .45;
}
.v2-act-item--wide .v2-act-item__svg { width: 100px; height: 100px; }
.v2-act-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px; z-index: 1;
}
.v2-act-item__tag {
  display: inline-block; padding: 2px 8px; margin-bottom: 6px;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  font-family: var(--font-en); background: var(--gold); color: var(--dark); font-weight: 600;
}
.v2-act-item__title { font-size: .82rem; color: var(--white); line-height: 1.5; }
.v2-act-item--wide .v2-act-item__title { font-size: 1rem; }

/* =========================================
   NEWS
   ========================================= */
.v2-news__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  margin-top: 64px;
}
.v2-news-card {
  background: var(--off-white); overflow: hidden;
  transition: background var(--ease);
  cursor: pointer;
}
.v2-news-card:hover { background: var(--gold-pale); }
.v2-news-card__header {
  padding: 28px 28px 0; display: flex; justify-content: space-between; align-items: center;
}
.v2-news-card__date {
  font-family: var(--font-en); font-size: .8rem; color: var(--brown-mid); letter-spacing: .06em;
}
.v2-news-card__tag {
  font-size: .62rem; letter-spacing: .12em; font-family: var(--font-en);
  padding: 2px 8px; font-weight: 600; text-transform: uppercase;
}
.v2-news-card__tag--event   { background: var(--gold); color: var(--dark); }
.v2-news-card__tag--program { background: var(--green); color: var(--white); }
.v2-news-card__tag--info    { background: var(--brown-mid); color: var(--white); }
.v2-news-card__title {
  padding: 16px 28px 28px;
  font-size: .88rem; line-height: 1.7; color: var(--brown); font-weight: 500;
}
.v2-news-card__arrow {
  display: block; padding: 16px 28px;
  border-top: 1px solid rgba(0,0,0,.06);
  font-size: .72rem; color: var(--gold); letter-spacing: .08em;
  display: flex; align-items: center; gap: 6px;
}
.v2-news-card__arrow::after { content: '→'; }

/* =========================================
   CTA BANNER
   ========================================= */
.v2-cta {
  background: var(--dark-mid);
  position: relative; overflow: hidden; padding: 120px 0;
}
.v2-cta__bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-en); font-size: 18vw; font-weight: 700;
  color: rgba(255,255,255,.025); white-space: nowrap; pointer-events: none;
  letter-spacing: -.03em; line-height: 1;
}
.v2-cta__inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.v2-cta__eyebrow {
  font-size: .7rem; letter-spacing: .26em; color: var(--gold); margin-bottom: 20px;
  font-family: var(--font-en); text-transform: uppercase;
}
.v2-cta__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--white);
  line-height: 1.35;
}
.v2-cta__body { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 16px; line-height: 1.9; }
.v2-cta__actions {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  flex-shrink: 0;
}
.v2-cta__actions .v2-btn { min-width: 220px; justify-content: center; }
.v2-btn--white-outline {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
}
.v2-btn--white-outline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

/* =========================================
   COMPANY
   ========================================= */
.v2-company__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-top: 64px; align-items: start;
}
.v2-company__lead {
  font-size: 1rem; line-height: 2; color: var(--brown-mid);
  border-left: 3px solid var(--gold); padding-left: 24px; margin-bottom: 32px;
}
.v2-info-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.v2-info-table th, .v2-info-table td { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.07); vertical-align: top; }
.v2-info-table th { width: 120px; color: var(--brown-mid); font-weight: 500; white-space: nowrap; }
.v2-info-table td { color: var(--brown); }
.v2-info-table a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* =========================================
   ACCESS
   ========================================= */
.v2-access__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 64px;
}
.v2-access__info { background: var(--off-white); padding: 60px; }
.v2-access__dl dt { font-size: .75rem; letter-spacing: .12em; color: var(--brown-mid); text-transform: uppercase; font-family: var(--font-en); margin-bottom: 4px; }
.v2-access__dl dd { font-size: .9rem; color: var(--brown); margin-bottom: 24px; }
.v2-access__map {
  background: var(--dark-mid); min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.v2-access__map svg { width: 120px; height: 100px; }
.v2-access__map-label {
  font-size: .7rem; letter-spacing: .2em; color: rgba(255,255,255,.35);
  text-transform: uppercase; font-family: var(--font-en);
}

/* =========================================
   FOOTER
   ========================================= */
.v2-footer { background: var(--black); color: rgba(255,255,255,.6); }
.v2-footer__main { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.06); }
.v2-footer__inner {
  display: grid; grid-template-columns: 300px 1fr; gap: 80px;
}
.v2-footer__logo {
  font-family: var(--font-sans); font-weight: 700; font-size: 1.35rem;
  color: var(--white); letter-spacing: .04em; display: block; margin-bottom: 16px;
}
.v2-footer__tagline { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 24px; line-height: 1.7; }
.v2-footer__contact { font-size: .78rem; color: rgba(255,255,255,.35); }
.v2-footer__contact a { color: var(--gold); }

.v2-footer__nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.v2-footer__nav-head { font-size: .68rem; letter-spacing: .22em; color: rgba(255,255,255,.3); text-transform: uppercase; font-family: var(--font-en); margin-bottom: 16px; }
.v2-footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.v2-footer__nav a { font-size: .8rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.v2-footer__nav a:hover { color: var(--gold); }

.v2-footer__bar { padding: 20px 0; }
.v2-footer__bar-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.v2-footer__copy { font-size: .72rem; color: rgba(255,255,255,.2); letter-spacing: .06em; }
.v2-footer__links { display: flex; gap: 24px; }
.v2-footer__links a { font-size: .72rem; color: rgba(255,255,255,.2); transition: color var(--ease); }
.v2-footer__links a:hover { color: rgba(255,255,255,.5); }

/* =========================================
   SCROLL FADE
   ========================================= */
.v2-fade { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.v2-fade.is-visible { opacity: 1; transform: translateY(0); }
.v2-fade--delay-1 { transition-delay: .08s; }
.v2-fade--delay-2 { transition-delay: .16s; }
.v2-fade--delay-3 { transition-delay: .24s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .v2-hero__inner { grid-template-columns: 1fr; }
  .v2-hero__right { display: none; }
  .v2-programs__header { grid-template-columns: 1fr; gap: 24px; }
  .v2-programs__grid { grid-template-rows: 300px 240px; }
  .v2-about__grid, .v2-company__grid, .v2-access__grid { grid-template-columns: 1fr; }
  .v2-stats__inner { grid-template-columns: 1fr 1fr; }
  .v2-cta__inner { grid-template-columns: 1fr; }
  .v2-footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .v2-news__grid { grid-template-columns: 1fr; }
  .v2-activities__grid { grid-template-columns: 1fr 1fr; }
  .v2-act-item--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .container, .v2-header__inner, .v2-hero__scroll, .v2-cta__inner { padding-left: 24px; padding-right: 24px; }
  .v2-gnav { display: none; }
  .v2-hamburger { display: flex; }
  .v2-hero__title { font-size: 2.4rem; }
  .v2-hero__left { padding: 60px 0; }
  .v2-programs__grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 240px); }
  .v2-prog-card--1 { grid-column: 1 / 3; }
  .v2-prog-card--2, .v2-prog-card--3, .v2-prog-card--4, .v2-prog-card--5, .v2-prog-card--6 { grid-column: span 1; }
  .v2-stats__inner { grid-template-columns: 1fr 1fr; }
  .v2-activities__grid { grid-template-columns: 1fr; }
  .v2-act-item--wide { grid-column: span 1; }
  .v2-footer__nav { grid-template-columns: 1fr 1fr; }
  .v2-about__body { padding: 48px 32px; }
  .v2-about__stats { grid-template-columns: repeat(3, 1fr); }
  .v2-access__info { padding: 40px 32px; }
}
