﻿.page-hero {
  position: relative;
  min-height: 56svh;
  overflow: clip;
  background: linear-gradient(180deg, #1a1b20 0%, #202124 48%, #262b34 100%);
  color: var(--white);
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 96px 96px;
}

.page-hero__seal {
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: min(28vw, 320px);
  opacity: 0.1;
  filter: grayscale(1) brightness(1.8) contrast(0.95);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 56svh;
  display: grid;
  align-content: center;
  justify-items: start;
  padding-top: 132px;
  padding-bottom: 88px;
}

.page-hero__eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.page-hero__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 0.98;
}

.page-hero__lead {
  max-width: 44rem;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.page-section { padding: 88px 0; }
.page-grid { display: grid; gap: 28px; }
.page-grid--about { grid-template-columns: 1.1fr 0.9fr; align-items: start; }

.panel {
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.panel--brand {
  background:
    radial-gradient(circle at 20% 78%, rgba(46, 69, 113, 0.72), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(112, 38, 63, 0.66), transparent 28%),
    linear-gradient(180deg, #1a1b20 0%, #242832 100%);
  color: var(--white);
}

.panel__mark {
  width: 120px;
  margin-bottom: 18px;
}

.panel__eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-detail-card,
.contact-card {
  padding: 36px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
  margin: 24px 0 0;
}

.meta-grid div {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--paper);
}

.meta-grid dt {
  margin-bottom: 6px;
  color: #666a73;
  font-weight: 800;
}

.meta-grid dd {
  margin: 0;
  font-weight: 800;
}

.archive-list {
  display: grid;
  gap: 18px;
}

.archive-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(32, 33, 36, 0.1);
}

.archive-item time {
  color: #666a73;
  font-weight: 700;
}

.archive-item__body h3 { margin: 0 0 8px; }
.archive-item__body p:last-child { margin-bottom: 0; color: #555961; }

.archive-item__tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(112, 38, 63, 0.12);
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.gallery-page-tile {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-page-tile__image {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 22% 78%, rgba(46, 69, 113, 0.78), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(112, 38, 63, 0.62), transparent 28%),
    linear-gradient(180deg, #252930 0%, #2b313a 100%);
}

.gallery-page-tile__image--navy {
  background:
    radial-gradient(circle at 25% 75%, rgba(46, 69, 113, 0.86), transparent 34%),
    linear-gradient(180deg, #22262c 0%, #2e4571 100%);
}

.gallery-page-tile__image--wine {
  background:
    radial-gradient(circle at 76% 18%, rgba(112, 38, 63, 0.72), transparent 30%),
    linear-gradient(180deg, #22262c 0%, #442230 100%);
}

.gallery-page-tile figcaption { padding: 18px 18px 20px; }
.gallery-page-tile figcaption span {
  display: block;
  margin-bottom: 6px;
  color: #6c7179;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-page-tile figcaption strong { font-size: 1.08rem; }

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

.contact-card__mail a {
  color: var(--wine);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

@media (max-width: 960px) {
  .page-grid--about,
  .gallery-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero__seal {
    width: 240px;
    right: -12px;
    bottom: 48px;
  }
}

@media (max-width: 720px) {
  .page-hero__inner {
    min-height: 48svh;
    padding-top: 108px;
    padding-bottom: 64px;
  }

  .page-hero__title { font-size: clamp(2.5rem, 14vw, 4.2rem); }
  .page-hero__lead { font-size: 1rem; }

  .page-hero__seal {
    width: 180px;
    right: -20px;
    bottom: 44px;
  }

  .page-section { padding: 64px 0; }
  .event-detail-card,
  .contact-card { padding: 24px; }

  .archive-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Pictogram page tune */
.meta-grid dt .icon-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.35;
}

.meta-grid dt .icon-badge {
  width: 22px;
  height: 22px;
  margin: 0;
  border-radius: 8px;
  background: transparent;
  color: #8a6a00;
}

.archive-item__tag .tag-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.archive-item__tag .icon-badge {
  width: 18px;
  height: 18px;
}

@media (max-width: 720px) {
  .meta-grid dt .icon-badge {
    width: 20px;
    height: 20px;
  }
}

/* Pictogram page tune 2 */
.meta-grid dt .icon-label {
  gap: 5px;
}

.meta-grid dt .icon-badge {
  width: 18px;
  height: 18px;
}

.meta-grid dt .icon-badge svg {
  width: 18px;
  height: 18px;
}

.icon-title {
  gap: 8px;
}

.icon-title .icon-badge {
  width: 30px;
  height: 30px;
}

.icon-title .icon-badge svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 720px) {
  .meta-grid dt .icon-badge,
  .icon-title .icon-badge {
    width: 16px;
    height: 16px;
  }

  .meta-grid dt .icon-badge svg,
  .icon-title .icon-badge svg {
    width: 16px;
    height: 16px;
  }
}

/* REVIEW_PAGE_HERO_MOBILE_START */
@media (max-width: 640px) {
  .page-hero {
    min-height: auto;
  }

  .page-hero__inner {
    justify-items: center;
    text-align: center;
    padding-top: 104px;
    padding-bottom: 56px;
  }

  .page-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero__seal {
    left: 50%;
    top: 46%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(78vw, 320px);
    opacity: 0.09;
  }
}
/* REVIEW_PAGE_HERO_MOBILE_END */

/* REVIEW_PAGE_TABLET_TUNE_START */
@media (min-width: 641px) and (max-width: 1024px) {
  .page-hero__inner {
    justify-items: center;
    text-align: center;
    padding-top: 118px;
    padding-bottom: 64px;
  }

  .page-hero__lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 42rem;
  }

  .page-hero__seal {
    left: 50%;
    top: 46%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(42vw, 300px);
    opacity: 0.09;
  }

  .contact-actions,
  .panel__actions {
    justify-content: center;
  }

  .contact-actions .button,
  .panel__actions .button {
    min-width: 200px;
  }
}
/* REVIEW_PAGE_TABLET_TUNE_END */

/* REVIEW_LANDSCAPE_PAGEHERO_START */
@media (orientation: landscape) and (max-height: 520px) {
  .page-hero {
    min-height: 40svh;
  }

  .page-hero__inner {
    min-height: 40svh;
    padding-top: 78px;
    padding-bottom: 42px;
  }

  .page-hero__seal {
    width: min(18vw, 160px);
    bottom: 8%;
  }

  .page-hero__eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
  }

  .page-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  .page-hero__lead {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .page-section {
    padding: 72px 0;
  }
}
/* REVIEW_LANDSCAPE_PAGEHERO_END */

/* REVIEW_MOBILE_PAGEHERO_TIGHT_START */
@media (max-width: 820px) {
  .page-hero {
    min-height: 44svh;
  }

  .page-hero__inner {
    min-height: 44svh;
    padding-top: 92px;
    padding-bottom: 52px;
  }

  .page-hero__seal {
    width: min(22vw, 180px);
    bottom: 8%;
  }

  .page-hero__eyebrow {
    margin-bottom: 12px;
    font-size: 0.78rem;
  }

  .page-hero__title {
    font-size: clamp(2.2rem, 8vw, 4.2rem);
  }

  .page-hero__lead {
    margin-top: 12px;
    font-size: 0.94rem;
  }

  .page-section {
    padding: 78px 0;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 40svh;
  }

  .page-hero__inner {
    min-height: 40svh;
    padding-top: 82px;
    padding-bottom: 44px;
  }

  .page-hero__seal {
    width: min(18vw, 132px);
    right: 4%;
    bottom: 7%;
  }

  .page-hero__eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .page-hero__title {
    font-size: clamp(2rem, 7.2vw, 3.4rem);
  }

  .page-hero__lead {
    font-size: 0.88rem;
  }

  .page-section {
    padding: 72px 0;
  }
}

@media (max-width: 420px) {
  .page-hero__inner {
    padding-top: 76px;
    padding-bottom: 40px;
  }

  .page-hero__title {
    font-size: clamp(1.86rem, 6.8vw, 3rem);
  }

  .page-hero__lead {
    font-size: 0.84rem;
  }
}
/* REVIEW_MOBILE_PAGEHERO_TIGHT_END */

/* REVIEW_PAGE_RESPONSIVE_SWEEP_START */
@media (max-width: 1024px) {
  .page-hero {
    min-height: 48svh;
  }

  .page-hero__inner {
    min-height: 48svh;
    justify-items: center;
    text-align: center;
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .page-hero__lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 40rem;
    font-size: 1rem;
  }

  .page-hero__seal {
    left: 50%;
    top: 46%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: min(34vw, 240px);
    opacity: 0.08;
  }

  .page-grid--about,
  .gallery-page-grid,
  .contact-grid,
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .page-section {
    padding: 72px 0;
  }

  .panel,
  .event-detail-card,
  .contact-card {
    padding: 24px;
    border-radius: 22px;
  }

  .archive-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

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

  .page-hero__inner {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 52px;
  }

  .page-hero__eyebrow {
    margin-bottom: 10px;
    font-size: 0.76rem;
  }

  .page-hero__title {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
    line-height: 1.04;
  }

  .page-hero__lead {
    font-size: 0.92rem;
  }

  .page-hero__seal {
    width: min(72vw, 220px);
  }

  .page-section {
    padding: 56px 0;
  }

  .panel,
  .event-detail-card,
  .contact-card {
    padding: 18px;
    border-radius: 16px;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .page-hero {
    min-height: 40svh;
  }

  .page-hero__inner {
    min-height: 40svh;
    padding-top: 78px;
    padding-bottom: 42px;
  }

  .page-hero__seal {
    width: min(18vw, 160px);
    bottom: 8%;
  }

  .page-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  .page-hero__lead {
    font-size: 0.92rem;
  }

  .page-section {
    padding: 48px 0;
  }
}
/* REVIEW_PAGE_RESPONSIVE_SWEEP_END */

