/* ══════════════════════════════════════
   MG POWER GROUP — Design System
   Color: Dark Navy + Gold, Elegant
   ══════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --navy:          #0B1A2D;
  --navy-mid:      #142A45;
  --navy-light:    #1C3A5E;
  --gold:          #C5A255;
  --gold-light:    #D4B76A;
  --gold-dark:     #A8873E;
  --gold-bg:       rgba(197,162,85,0.08);

  --bg:            #FFFFFF;
  --bg-alt:        #F7F6F3;
  --bg-dark:       #0B1A2D;
  --bg-cream:      #FAF8F5;
  --border:        #E0D8CC;
  --border-light:  #EDE8E0;

  --text-primary:  #0B1A2D;
  --text-body:     #3A3A3A;
  --text-sub:      #5C5C5C;
  --text-muted:    #8A8A8A;
  --text-white:    #FFFFFF;
  --text-white-dim:rgba(255,255,255,0.75);
  --text-gold:     #C5A255;

  --heading-xl:    clamp(42px, 6vw, 72px);
  --heading-lg:    clamp(32px, 4vw, 52px);
  --heading-md:    clamp(24px, 3vw, 36px);
  --heading-sm:    clamp(18px, 2vw, 24px);
  --body-lg:       18px;
  --body-md:       16px;
  --body-sm:       14px;

  --section-y:     clamp(48px, 8vw, 120px);
  --content-gap:   clamp(40px, 5vw, 80px);
  --max-width:     1200px;
  --radius:        8px;
  --transition:    0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --paper-surface:
    radial-gradient(circle at 18% 14%, rgba(197,162,85,0.035) 0 1px, transparent 1.7px),
    radial-gradient(circle at 82% 28%, rgba(11,26,45,0.025) 0 1px, transparent 1.8px),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(250,248,245,0.9) 42%, rgba(244,240,232,0.62));
  --paper-grain:
    repeating-linear-gradient(0deg, rgba(11,26,45,0.018) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(197,162,85,0.018) 0 1px, transparent 1px 7px);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html.desktop-scale-active { overflow-x: hidden; }

body {
  position: relative;
  background-color: #fbfaf7;
  background-image:
    var(--paper-grain),
    radial-gradient(circle at 12% 10%, rgba(197,162,85,0.10), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(11,26,45,0.045), transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, #f7f4ee 100%);
  background-attachment: fixed;
  color: var(--text-body);
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--body-md);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Noto Serif JP', Georgia, serif;
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}

.heading-xl { font-size: var(--heading-xl); }
.heading-lg { font-size: var(--heading-lg); }
.heading-md { font-size: var(--heading-md); }
.heading-sm { font-size: var(--heading-sm); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.accent-bar {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}

.text-gold { color: var(--gold); }
.text-white { color: var(--text-white); }

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,162,85,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(11,26,45,0.62), rgba(11,26,45,0.38));
  backdrop-filter: blur(16px) saturate(115%);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.is-scrolled,
.navbar:hover,
.navbar:focus-within {
  background: linear-gradient(180deg, rgba(11,26,45,0.86), rgba(11,26,45,0.68));
  border-bottom-color: rgba(197,162,85,0.14);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

@media (min-width: 769px) {
  .navbar-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 72px;
    height: auto;
    gap: 12px 18px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .navbar-logo {
    grid-column: 1;
    justify-self: start;
    align-self: center;
  }

  .nav-top-actions {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    display: flex;
    align-items: center;
  }

  .nav-links {
    grid-column: 2;
    justify-self: center;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 12px;
    padding: 6px 11px;
  }

  .lang-switch {
    flex-shrink: 0;
    margin-left: 0;
  }

  .lang-switch a {
    padding: 4px 10px;
  }
}

.navbar-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin-left: 0;
}
.navbar-logo img {
  height: 44px;
  width: auto;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.navbar-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

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

.nav-links a {
  color: var(--text-white-dim);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  transition: color var(--transition);
  position: relative;
}
.nav-links > a + a::before,
.nav-links > a + .nav-dropdown::before,
.nav-links > .nav-dropdown + a::before,
.nav-links > .nav-dropdown + .nav-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(197,162,85,0.22);
  transform: translateY(-50%);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: block;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1001;
  background: var(--navy);
  border: 1px solid rgba(197,162,85,0.15);
  border-radius: var(--radius);
  min-width: 150px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: all var(--transition);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  text-align: center;
}
.nav-dropdown-menu a::before {
  content: none !important;
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
  border: 1px solid rgba(197,162,85,0.3);
  border-radius: 20px;
  padding: 4px;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  color: var(--text-white-dim);
  transition: all var(--transition);
}
.lang-switch a.active {
  background: var(--gold);
  color: var(--navy);
}
.lang-switch a:hover:not(.active) {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all var(--transition);
}

/* ══════════════════════════════════════
   HERO — Split: left text / right image
   ══════════════════════════════════════ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(24px, 4vw, 60px) 80px clamp(24px, 5vw, 80px);
  order: -1;
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Subtle gradient fade from image into the text area */
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    rgba(11,26,45,0.6) 12%,
    rgba(11,26,45,0.15) 30%,
    rgba(11,26,45,0) 50%
  );
  pointer-events: none;
}
/* Slight top/bottom edge softening */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(11,26,45,0.3) 0%, transparent 15%),
    linear-gradient(to top, rgba(11,26,45,0.3) 0%, transparent 15%);
  pointer-events: none;
}

.hero h1 {
  color: var(--text-white);
  font-size: var(--heading-xl);
  margin-bottom: 24px;
}
html.desktop-scale-active .hero h1 {
  font-size: 72px;
}

.hero p {
  color: var(--text-white-dim);
  font-size: var(--body-lg);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-group-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,162,85,0.35);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  max-width: fit-content;
}
.hero-group-link:hover {
  background: rgba(197,162,85,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,162,85,0.18);
}
.hero-group-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197,162,85,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.hero-group-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-group-link-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white-dim);
}
.hero-group-link-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.hero-group-link:hover .hero-group-link-name { color: var(--gold); }
.hero-group-link-arrow {
  transition: transform var(--transition);
}
.hero-group-link:hover .hero-group-link-arrow { transform: translateX(4px); }

/* Legacy: hide .hero-bg if still in markup */
.hero-bg { display: none; }

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.section {
  padding: var(--section-y) 0;
  position: relative;
  background-image: var(--paper-surface);
  background-blend-mode: normal;
}
.section-dark {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 20% 10%, rgba(197,162,85,0.10), transparent 32%),
    var(--navy);
  color: var(--text-white);
}
.section-alt {
  background-color: var(--bg-alt);
}
.section-cream {
  background-color: var(--bg-cream);
}

.section-header {
  text-align: center;
  margin-bottom: var(--content-gap);
}
.section-header .eyebrow {
  margin-bottom: 16px;
  display: block;
}
.section-header h2 {
  margin-bottom: 20px;
}
.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-sub);
  font-size: var(--body-lg);
  line-height: 1.8;
}
.section-dark .section-header p {
  color: var(--text-white-dim);
}

/* ── Split Section ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split-text-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}
.split-text-only .split-text {
  max-width: 760px;
  margin: 0 auto;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197,162,85,0.15);
  border-radius: 12px;
  pointer-events: none;
}

.split-text .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.split-text h2 {
  margin-bottom: 20px;
}
.split-text p {
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 24px;
}

/* ── Trading Role ── */
.trading-role-section,
.oil-role-section,
.worldwide-role-section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.trading-role-content,
.oil-role-content,
.worldwide-role-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.trading-role-content .accent-bar,
.oil-role-content .accent-bar,
.worldwide-role-content .accent-bar {
  display: block;
  margin: 0 auto 16px;
}

.trading-role-content .eyebrow,
.oil-role-content .eyebrow,
.worldwide-role-content .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.trading-role-content h2,
.oil-role-content h2,
.worldwide-role-content h2 {
  margin-bottom: 24px;
}

.trading-role-content p,
.oil-role-content p,
.worldwide-role-content p {
  color: var(--text-sub);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
}

.global-incubation-section {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.global-incubation-image {
  max-width: 1080px;
  margin: 0 auto clamp(56px, 6vw, 88px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.global-incubation-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.global-incubation-content {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.global-incubation-content .accent-bar {
  display: block;
  margin: 0 auto 16px;
}

.global-incubation-content .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.global-incubation-content h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  text-wrap: balance;
}

.global-incubation-content p {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-sub);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
}

.ngo-collaboration-section {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.ngo-collaboration-image {
  max-width: 960px;
  padding: clamp(14px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.72);
}

.ngo-collaboration-image img {
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(197,162,85,0.12);
}

.card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body .btn {
  margin-top: 24px;
  align-self: center;
}
.card-body h3 {
  font-size: var(--heading-sm);
  margin-bottom: 12px;
  text-align: center;
}
.card-body p {
  color: var(--text-sub);
  font-size: var(--body-sm);
  line-height: 1.7;
}

/* ── Business Overview ── */
.business-overview {
  background-color: var(--bg-cream);
  background-image:
    var(--paper-grain),
    linear-gradient(180deg, rgba(250,248,245,0.92) 0%, rgba(255,255,255,0.86) 100%);
}

.business-overview-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin: 0 auto 42px;
  position: relative;
  z-index: 2;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.business-overview-label::before,
.business-overview-label::after {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.business-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.business-overview-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 6vw, 80px);
  row-gap: 18px;
  padding: 38px 0;
  border: 0;
  border-bottom: 1px solid rgba(197,162,85,0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-height: 100%;
  overflow: visible;
  transition: none;
}

.business-overview-card:hover {
  border-bottom-color: rgba(197,162,85,0.24);
  background: transparent;
}

.business-overview-card::before {
  content: none;
}

.business-overview-card h3 {
  position: relative;
  grid-column: 1;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0 0 14px;
  display: block;
  color: var(--navy);
  border: 0;
  border-radius: 0;
  font-family: 'Playfair Display', 'Noto Serif JP', Georgia, serif;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.01em;
}

.business-overview-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.business-overview-card > p {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  z-index: 1;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.82;
  letter-spacing: 0;
  text-align: left;
}

.business-overview-copy {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  z-index: 1;
}

.business-overview-copy p {
  margin: 0 0 18px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.82;
  letter-spacing: 0;
  text-align: left;
}

.business-overview-copy p:last-child {
  margin-bottom: 0;
}

.business-overview-scroll-card {
  --overview-scroll-height: clamp(260px, 28vw, 360px);
  --overview-expanded-height: 1600px;
  transition: row-gap 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-overview-media {
  display: contents;
}

.business-overview-scroll-card .business-overview-copy {
  max-height: var(--overview-scroll-height);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
  transition:
    max-height 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease;
  will-change: max-height, transform;
}

.business-overview-scroll-content {
  animation: businessOverviewTextScroll var(--overview-scroll-duration, 48s) linear infinite;
  will-change: transform, opacity;
}

.business-overview-scroll-card.is-expanded .business-overview-copy {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-height: var(--overview-expanded-height);
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.business-overview-scroll-card.is-expanded .business-overview-scroll-content {
  animation: none;
  opacity: 1 !important;
  transform: none !important;
}

.business-overview-scroll-card.is-expanded .business-overview-detail-btn {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  align-self: start;
  margin-top: 4px;
}

.business-overview-scroll-card.is-expanded {
  grid-template-columns: 1fr 1fr;
  row-gap: 18px;
  justify-items: stretch;
  align-items: start;
}

.business-overview-scroll-card.is-expanded .business-overview-media {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: stretch;
  width: 100%;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.business-overview-scroll-card.is-expanded .business-overview-media h3 {
  width: 100%;
  text-align: left;
}

.business-overview-scroll-card.is-expanded .business-overview-media h3::after {
  left: 0;
  transform: none;
}

.business-overview-scroll-card h3,
.business-overview-scroll-card .business-overview-image,
.business-overview-scroll-card .business-overview-media,
.business-overview-scroll-card .business-overview-detail-btn {
  transition:
    width 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.business-overview-detail-btn {
  position: relative;
  grid-column: 2;
  grid-row: 3;
  align-self: start;
  justify-self: center;
  z-index: 4;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(197,162,85,0.45);
  border-radius: 999px;
  background: rgba(11,26,45,0.88);
  color: #fff;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.business-overview-scroll-card:hover .business-overview-detail-btn,
.business-overview-scroll-card:focus-within .business-overview-detail-btn,
.business-overview-scroll-card.is-expanded .business-overview-detail-btn {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.business-overview-detail-btn:hover,
.business-overview-detail-btn:focus-visible {
  background: var(--gold);
  color: var(--navy);
}

.business-overview-image {
  position: relative;
  grid-column: 1;
  width: 100%;
  margin-top: 14px;
  align-self: start;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(197,162,85,0.24);
  box-shadow: 0 12px 28px rgba(11,26,45,0.08);
}

.business-overview-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,26,45,0.06), rgba(11,26,45,0.18));
  pointer-events: none;
}

.business-overview-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.business-overview-scroll-card .business-overview-image img {
  height: var(--overview-scroll-height);
  aspect-ratio: auto;
}

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
}
.team-card-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  padding: 3px;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card h3 {
  font-size: var(--heading-sm);
  margin-bottom: 4px;
}
.team-card .role {
  color: var(--gold);
  font-size: var(--body-sm);
  font-weight: 500;
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding: 48px 0;
}

.stat {
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: var(--body-sm);
  color: var(--text-sub);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-dark .stat-label {
  color: var(--text-white-dim);
}

/* ── Gallery Row ── */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-row.gallery-row-centered {
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(197,162,85,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--text-white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--text-white-dim);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .hero-actions {
  justify-content: center;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: #070F1A;
  color: var(--text-white-dim);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: var(--body-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: var(--body-sm);
  color: var(--text-white-dim);
  padding: 6px 0;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ══════════════════════════════════════
   PAGE HERO (sub pages) — Split layout
   ══════════════════════════════════════ */
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: clamp(512px, 66vh, 700px);
  padding-top: 104px;
  background: var(--navy);
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vh, 72px) clamp(24px, 4vw, 40px) clamp(56px, 8vh, 80px) clamp(24px, 5vw, 80px);
}
.page-hero h1 {
  color: var(--text-white);
  font-size: var(--heading-lg);
  margin-bottom: 16px;
}
.page-hero p {
  color: var(--text-white-dim);
  max-width: 500px;
  font-size: var(--body-lg);
  line-height: 1.7;
  margin-bottom: 24px;
}

.page-hero-image {
  position: relative;
  overflow: hidden;
}
.page-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.page-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    rgba(11,26,45,0.55) 15%,
    rgba(11,26,45,0.1) 35%,
    rgba(11,26,45,0) 55%
  );
  pointer-events: none;
}
.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(11,26,45,0.25) 0%, transparent 12%),
    linear-gradient(to top, rgba(11,26,45,0.25) 0%, transparent 12%);
  pointer-events: none;
}

/* Remove gradient for PC on specific pages */
.no-overlap .page-hero-image::before,
.no-overlap .page-hero-image::after {
  display: none !important;
}

/* Legacy: hide old bg div */
.page-hero-bg { display: none; }

/* Management page photo carousel */
.management-page-hero {
  grid-template-columns: 48% 52%;
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 48%, rgba(18, 52, 82, 0.96) 100%);
}

.management-page-hero .page-hero-content {
  padding-right: clamp(40px, 5vw, 88px);
}

.management-hero-carousel {
  isolation: isolate;
  align-items: center;
  justify-content: flex-start;
  margin-left: -64px;
  padding-left: 64px;
  padding-top: 0;
  background:
    radial-gradient(circle at center, rgba(212, 175, 85, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(11, 26, 45, 0.96), rgba(15, 35, 58, 0.92));
  cursor: grab;
  overflow: hidden;
  scrollbar-width: none;
}

.management-hero-carousel::-webkit-scrollbar {
  display: none;
}

.management-hero-carousel.is-dragging {
  cursor: grabbing;
}

.management-hero-carousel::after {
  display: block !important;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 30%;
  pointer-events: none;
}

.management-hero-carousel.management-hero-carousel::before {
  display: none !important;
}

.management-hero-carousel.management-hero-carousel::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(11, 26, 45, 0.98) 0%,
    rgba(11, 26, 45, 0.85) 25%,
    rgba(11, 26, 45, 0.45) 60%,
    rgba(11, 26, 45, 0) 100%
  ) !important;
}

.management-carousel-track {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  width: max-content;
  padding: 0 clamp(24px, 4vw, 54px);
  will-change: transform;
}

.management-carousel-card {
  flex: 0 0 auto;
  height: clamp(250px, 38vh, 430px);
  width: auto;
  margin: 0;
  overflow: visible;
  border-radius: 8px;
  box-shadow: none;
  border: none;
  background: transparent;
  cursor: inherit;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.management-carousel-card img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.management-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.management-gallery-grid .gallery-item-fit {
  background: var(--navy);
}

.management-gallery-grid .gallery-item-fit img {
  object-fit: contain;
  object-position: center;
  background: var(--navy);
}

/* Oil page hero */
.oil-page-hero,
.precious-page-hero,
.worldwide-page-hero,
.current-focus-page-hero,
.incubation-page-hero {
  padding-top: 72px;
  display: block;
  min-height: 0;
  background: var(--navy);
}

.oil-page-hero .page-hero-image,
.precious-page-hero .page-hero-image,
.worldwide-page-hero .page-hero-image,
.current-focus-page-hero .page-hero-image,
.incubation-page-hero .page-hero-image {
  height: clamp(460px, 72vh, 820px);
  width: 100%;
  max-width: none;
  display: block;
}

.oil-page-hero .page-hero-image img,
.precious-page-hero .page-hero-image img,
.worldwide-page-hero .page-hero-image img,
.current-focus-page-hero .page-hero-image img,
.incubation-page-hero .page-hero-image img {
  display: block;
  width: 100%;
  object-position: center;
}

.oil-page-hero .page-hero-image::before,
.oil-page-hero .page-hero-image::after,
.precious-page-hero .page-hero-image::before,
.precious-page-hero .page-hero-image::after,
.worldwide-page-hero .page-hero-image::before,
.worldwide-page-hero .page-hero-image::after,
.current-focus-page-hero .page-hero-image::before,
.current-focus-page-hero .page-hero-image::after,
.incubation-page-hero .page-hero-image::before,
.incubation-page-hero .page-hero-image::after {
  display: none !important;
}

.incubation-system-section .split-text {
  max-width: 860px;
}

.incubation-system-visual {
  max-width: 1040px;
  margin: 0 auto clamp(42px, 6vw, 80px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(11, 26, 45, 0.12);
}

.incubation-system-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.incubation-system-section .heading-lg {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.incubation-system-section p {
  color: var(--text-main);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 2;
}

.incubation-support-split {
  margin-top: clamp(58px, 8vw, 112px);
  align-items: center;
}

.incubation-support-split .split-image {
  aspect-ratio: 16 / 9;
  box-shadow: 0 26px 66px rgba(11, 26, 45, 0.13);
}

.incubation-support-split .split-text {
  max-width: 620px;
  text-align: left;
}

.incubation-support-split .split-text p {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.9;
  margin-bottom: 20px;
}

.incubation-support-split .split-text p:last-child {
  margin-bottom: 0;
}

.incubation-mission-text {
  max-width: none;
  width: 100%;
  margin: clamp(20px, 3vw, 42px) auto 0;
  text-align: left;
}

.incubation-mission-text .accent-bar,
.incubation-mission-text .eyebrow {
  display: block;
}

.incubation-mission-text .eyebrow {
  margin-bottom: 12px;
}

.incubation-mission-text h2 {
  margin-bottom: 20px;
}

.incubation-mission-text p {
  color: var(--text-main);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.9;
  margin-bottom: 20px;
}

.incubation-mission-text p:last-child {
  margin-bottom: 0;
}

.incubation-platform-block {
  max-width: 1040px;
  margin: clamp(46px, 7vw, 92px) auto 0;
  text-align: center;
}

.incubation-platform-block img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(11, 26, 45, 0.12);
  margin-bottom: clamp(30px, 4vw, 52px);
}

.incubation-platform-block p {
  max-width: 880px;
  margin: 0 auto;
  color: var(--text-main);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 2;
}

.current-focus-logo-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(150px, 24vw, 260px);
  padding: clamp(42px, 8vw, 88px) 24px clamp(30px, 5vw, 56px);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(6, 55, 91, 0.98), rgba(5, 24, 43, 0.96));
}

.current-focus-logo-panel img {
  width: min(340px, 58vw);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24));
}

.current-focus-role-section {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.current-focus-role-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.current-focus-role-content .accent-bar {
  display: block;
  margin: 0 auto 16px;
}

.current-focus-role-content .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.current-focus-role-content h1 {
  margin-bottom: 24px;
}

.current-focus-role-content p {
  color: var(--text-sub);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
}

.current-focus-support-section .split {
  align-items: center;
}

.current-focus-support-section .split-image img {
  object-position: center;
}

.current-focus-value-section {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.current-focus-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(40px, 5vw, 72px);
}

.current-focus-gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.72);
}

.current-focus-gallery-item img {
  display: block;
  width: 100%;
  height: clamp(260px, 28vw, 420px);
  object-fit: cover;
  object-position: center;
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 13px;
  color: var(--text-white-dim);
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--gold);
  transition: opacity var(--transition);
}
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { margin: 0 8px; opacity: 0.4; }

/* ── Contact Form ── */
.contact-form {
  max-width: 600px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: var(--body-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--body-md);
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,162,85,0.1);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes businessOverviewTextScroll {
  0%,
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  84% {
    opacity: 1;
    transform: translateY(calc(-1 * var(--overview-scroll-distance, 120px)));
  }
  94%,
  100% {
    opacity: 0;
    transform: translateY(calc(-1 * var(--overview-scroll-distance, 120px)));
  }
}

.anim-in { animation: fade-up 0.8s cubic-bezier(0.16,1,0.3,1) both; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.25s; }
.anim-d3 { animation-delay: 0.4s; }

/* ── Gold line decoration ── */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 24px;
}

/* ══════════════════════════════════════
   MOBILE FULL-SCREEN MENU OVERLAY
   body直下に生成される独立要素
   ══════════════════════════════════════ */
/* ── Mobile menu backdrop ── */
#mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Mobile menu panel (right slide) ── */
#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 78%;
  max-width: 360px;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-menu.open {
  transform: translateX(0);
}

#mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 72px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
#mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 32px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
#mobile-menu-close:hover {
  color: var(--gold);
}

#mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 40px;
}

#mobile-menu-body a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 28px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-white-dim);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
  min-height: 60px;
}
#mobile-menu-body a:hover,
#mobile-menu-body a.active {
  color: var(--gold);
}

/* Dropdown group */
.mm-dropdown-trigger {
  cursor: pointer;
  position: relative;
}
.mm-dropdown-trigger::after {
  content: '▾';
  font-size: 16px;
  color: var(--gold);
  transition: transform var(--transition);
  margin-left: 8px;
}
.mm-dropdown-trigger.open::after {
  transform: rotate(180deg);
}

.mm-sub {
  max-height: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mm-sub.open {
  max-height: 1000px;
}
.mm-sub a {
  padding-left: 40px;
  font-size: 15px;
  min-height: 52px;
  border-bottom-color: rgba(255,255,255,0.04);
  color: var(--text-white-dim);
}

/* Language switch in mobile menu */
#mobile-menu-lang {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 4px;
  margin: 28px 28px 0;
  padding: 4px;
  border: 1px solid rgba(197,162,85,0.3);
  border-radius: 999px;
}
#mobile-menu-lang a {
  flex: 0 0 auto;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border: 0;
  border-bottom: 0;
  border-radius: 999px;
  color: var(--text-white-dim);
  min-height: unset;
  transition: all var(--transition);
  justify-content: center;
}
#mobile-menu-lang a.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
#mobile-menu-lang a:hover:not(.active) {
  color: var(--gold);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-y: 32px; }
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .nav-top-actions { display: none; }
  .lang-switch { margin-left: 0; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
    padding-top: 62px;
    padding-bottom: 16px;
  }
  .hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    order: 1;
    margin-top: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-image::before,
  .hero-image::after,
  .page-hero-image::before,
  .page-hero-image::after {
    background: none !important;
  }
  /* Restore gradient ONLY for specific pages with .gradient-hero class */
  .gradient-hero .page-hero-image::before {
    background: linear-gradient(
      to top,
      var(--navy) 10%,
      rgba(11,26,45,0.7) 45%,
      rgba(11,26,45,0.2) 75%,
      transparent 100%
    ) !important;
    display: block !important;
    z-index: 2;
  }
  .hero-content {
    position: relative;
    z-index: 5;
    order: 2;
    margin-top: 0;
    padding: 32px 24px 60px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }
  .management-page-hero {
    grid-template-columns: 1fr;
  }
  .management-page-hero::after {
    display: none;
  }
  .page-hero-image {
    height: 240px;
    order: -1;
    margin-top: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .management-hero-carousel {
    height: 280px;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
  }
  .management-carousel-track {
    gap: 14px;
    padding: 0 20px;
  }
  .management-carousel-card {
    flex: 0 0 auto;
    width: auto;
    height: 210px;
    border-radius: 6px;
  }
  .management-carousel-card img {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
  }
  .management-carousel-card:nth-child(2n),
  .management-carousel-card:nth-child(3n) {
    transform: none;
  }
  .management-gallery-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-content {
    position: relative;
    z-index: 5;
    margin-top: -30px;
    padding: 0 24px 48px;
  }
  .oil-page-hero,
  .precious-page-hero,
  .worldwide-page-hero,
  .current-focus-page-hero,
  .incubation-page-hero {
    padding-top: 72px;
  }
  .oil-page-hero .page-hero-image,
  .precious-page-hero .page-hero-image,
  .worldwide-page-hero .page-hero-image,
  .current-focus-page-hero .page-hero-image,
  .incubation-page-hero .page-hero-image {
    height: auto;
    margin-top: 0;
  }
  .oil-page-hero .page-hero-image img,
  .precious-page-hero .page-hero-image img,
  .worldwide-page-hero .page-hero-image img,
  .current-focus-page-hero .page-hero-image img,
  .incubation-page-hero .page-hero-image img {
    height: auto;
    object-fit: contain;
  }
  .oil-page-hero .page-hero-image::before,
  .oil-page-hero .page-hero-image::after,
  .precious-page-hero .page-hero-image::before,
  .precious-page-hero .page-hero-image::after,
  .worldwide-page-hero .page-hero-image::before,
  .worldwide-page-hero .page-hero-image::after,
  .current-focus-page-hero .page-hero-image::before,
  .current-focus-page-hero .page-hero-image::after,
  .incubation-page-hero .page-hero-image::before,
  .incubation-page-hero .page-hero-image::after {
    display: none !important;
  }
  .current-focus-gallery {
    grid-template-columns: 1fr;
  }
  .current-focus-gallery-item img {
    height: auto;
  }
  /* Remove overlap for specific pages */
  .no-overlap .page-hero-content {
    margin-top: 0 !important;
    padding-top: 20px !important;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-reverse { direction: ltr; }
  .split-text p {
    font-size: 13px;
  }

  .business-overview-label {
    padding: 10px 22px;
    margin-bottom: 22px;
    font-size: 14px;
  }

  .business-overview .container {
    max-width: var(--max-width);
  }

  .business-overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    border-top: 0;
    border-bottom: 0;
  }

  .business-overview-card {
    display: block;
    padding: 0 0 22px;
    border-bottom: 1px solid rgba(197,162,85,0.24);
  }

  .business-overview-card::before {
    content: none;
  }

  .business-overview-card h3 {
    min-height: 0;
    margin-bottom: 18px;
    padding-bottom: 12px;
    font-size: 20px;
    transform: none;
  }

  .business-overview-card > p,
  .business-overview-copy p {
    align-self: auto;
    font-size: 12px;
    line-height: 1.72;
  }

  .business-overview-copy {
    margin-top: 0;
  }

  .business-overview-copy p {
    margin-bottom: 14px;
  }

  .business-overview-scroll-card {
    --overview-scroll-height: 240px;
  }

  .business-overview-detail-btn {
    display: inline-flex;
    margin-top: 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .business-overview-image {
    margin: 0 0 18px;
    transform: none;
    box-shadow: 0 12px 28px rgba(11,26,45,0.08);
  }

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

  .hero h1 { max-width: 100%; }
  .hero p { max-width: 100%; }
}

@media (min-width: 769px) and (max-width: 1120px) {
  .business-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* Tighter section spacing on small screens */
  .section-header h2 {
    font-size: clamp(22px, 7vw, 32px);
  }
  .card-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .navbar-logo span {
    font-size: 17px;
  }
  .navbar-logo img {
    height: 40px;
  }
  .hero-image {
    height: auto;
  }
  .page-hero-image {
    height: 220px;
  }
  .management-hero-carousel {
    height: 260px;
  }
  .management-carousel-card {
    height: 190px;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 32px 0;
  }
  .stat-number {
    font-size: clamp(28px, 8vw, 48px);
  }
  .gallery-row {
    grid-template-columns: 1fr;
  }
  .gallery-row.gallery-row-centered {
    grid-template-columns: 1fr;
  }
  .commodity-list {
    grid-template-columns: 1fr;
  }
  .btn {
    padding: 13px 24px;
    font-size: 14px;
  }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Commodity icon list ── */
.commodity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.commodity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.commodity-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.commodity-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.commodity-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(197,162,85,0.08);
}
.commodity-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.commodity-item p {
  text-align: center;
}
.commodity-item p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ── Divider ── */
.divider {
  border: none;
  height: 1px;
  background: var(--border-light);
  margin: var(--section-y) 0;
}

/* ── Table (for disclaimer etc.) ── */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}
.content-block h3 {
  margin: 32px 0 12px;
  font-size: var(--heading-sm);
}
.content-block p {
  margin-bottom: 16px;
  line-height: 1.85;
  color: var(--text-body);
}

/* ── Photo with caption ── */
.photo-caption {
  text-align: center;
}
.photo-caption img {
  border-radius: 8px;
  margin: 0 auto 12px;
}
.photo-caption figcaption {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}
