/* Shared layouts for biography, press, news, gallery, contact, and milestones pages */

:root {
  --page-shell: min(1180px, calc(100% - 40px));
}

body.interior-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(215, 168, 76, 0.12), transparent 28%),
    linear-gradient(155deg, #2f2119 0%, #18110d 48%, #0f0a08 100%);
}

.interior-main {
  min-height: 70vh;
}

.page-hero {
  padding: clamp(78px, 10vw, 132px) 20px clamp(58px, 8vw, 96px);
  border-bottom: 1px solid rgba(215, 168, 76, 0.2);
}

.page-hero-inner,
.page-section-inner {
  width: var(--page-shell);
  margin: 0 auto;
}

.page-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--light-cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  font-weight: 500;
  line-height: 0.9;
}

.page-lede {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--soft-white);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.9;
}

.page-section {
  padding: clamp(64px, 8vw, 104px) 20px;
  border-bottom: 1px solid rgba(215, 168, 76, 0.14);
}

.page-section:nth-child(even) {
  background: rgba(10, 7, 5, 0.24);
}

.page-section h2 {
  margin: 0 0 26px;
  color: var(--light-cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
}

.page-section h3 {
  margin: 0 0 12px;
  color: var(--soft-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
}

.page-section p,
.page-section li,
.press-value,
.news-copy p {
  color: var(--soft-white);
  font-size: 0.98rem;
  line-height: 1.9;
}

.page-section p {
  max-width: 850px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.profile-card {
  overflow: hidden;
  background: rgba(18, 12, 9, 0.78);
  border: 1px solid rgba(215, 168, 76, 0.32);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.profile-card-copy {
  padding: 24px;
}

.profile-card-copy p {
  margin: 0;
  font-size: 0.88rem;
}

.fact-grid,
.card-grid,
.press-grid,
.news-grid,
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fact-card,
.content-card,
.press-item,
.news-card,
.milestone-card {
  padding: 26px;
  background: linear-gradient(145deg, rgba(83, 58, 43, 0.42), rgba(18, 12, 9, 0.88));
  border: 1px solid rgba(215, 168, 76, 0.28);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.fact-label,
.press-label,
.news-date,
.milestone-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fact-card strong,
.press-value {
  color: var(--light-cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.2;
}

.content-card p,
.news-copy p,
.milestone-card p {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.text-link {
  color: var(--soft-gold);
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--light-cream);
}

.press-copy {
  padding: clamp(26px, 4vw, 42px);
  background: rgba(11, 7, 5, 0.46);
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
}

.press-copy p:first-child {
  margin-top: 0;
}

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

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

.news-card h2,
.news-card h3 {
  font-size: 2rem;
}

.news-card .button-row {
  margin-top: auto;
  padding-top: 18px;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-figure {
  margin: 0;
  overflow: hidden;
  background: rgba(13, 9, 7, 0.72);
  border: 1px solid rgba(215, 168, 76, 0.25);
  border-radius: 15px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.gallery-figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-figure--portrait img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.gallery-figure figcaption {
  padding: 16px 18px 19px;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  display: block;
  padding: 28px;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(83, 58, 43, 0.44), rgba(13, 9, 7, 0.9));
  border: 1px solid rgba(215, 168, 76, 0.3);
  border-radius: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--soft-gold);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--light-cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.contact-card span {
  color: var(--soft-white);
  font-size: 0.88rem;
  line-height: 1.7;
}

.gallery-tile--portrait {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(9, 6, 5, 0.72)),
    url("minoo-photo.webp") center top / cover no-repeat;
}

.gallery-tile--music {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(9, 6, 5, 0.72)),
    url("images/dream.jpg") center / cover no-repeat;
}

.gallery-tile--press {
  background:
    radial-gradient(circle at 50% 34%, rgba(215, 168, 76, 0.22), transparent 34%),
    linear-gradient(145deg, #533928, #18100d);
}

.gallery-tile--press img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 38%;
  transform: translate(-50%, -58%);
  border: 1px solid rgba(215, 168, 76, 0.36);
  border-radius: 16px;
}

.gallery-tile {
  text-decoration: none;
}

.footer-links {
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 18px;
}

.footer-links a {
  color: var(--cream);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--soft-gold);
}

.notice {
  padding: 20px 22px;
  background: rgba(215, 168, 76, 0.08);
  border: 1px solid rgba(215, 168, 76, 0.3);
  border-radius: 13px;
}

.notice p {
  margin: 0;
}

@media (max-width: 950px) {
  .two-column,
  .fact-grid,
  .card-grid,
  .press-grid,
  .news-grid,
  .milestone-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  :root {
    --page-shell: min(100%, calc(100% - 8px));
  }

  .page-hero {
    padding-top: 64px;
  }

  .two-column,
  .fact-grid,
  .card-grid,
  .press-grid,
  .news-grid,
  .milestone-grid,
  .gallery-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-section {
    padding-inline: 18px;
  }

  .gallery-figure--portrait img {
    aspect-ratio: 4 / 5;
  }

  .brand::before {
    width: 138px;
    height: 54px;
    flex-basis: 138px;
  }
}
