/* ================================================
   YAKOMAMA — 和モダンデザイン
   墨 × 白 × 金 / Shippori Mincho + Noto Sans JP
   ================================================ */

/* ---- Custom Properties ---- */
:root {
  --bg-primary: #FAFAF7;
  --bg-secondary: #F0EDE6;
  --bg-dark: #2B2B2B;
  --bg-dark-deep: #1E1E1E;
  --text-primary: #2B2B2B;
  --text-secondary: #6B6560;
  --text-light: #FAFAF7;
  --accent: #B8860B;
  --accent-hover: #96700A;
  --border: #D4CFC4;
  --border-light: #E5E0D8;
  --font-heading: 'Shippori Mincho B1', 'Georgia', serif;
  --font-body: 'Noto Sans JP', 'Helvetica Neue', sans-serif;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --max-width: 1100px;
  --header-height: 80px;
  --section-padding: 120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

ul, ol {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
}

h2 {
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

p {
  margin-bottom: 20px;
  font-weight: 300;
}

p:last-child {
  margin-bottom: 0;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

.two-column {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.two-column--center {
  align-items: center;
}

.two-column__left,
.two-column__right {
  flex: 1;
  min-width: 0;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.05);
  border-bottom-color: var(--border-light);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.35s ease;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--text-primary);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
  position: relative;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger--open .hamburger__line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger--open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--open .hamburger__line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Mobile Nav Overlay ---- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAFAF7;
  z-index: 1005;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav-overlay--open {
  display: flex;
}

.mobile-nav-overlay a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active {
  color: var(--text-primary);
}

.mobile-nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-overlay__close::before,
.mobile-nav-overlay__close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 1.5px;
  background-color: var(--text-secondary);
  transition: background-color 0.3s ease;
}

.mobile-nav-overlay__close::before { transform: rotate(45deg); }
.mobile-nav-overlay__close::after { transform: rotate(-45deg); }

.mobile-nav-overlay__close:hover::before,
.mobile-nav-overlay__close:hover::after {
  background-color: var(--text-primary);
}

/* ---- Hero (Top Page) ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 48px) 40px 60px;
  text-align: center;
  position: relative;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  margin-bottom: 56px;
  font-weight: 400;
}

.hero__photo {
  width: 100%;
  max-width: 820px;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background-color: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ---- Page Hero (Sub Pages) ---- */
.page-hero {
  padding: calc(var(--header-height) + 80px) 40px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-bottom: 12px;
}

.page-hero__en {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.25em;
}

/* ---- Site Images ---- */
.site-img {
  width: 100%;
  border: 1px solid var(--border);
  transition: border-color 0.4s ease;
}

.site-img:hover {
  border-color: var(--accent);
}

/* ---- Section Divider (Lotus Motif) ---- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 440px;
  margin: 0 auto;
  padding: 0 40px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--accent);
  opacity: 0.3;
}

.divider__lotus {
  width: 28px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- Section Title ---- */
.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title__en {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
}

/* ---- Greeting ---- */
.greeting__text {
  font-size: 0.975rem;
  line-height: 2.2;
}

.greeting__signature {
  margin-top: 40px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

/* ---- Pledge ---- */
.pledge {
  text-align: center;
  padding: var(--section-padding) 40px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.pledge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background-color: var(--accent);
  opacity: 0.4;
}

.pledge h2 {
  color: var(--text-light);
  margin-top: 40px;
  margin-bottom: 40px;
}

.pledge__text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 2.6;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.05em;
  color: rgba(250, 250, 247, 0.85);
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: var(--border);
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  width: 50%;
  padding-bottom: 64px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item:nth-child(odd) {
  padding-right: 52px;
  text-align: right;
}

.timeline__item:nth-child(even) {
  left: 50%;
  padding-left: 52px;
  text-align: left;
}

.timeline__dot {
  position: absolute;
  top: 6px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background-color: var(--bg-primary);
  z-index: 1;
}

.section--alt .timeline__dot {
  background-color: var(--bg-secondary);
}

.timeline__item:nth-child(odd) .timeline__dot {
  right: -6px;
}

.timeline__item:nth-child(even) .timeline__dot {
  left: -6px;
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
  font-weight: 400;
}

.timeline__content {
  font-size: 0.925rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

/* ---- Professions Grid ---- */
.professions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.profession-item {
  padding: 36px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease;
}

.profession-item:hover {
  background-color: rgba(184, 134, 11, 0.04);
}

.profession-item__name {
  font-family: var(--font-heading);
  font-size: 0.925rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

/* ---- Fingerprint Highlight ---- */
.fingerprint__highlight {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

/* ---- Work Item ---- */
.work-item__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

/* ---- Product ---- */
.product__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.product__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  margin-top: 24px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  transition: gap 0.3s ease;
}

.product__link:hover {
  gap: 14px;
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

/* ---- External Links ---- */
.external-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.external-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---- Footer ---- */
.footer {
  background-color: var(--bg-dark-deep);
  color: rgba(250, 250, 247, 0.6);
  padding: 64px 40px;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  color: var(--text-light);
  margin-bottom: 28px;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}

.footer__nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: rgba(250, 250, 247, 0.45);
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__external {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer__external a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(250, 250, 247, 0.35);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.footer__external a:hover {
  color: var(--accent);
}

.footer__copyright {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 247, 0.25);
}

/* ---- Skip Navigation ---- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.875rem;
  border: 1px solid var(--accent);
}

.skip-nav:focus {
  top: 12px;
}

/* ---- Image Size Utilities ---- */
.img-sm { max-width: 360px; }
.img-md { max-width: 440px; }
.img-lg { max-width: 480px; }

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background-color: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, border-color 0.3s ease;
  z-index: 900;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  border-color: var(--accent);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 1.5;
}

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }
.fade-in-d4 { transition-delay: 0.4s; }
.fade-in-d5 { transition-delay: 0.5s; }

/* ---- Responsive: Tablet (≤900px) — hamburger nav ---- */
@media (max-width: 900px) {
  :root {
    --section-padding: 88px;
    --header-height: 72px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 32px;
  }

  .header__inner {
    padding: 0 24px;
  }

  .header__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__subtitle {
    font-size: 0.85rem;
  }

  .two-column {
    flex-direction: column;
    gap: 48px;
  }

  .professions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Timeline: single column */
  .timeline::before {
    left: 0;
  }

  .timeline__item,
  .timeline__item:nth-child(odd),
  .timeline__item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 36px;
    padding-right: 0;
  }

  .timeline__item:nth-child(odd) .timeline__dot,
  .timeline__item:nth-child(even) .timeline__dot {
    left: -6px;
    right: auto;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

/* ---- Responsive: Mobile (≤600px) ---- */
@media (max-width: 600px) {
  :root {
    --section-padding: 64px;
    --header-height: 64px;
  }

  h2 {
    font-size: 1.3rem;
    margin-bottom: 36px;
  }

  .container {
    padding: 0 20px;
  }

  .header__inner {
    padding: 0 20px;
  }

  /* Hero mobile */
  .hero {
    padding: calc(var(--header-height) + 32px) 20px 48px;
    min-height: 100svh;
  }

  .hero__title {
    font-size: 2.5rem;
    letter-spacing: 0.18em;
  }

  .hero__subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 36px;
  }

  /* Page hero mobile */
  .page-hero {
    padding: calc(var(--header-height) + 48px) 20px 48px;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }

  /* Grid mobile */
  .professions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profession-item {
    padding: 28px 12px;
  }

  /* Pledge mobile */
  .pledge {
    padding: var(--section-padding) 20px;
  }

  .pledge__text {
    font-size: 0.975rem;
    line-height: 2.3;
  }

  .section-title {
    margin-bottom: 48px;
  }

  /* Footer mobile */
  .footer {
    padding: 48px 20px;
  }

  .footer__nav {
    flex-direction: column;
    gap: 14px;
  }

  .footer__external {
    flex-direction: column;
    gap: 12px;
  }

  .external-links {
    flex-direction: column;
    gap: 16px;
  }

  .divider {
    padding: 0 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .img-sm, .img-md, .img-lg {
    max-width: 100%;
  }
}

/* ================================================
   追加ページ用スタイル
   ================================================ */

/* ---- Gallery Grid ---- */
.gallery-category {
  margin-bottom: 80px;
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-category__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.gallery-category__en {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-grid__item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-grid__item img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.5s ease;
}

.gallery-grid__item:hover img {
  border-color: var(--accent);
  transform: scale(1.03);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.lightbox--open {
  display: flex;
}

.lightbox__img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border: none;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close::before,
.lightbox__close::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: background-color 0.3s ease;
}

.lightbox__close::before { transform: rotate(45deg); }
.lightbox__close::after { transform: rotate(-45deg); }
.lightbox__close:hover::before,
.lightbox__close:hover::after { background-color: #fff; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.lightbox__nav:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__nav svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  stroke-width: 1.5;
}

/* ---- Twelve Roles Detail ---- */
.role-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border-light);
}

.role-section:last-child {
  border-bottom: none;
}

.role-section--alt {
  background-color: var(--bg-secondary);
}

.role-section__number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.3em;
  margin-bottom: 4px;
  display: block;
}

.role-section__en {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: block;
}

.role-section .two-column--reverse {
  flex-direction: row-reverse;
}

/* ---- Lotus Page ---- */
.lotus-hero {
  padding: calc(var(--header-height) + 80px) 40px 80px;
  text-align: center;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-bottom: none;
}

.lotus-hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text-light);
}

.lotus-hero__en {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.45);
  letter-spacing: 0.25em;
}

.lotus-crystal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.lotus-crystal-grid img {
  width: 100%;
  border: 1px solid var(--border);
}

/* ---- Additional Responsive ---- */
@media (max-width: 900px) {
  .gallery-grid {
    columns: 2;
  }

  .lotus-crystal-grid {
    grid-template-columns: 1fr;
  }

  .role-section .two-column--reverse {
    flex-direction: column;
  }

  .role-section {
    padding: 64px 0;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    columns: 1;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }

  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .role-section {
    padding: 48px 0;
  }

  .lotus-hero {
    padding: calc(var(--header-height) + 48px) 20px 48px;
  }

  .lotus-hero__title {
    font-size: 1.8rem;
  }
}
