@charset "UTF-8";

:root {
  --black: #030303;
  --black-2: #080808;
  --white: #ffffff;
  --text: #f8f5ee;
  --muted: #c8c0b3;
  --gold: #d4a83f;
  --gold-light: #ffd876;
  --gold-dark: #7b5715;
  --line: rgba(212, 168, 63, 0.28);
  --line-white: rgba(255, 255, 255, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

body::selection {
  background: var(--gold);
  color: #000;
}

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

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(0,0,0,0.84), rgba(0,0,0,0.24), transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.brand img,
.footer-logo img {
  width: 190px;
  height: auto;
}

.global-nav,
.footer-nav {
  display: flex;
  gap: 42px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.global-nav a,
.footer-nav a {
  position: relative;
  padding-bottom: 8px;
}

.global-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.global-nav a:hover::after,
.footer-nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 168, 63, 0.22);
  background: #000;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(190px, 24vh, 260px);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 32px 0 24px;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(255,255,255,0.18);
}

.lead {
  margin: 0 0 42px;
  color: var(--text);
  font-size: clamp(16px, 2vw, 21px);
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-width: 220px;
  padding: 18px 32px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}

.outline-button span {
  width: 28px;
  height: 1px;
  background: var(--gold);
  position: relative;
}

.outline-button span::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

.outline-button:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 36px rgba(212, 168, 63, 0.35);
}

.outline-button:hover span,
.outline-button:hover span::after {
  background: #000;
  border-color: #000;
}

.outline-button.small {
  min-width: 170px;
  padding: 13px 25px;
}

.scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  margin: 8px auto 0;
  background: linear-gradient(var(--gold), transparent);
}

/* Apple Music風の抽象波形背景 */
.wave-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.95;
}

.wave-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 42%, rgba(255, 180, 42, 0.24), transparent 22%),
    radial-gradient(circle at 45% 58%, rgba(196, 41, 163, 0.22), transparent 24%),
    radial-gradient(circle at 26% 78%, rgba(65, 87, 255, 0.24), transparent 23%),
    linear-gradient(180deg, rgba(0,0,0,0.26), #000 95%);
}

.wave {
  position: absolute;
  left: -12%;
  width: 130%;
  height: 42%;
  background-repeat: repeat-x;
  background-size: 1200px 100%;
  filter: blur(0.1px);
  opacity: 0.9;
  animation: waveMove 18s linear infinite;
}

.wave::before,
.wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat-x;
  background-size: 1200px 100%;
}

.wave-1 {
  top: 28%;
  background-image:
    repeating-radial-gradient(ellipse at center, transparent 0 16px, rgba(255, 213, 105, 0.33) 17px, transparent 18px);
  transform: rotate(-3deg);
  mask-image: radial-gradient(ellipse at center, black 0 42%, transparent 72%);
}

.wave-1::before {
  background-image:
    repeating-radial-gradient(ellipse at center, transparent 0 22px, rgba(255, 153, 34, 0.28) 23px, transparent 24px);
  transform: translateY(28px);
}

.wave-2 {
  top: 39%;
  background-image:
    repeating-radial-gradient(ellipse at center, transparent 0 17px, rgba(230, 58, 180, 0.32) 18px, transparent 19px);
  transform: rotate(2deg);
  animation-duration: 24s;
  animation-direction: reverse;
  mask-image: radial-gradient(ellipse at center, black 0 40%, transparent 70%);
}

.wave-2::before {
  background-image:
    repeating-radial-gradient(ellipse at center, transparent 0 24px, rgba(122, 72, 255, 0.3) 25px, transparent 26px);
  transform: translateY(36px);
}

.wave-3 {
  top: 51%;
  background-image:
    repeating-radial-gradient(ellipse at center, transparent 0 20px, rgba(80, 110, 255, 0.3) 21px, transparent 22px);
  transform: rotate(-5deg);
  animation-duration: 30s;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at center, black 0 34%, transparent 68%);
}

.gold-flare {
  position: absolute;
  top: 27%;
  right: -6%;
  width: 55vw;
  height: 34vw;
  min-width: 480px;
  min-height: 300px;
  background:
    radial-gradient(circle at 68% 45%, rgba(255,255,255,0.88), transparent 2%),
    radial-gradient(circle at 68% 45%, rgba(255,216,118,0.6), transparent 12%),
    radial-gradient(ellipse at center, rgba(212,168,63,0.42), transparent 58%);
  filter: blur(1px);
  animation: glow 5s ease-in-out infinite alternate;
}

@keyframes waveMove {
  from { background-position: 0 0; }
  to { background-position: 1200px 0; }
}

@keyframes glow {
  from { opacity: 0.66; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.03); }
}

.section {
  padding: 88px 0;
  border-bottom: 1px solid rgba(212, 168, 63, 0.16);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 90px;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.section-title-row span {
  width: 54px;
  height: 1px;
  background: var(--gold);
}

h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.2;
}

.section-copy h3 {
  margin: 0 0 26px;
  color: var(--gold-light);
  font-size: 24px;
  font-weight: 400;
}

.section-copy p {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 15px;
}

.section-copy .outline-button {
  margin-top: 26px;
}

.representative-card {
  padding: 48px 54px;
  border: 1px solid var(--gold);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(212,168,63,0.08), transparent 45%),
    rgba(0,0,0,0.25);
  box-shadow: 0 0 45px rgba(212,168,63,0.08);
}

.representative-card p {
  margin: 0 0 14px;
  color: var(--gold);
}

.representative-card strong {
  display: block;
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.representative-card em {
  margin-top: -6px;
  color: var(--gold);
  font-size: 34px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
}

.works-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.works-head p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.work-card {
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.025);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.work-visual {
  height: 168px;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.work-visual.event {
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.62)),
    radial-gradient(circle at center, rgba(167,65,255,0.7), transparent 35%),
    linear-gradient(135deg, #130018, #080808);
}

.work-visual.music {
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.72)),
    repeating-linear-gradient(90deg, #272727 0 10px, #111 10px 20px);
}

.work-visual.stage {
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.72)),
    radial-gradient(circle at 50% 0%, rgba(128,75,255,0.72), transparent 42%),
    #080808;
}

.work-visual.entertainment {
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.72)),
    radial-gradient(circle at 25% 25%, rgba(255,210,110,0.55), transparent 16%),
    radial-gradient(circle at 75% 35%, rgba(255,255,255,0.35), transparent 10%),
    #0b0b0b;
}

.work-card p {
  margin: 22px 16px 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.work-card h3 {
  margin: 0 16px 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.work-card small {
  display: block;
  margin: 0 16px 20px;
  color: var(--muted);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact p:not(.section-label) {
  color: var(--text);
}

.mail-area p {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 13px;
}

.mail-area a {
  color: var(--white);
  font-size: clamp(28px, 4vw, 40px);
  word-break: break-all;
  transition: color 0.2s ease;
}

.mail-area a:hover {
  color: var(--gold-light);
}

.site-footer {
  padding: 34px 0 26px;
  background: #050505;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: center;
}

.footer-nav {
  gap: 34px;
}

address {
  justify-self: end;
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

.copyright {
  margin: 26px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.pc-only {
  display: inline;
}

.catchphrase {
  max-width: 100% !important;
  width: 100% !important;
  display: block;
}

.catchphrase span {
  display: inline-block;
 white-space: nowrap !important; 
}

@media (max-width: 960px) {
  .header-inner {
    height: 82px;
  }

  .brand img,
  .footer-logo img {
    width: 160px;
  }

  .global-nav {
    gap: 22px;
    font-size: 12px;
  }

  .hero {
    min-height: 680px;
  }

  .two-column,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-self: center;
  }

  address {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    background: rgba(0,0,0,0.78);
    border-bottom: 1px solid rgba(212,168,63,0.12);
  }

  .header-inner {
    height: auto;
    padding: 16px 0 12px;
    flex-direction: column;
    gap: 12px;
  }

  .brand img {
    width: 150px;
  }

  .global-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    font-size: 10px;
  }

  .hero {
    height: auto;
    min-height: 720px;
  }

  .hero-content {
    padding-top: 188px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.48;
  }

  .lead {
    font-size: 15px;
  }

  .outline-button {
    width: 100%;
    justify-content: space-between;
  }

  .wave {
    width: 180%;
    left: -45%;
    height: 34%;
  }

  .gold-flare {
    right: -58%;
    top: 31%;
    min-width: 520px;
  }

  .section {
    padding: 70px 0;
  }

  .representative-card {
    padding: 34px 28px;
  }

  .representative-card em {
    font-size: 28px;
  }

  .works-head {
    align-items: stretch;
    flex-direction: column;
  }

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

  .work-visual {
    height: 190px;
  }

  .mail-area a {
    font-size: 25px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 26px;
  }

  .pc-only {
    display: none;
  }
}


/* ===== Upgrade: Loading / Reveal / Mobile menu / Refined motion ===== */

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,168,63,0.12), transparent 28%),
    #000;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader img {
  width: min(230px, 56vw);
  filter: drop-shadow(0 0 26px rgba(212,168,63,0.32));
  animation: loaderPulse 1.3s ease-in-out infinite alternate;
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  from { opacity: 0.58; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1.02); }
}

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

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212,168,63,0.32);
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  cursor: pointer;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.wave {
  animation-timing-function: linear;
  will-change: background-position, transform;
}

.wave-1 {
  animation: waveMove 22s linear infinite, floatWave1 7s ease-in-out infinite alternate;
}

.wave-2 {
  animation: waveMove 28s linear infinite reverse, floatWave2 8s ease-in-out infinite alternate;
}

.wave-3 {
  animation: waveMove 34s linear infinite, floatWave3 9s ease-in-out infinite alternate;
}

@keyframes floatWave1 {
  from { transform: rotate(-3deg) translateY(-8px); }
  to { transform: rotate(-3deg) translateY(12px); }
}

@keyframes floatWave2 {
  from { transform: rotate(2deg) translateY(14px); }
  to { transform: rotate(2deg) translateY(-10px); }
}

@keyframes floatWave3 {
  from { transform: rotate(-5deg) translateY(-6px); }
  to { transform: rotate(-5deg) translateY(18px); }
}

.gold-flare {
  mix-blend-mode: screen;
  opacity: 0.82;
}

.outline-button:hover {
  box-shadow: 0 0 24px rgba(212,168,63,0.22);
}

.work-card:hover {
  box-shadow: 0 16px 45px rgba(212,168,63,0.10);
}

.works-grid {
  grid-auto-rows: 1fr;
}

.work-card {
  display: flex;
  flex-direction: column;
}

.work-card small {
  margin-top: auto;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(0,0,0,0.88);
    border-bottom: 1px solid rgba(212,168,63,0.12);
  }

  .header-inner {
    flex-direction: row;
    min-height: 70px;
  }

  .menu-button {
    display: block;
  }

  .global-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 78px;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(212,168,63,0.22);
    background: rgba(0,0,0,0.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body.menu-open .global-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
  }

  .global-nav a:last-child {
    border-bottom: none;
  }

  .global-nav a::after {
    display: none;
  }
}


/* ===== Representative photo ===== */

.representative-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: center;
}

.representative-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 63, 0.55);
  background:
    linear-gradient(135deg, rgba(212,168,63,0.14), transparent),
    #080808;
}

.representative-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 42px rgba(0,0,0,0.42);
  pointer-events: none;
}

.representative-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(18%) contrast(1.05);
}

.representative-profile p {
  margin: 0 0 14px;
  color: var(--gold);
}

.representative-profile strong {
  display: block;
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.representative-profile em {
  margin-top: -6px;
  color: var(--gold);
  font-size: 34px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .representative-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .representative-photo {
    max-width: 280px;
  }
}

/* ===== Company detail page ===== */

.sub-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 168, 63, 0.22);
  background: #000;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(180px, 24vh, 235px);
}

.sub-hero h1 {
  margin: 30px 0 24px;
  max-width: 900px;
  color: var(--white);
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.company-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

.company-detail-copy p {
  max-width: 650px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
}

.company-page-card {
  min-height: auto;
}

.representative-profile strong {
  white-space: nowrap;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.value-grid article {
  min-height: 240px;
  padding: 34px;
  border: 1px solid rgba(212, 168, 63, 0.2);
  background:
    linear-gradient(135deg, rgba(212,168,63,0.08), transparent 48%),
    rgba(255,255,255,0.025);
}

.value-grid article p {
  margin: 0 0 32px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.value-grid article h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
}

.value-grid article span {
  color: var(--muted);
  font-size: 14px;
}

.company-profile-list {
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
}

.company-profile-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.company-profile-list dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.company-profile-list dd {
  margin: 0;
  color: var(--text);
}

.company-back-button {
  margin-top: 46px;
}

@media (max-width: 960px) {
  .company-detail-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .sub-hero {
    min-height: 590px;
  }

  .sub-hero-content {
    padding-top: 170px;
  }

  .sub-hero h1 {
    font-size: 48px;
  }

  .company-profile-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .value-grid article {
    min-height: auto;
  }
}

/* ===== President profile section ===== */

.president-profile-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 68px;
  align-items: center;
}

.president-profile-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(212,168,63,0.34);
  background:
    linear-gradient(135deg, rgba(212,168,63,0.10), transparent),
    #090909;
}

.president-profile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 48px rgba(0,0,0,0.38);
  pointer-events: none;
}

.president-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-position {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.president-profile-content h2 {
  margin-bottom: 6px;
  white-space: nowrap;
}

.president-profile-content em {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 34px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
}

.profile-text p {
  margin: 0 0 18px;
  max-width: none;
  color: var(--text);
  font-size: 15px;
}

@media (max-width: 960px) {
  .president-profile-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .president-profile-image {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .president-profile-content em {
    font-size: 28px;
  }
}


/* ===== President profile section / no photo version ===== */

.president-profile-simple {
  display: block;
  padding: 46px 0 0;
  border-top: 1px solid rgba(212, 168, 63, 0.22);
}

.profile-position {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.president-profile-simple .profile-text {
  max-width: none;
  width: 100%;
}

.president-profile-simple .profile-text p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
}

@media (max-width: 960px) {
  .president-profile-simple {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .profile-name-block em {
    font-size: 28px;
  }
}
